亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? ag_parse.c

?? bluetooth audio gateway
?? C
?? 第 1 頁 / 共 2 頁
字號:
/*
    Warning - this file was autogenerated by genparse
    DO NOT EDIT - any changes will be lost
*/

#include "ag_parse.h"

#include <ctype.h>
#include <panic.h>
#include <stdlib.h>
#include <string.h>

#ifdef TEST_HARNESS
#include <stdio.h>
#endif

typedef const uint8 *ptr;

static ptr skip1(ptr s, ptr e)
{
  if(s)
    while(s != e && (*s == ' ' || *s == '\t' || *s == ',' || *s == ';'))
      ++s;
  return s;
}

static ptr matchChar(ptr s, ptr e, uint8 c)
{ return s && s != e && toupper(*s) == (int) c ? s+1 : 0; }

static ptr match1(ptr s, ptr e)
{ return s && s != e && (*s == '=' || *s == ':') ? s+1 : 0; }

static ptr getNumber(ptr p, ptr e, uint16 *num)
{
  if(p)
  {
    ptr s = p;
    uint16 r = 0;
    while(p != e && isdigit(*p)) r = r * 10 + (*p++ - '0');
    *num = r;
    return p != s ? p : 0;
  }
  return 0;
}

static ptr match2(ptr s, ptr e)
{ return s && s != e && (*s == '\r' || *s == '\n') ? s+1 : 0; }

static ptr skipQuote(ptr p, ptr e)
{ return p && p != e && *p == '"' ? p+1 : p; }

static ptr getString(ptr p, ptr e, struct sequence *res)
{
  p = skipQuote(p, e);
  if(p)
  {
    ptr s = p;
    while(p != e && (isalnum(*p) || *p==' ' || *p=='+' || *p=='*' || *p=='^' || *p=='-' || *p=='_' || *p=='#')) ++p;
    if(p != s)
    {
        res->data = s;
        res->length = p - s;
        return skipQuote(p, e);
    }
  }
  res->data = 0;
  res->length = 0;
  return 0;
}

#ifdef TEST_HARNESS
static void printString(const char *name, const struct sequence *s)
{
  uint16 i;
  printf(" %s='", name);
  for(i = 0; i < s->length; ++i) putchar(s->data[i]);
  printf("'");
}
#endif

static ptr skip2(ptr s, ptr e)
{
  if(s)
    while(s != e && (*s == '?'))
      ++s;
  return s;
}

static ptr findEndOfPacket(ptr s, ptr e)
{
  /*
     Returns
     0   if the buffer holds an incomplete packet
     s+1 if the buffer holds an invalid packet
     end of the first packet otherwise
  */
  if(s == e) return 0;

  if(*s == '\r')
  {
    /* expecting <cr> <lf> ... <cr> <lf> */
    if(e-s >= 4) 
    {
      if(s[1] == '\n')
      {
        ptr p = s+2;
        while(p != e && *p != '\r') ++p;
        return p == e || p + 1 == e ? 0 /* no terminator yet */
             : p[1] == '\n' ? p+2 /* valid */
             : s+1 ; /* invalid terminator */
      }
      else
      {
        return s+1;
      }
    }
    else
    {
      /* Can't tell yet */
      return 0;
    }
  }
  else if(*s == '\n')
  {
    /*
      Probably confused. Don't leave this around. We could end up
      incorrectly swallowing a <cr> which is likely to be the start of
      a <cr><lf>...<cr><lf> and then we'll never get back in sync.
    */
    return s+1;
  }
  else
  {
    /* expecting ... <cr> */
    ptr p = s;
    while(p != e && *p != '\r') ++p;
    return p == e ? 0 : p+1;
  }
}

ptr parseData(ptr s, ptr e, const BD_ADDR_T *addr)
{
  ptr p;
#ifdef TEST_HARNESS
  addr = addr;
#endif
  for(; (p = findEndOfPacket(s, e)) != 0; s = p)
  {
    if(p == s+1)
    {
      /* Silently discard one character; no packets are that short */
      continue;
    }
    else
    {
      union {
        struct MicrophoneGain MicrophoneGain;
        struct SpeakerGain SpeakerGain;
        struct ButtonPress ButtonPress;
        struct CustomButtonPress CustomButtonPress;
        struct IndicatorReportActivation IndicatorReportActivation;
        struct RemoteNumberDial RemoteNumberDial;
        struct RemoteMemoryDial RemoteMemoryDial;
        struct CallWaitingEnable CallWaitingEnable;
        struct CallHoldRequest CallHoldRequest;
        struct CallerIdActivation CallerIdActivation;
        struct EchoCancellingDisable EchoCancellingDisable;
        struct VoiceRecognitionEnable VoiceRecognitionEnable;
        struct SpecificDataRequest SpecificDataRequest;
        struct DTMFGeneration DTMFGeneration;
      } u, *uu = &u;
      if(match2(skip1(getNumber(skip1(match1(skip1(matchChar(matchChar(matchChar(skip1(matchChar(skip1(matchChar(matchChar(skip1(s, e), e, 'A'), e, 'T'), e), e, '+'), e), e, 'V'), e, 'G'), e, 'M'), e), e), e), e, &uu->MicrophoneGain.gain), e), e))
      {
#ifndef TEST_HARNESS
        handleMicrophoneGain(addr, &uu->MicrophoneGain);
#endif
#ifdef TEST_HARNESS
        printf("Called handleMicrophoneGain");
        printf(" gain=%d", uu->MicrophoneGain.gain);
        putchar('\n');
#endif
        continue;
      }
      if(match2(skip1(getNumber(skip1(match1(skip1(matchChar(matchChar(matchChar(skip1(matchChar(skip1(matchChar(matchChar(skip1(s, e), e, 'A'), e, 'T'), e), e, '+'), e), e, 'V'), e, 'G'), e, 'S'), e), e), e), e, &uu->SpeakerGain.gain), e), e))
      {
#ifndef TEST_HARNESS
        handleSpeakerGain(addr, &uu->SpeakerGain);
#endif
#ifdef TEST_HARNESS
        printf("Called handleSpeakerGain");
        printf(" gain=%d", uu->SpeakerGain.gain);
        putchar('\n');
#endif
        continue;
      }
      if(match2(skip1(getNumber(skip1(match1(skip1(matchChar(matchChar(matchChar(matchChar(skip1(matchChar(skip1(matchChar(matchChar(skip1(s, e), e, 'A'), e, 'T'), e), e, '+'), e), e, 'C'), e, 'K'), e, 'P'), e, 'D'), e), e), e), e, &uu->ButtonPress.button), e), e))
      {
#ifndef TEST_HARNESS
        handleButtonPress(addr, &uu->ButtonPress);
#endif
#ifdef TEST_HARNESS
        printf("Called handleButtonPress");
        printf(" button=%d", uu->ButtonPress.button);
        putchar('\n');
#endif
        continue;
      }
      if(match2(skip1(getString(skip1(match1(skip1(matchChar(matchChar(matchChar(matchChar(skip1(matchChar(skip1(matchChar(matchChar(skip1(s, e), e, 'A'), e, 'T'), e), e, '+'), e), e, 'C'), e, 'K'), e, 'P'), e, 'D'), e), e), e), e, &uu->CustomButtonPress.button), e), e))
      {
#ifndef TEST_HARNESS
        handleCustomButtonPress(addr, &uu->CustomButtonPress);
#endif
#ifdef TEST_HARNESS
        printf("Called handleCustomButtonPress");
        printString("button", &uu->CustomButtonPress.button);
        putchar('\n');
#endif
        continue;
      }
      if(match2(skip1(skip2(skip1(match1(skip1(matchChar(matchChar(matchChar(matchChar(skip1(matchChar(skip1(matchChar(matchChar(skip1(s, e), e, 'A'), e, 'T'), e), e, '+'), e), e, 'C'), e, 'I'), e, 'N'), e, 'D'), e), e), e), e), e), e))
      {
#ifndef TEST_HARNESS
        handleIndicatorDescriptionRequest(addr);
#endif
#ifdef TEST_HARNESS
        printf("Called handleIndicatorDescriptionRequest");
        putchar('\n');
#endif
        continue;
      }
      if(match2(skip1(skip2(skip1(matchChar(matchChar(matchChar(matchChar(skip1(matchChar(skip1(matchChar(matchChar(skip1(s, e), e, 'A'), e, 'T'), e), e, '+'), e), e, 'C'), e, 'I'), e, 'N'), e, 'D'), e), e), e), e))
      {
#ifndef TEST_HARNESS
        handleIndicatorStatusRequest(addr);
#endif
#ifdef TEST_HARNESS
        printf("Called handleIndicatorStatusRequest");
        putchar('\n');
#endif
        continue;
      }
      if(match2(skip1(getNumber(skip1(getNumber(skip1(getNumber(skip1(getNumber(skip1(match1(skip1(matchChar(matchChar(matchChar(matchChar(skip1(matchChar(skip1(matchChar(matchChar(skip1(s, e), e, 'A'), e, 'T'), e), e, '+'), e), e, 'C'), e, 'M'), e, 'E'), e, 'R'), e), e), e), e, &uu->IndicatorReportActivation.mode), e), e, &uu->IndicatorReportActivation.keyp), e), e, &uu->IndicatorReportActivation.disp), e), e, &uu->IndicatorReportActivation.ind), e), e))
      {
#ifndef TEST_HARNESS
        handleIndicatorReportActivation(addr, &uu->IndicatorReportActivation);
#endif
#ifdef TEST_HARNESS
        printf("Called handleIndicatorReportActivation");
        printf(" mode=%d", uu->IndicatorReportActivation.mode);
        printf(" keyp=%d", uu->IndicatorReportActivation.keyp);
        printf(" disp=%d", uu->IndicatorReportActivation.disp);
        printf(" ind=%d", uu->IndicatorReportActivation.ind);
        putchar('\n');
#endif
        continue;
      }
      if(match2(skip1(matchChar(matchChar(matchChar(skip1(s, e), e, 'A'), e, 'T'), e, 'A'), e), e))
      {
#ifndef TEST_HARNESS
        handleCallAnswer(addr);
#endif
#ifdef TEST_HARNESS
        printf("Called handleCallAnswer");
        putchar('\n');
#endif
        continue;
      }
      if(match2(skip1(matchChar(matchChar(matchChar(matchChar(skip1(matchChar(skip1(matchChar(matchChar(skip1(s, e), e, 'A'), e, 'T'), e), e, '+'), e), e, 'C'), e, 'H'), e, 'U'), e, 'P'), e), e))
      {
#ifndef TEST_HARNESS
        handleCallHangUp(addr);
#endif
#ifdef TEST_HARNESS
        printf("Called handleCallHangUp");
        putchar('\n');
#endif
        continue;
      }
      if(match2(skip1(getString(skip1(matchChar(matchChar(matchChar(skip1(s, e), e, 'A'), e, 'T'), e, 'D'), e), e, &uu->RemoteNumberDial.number), e), e))
      {
#ifndef TEST_HARNESS
        handleRemoteNumberDial(addr, &uu->RemoteNumberDial);
#endif
#ifdef TEST_HARNESS
        printf("Called handleRemoteNumberDial");
        printString("number", &uu->RemoteNumberDial.number);
        putchar('\n');
#endif
        continue;
      }
      if(match2(skip1(getString(skip1(matchChar(skip1(matchChar(matchChar(matchChar(skip1(s, e), e, 'A'), e, 'T'), e, 'D'), e), e, '>'), e), e, &uu->RemoteMemoryDial.memory), e), e))
      {
#ifndef TEST_HARNESS
        handleRemoteMemoryDial(addr, &uu->RemoteMemoryDial);
#endif
#ifdef TEST_HARNESS
        printf("Called handleRemoteMemoryDial");
        printString("memory", &uu->RemoteMemoryDial.memory);
        putchar('\n');
#endif
        continue;
      }
      if(match2(skip1(matchChar(matchChar(matchChar(matchChar(skip1(matchChar(skip1(matchChar(matchChar(skip1(s, e), e, 'A'), e, 'T'), e), e, '+'), e), e, 'B'), e, 'L'), e, 'D'), e, 'N'), e), e))
      {
#ifndef TEST_HARNESS
        handleLastNumberRedial(addr);
#endif
#ifdef TEST_HARNESS
        printf("Called handleLastNumberRedial");
        putchar('\n');
#endif
        continue;
      }
      if(match2(skip1(getNumber(skip1(match1(skip1(matchChar(matchChar(matchChar(matchChar(skip1(matchChar(skip1(matchChar(matchChar(skip1(s, e), e, 'A'), e, 'T'), e), e, '+'), e), e, 'C'), e, 'C'), e, 'W'), e, 'A'), e), e), e), e, &uu->CallWaitingEnable.status), e), e))
      {
#ifndef TEST_HARNESS
        handleCallWaitingEnable(addr, &uu->CallWaitingEnable);
#endif
#ifdef TEST_HARNESS
        printf("Called handleCallWaitingEnable");
        printf(" status=%d", uu->CallWaitingEnable.status);
        putchar('\n');
#endif
        continue;
      }
      if(match2(skip1(getNumber(skip1(match1(skip1(matchChar(matchChar(matchChar(matchChar(skip1(matchChar(skip1(matchChar(matchChar(skip1(s, e), e, 'A'), e, 'T'), e), e, '+'), e), e, 'C'), e, 'H'), e, 'L'), e, 'D'), e), e), e), e, &uu->CallHoldRequest.hold), e), e))
      {
#ifndef TEST_HARNESS
        handleCallHoldRequest(addr, &uu->CallHoldRequest);
#endif
#ifdef TEST_HARNESS
        printf("Called handleCallHoldRequest");
        printf(" hold=%d", uu->CallHoldRequest.hold);
        putchar('\n');
#endif
        continue;
      }
      if(match2(skip1(skip2(skip1(match1(skip1(matchChar(matchChar(matchChar(matchChar(skip1(matchChar(skip1(matchChar(matchChar(skip1(s, e), e, 'A'), e, 'T'), e), e, '+'), e), e, 'C'), e, 'H'), e, 'L'), e, 'D'), e), e), e), e), e), e))
      {
#ifndef TEST_HARNESS
        handleCallHoldTestCmd(addr);
#endif
#ifdef TEST_HARNESS
        printf("Called handleCallHoldTestCmd");
        putchar('\n');
#endif
        continue;
      }
      if(match2(skip1(getNumber(skip1(match1(skip1(matchChar(matchChar(matchChar(matchChar(skip1(matchChar(skip1(matchChar(matchChar(skip1(s, e), e, 'A'), e, 'T'), e), e, '+'), e), e, 'C'), e, 'L'), e, 'I'), e, 'P'), e), e), e), e, &uu->CallerIdActivation.enable), e), e))
      {
#ifndef TEST_HARNESS
        handleCallerIdActivation(addr, &uu->CallerIdActivation);
#endif
#ifdef TEST_HARNESS
        printf("Called handleCallerIdActivation");
        printf(" enable=%d", uu->CallerIdActivation.enable);
        putchar('\n');
#endif
        continue;
      }
      if(match2(skip1(getNumber(skip1(match1(skip1(matchChar(matchChar(matchChar(matchChar(skip1(matchChar(skip1(matchChar(matchChar(skip1(s, e), e, 'A'), e, 'T'), e), e, '+'), e), e, 'N'), e, 'R'), e, 'E'), e, 'C'), e), e), e), e, &uu->EchoCancellingDisable.enable), e), e))
      {
#ifndef TEST_HARNESS
        handleEchoCancellingDisable(addr, &uu->EchoCancellingDisable);
#endif
#ifdef TEST_HARNESS
        printf("Called handleEchoCancellingDisable");
        printf(" enable=%d", uu->EchoCancellingDisable.enable);
        putchar('\n');
#endif
        continue;
      }
      if(match2(skip1(getNumber(skip1(match1(skip1(matchChar(matchChar(matchChar(matchChar(skip1(matchChar(skip1(matchChar(matchChar(skip1(s, e), e, 'A'), e, 'T'), e), e, '+'), e), e, 'B'), e, 'V'), e, 'R'), e, 'A'), e), e), e), e, &uu->VoiceRecognitionEnable.enable), e), e))
      {
#ifndef TEST_HARNESS
        handleVoiceRecognitionEnable(addr, &uu->VoiceRecognitionEnable);
#endif
#ifdef TEST_HARNESS
        printf("Called handleVoiceRecognitionEnable");
        printf(" enable=%d", uu->VoiceRecognitionEnable.enable);
        putchar('\n');
#endif
        continue;
      }
      if(match2(skip1(getNumber(skip1(match1(skip1(matchChar(matchChar(matchChar(matchChar(skip1(matchChar(skip1(matchChar(matchChar(skip1(s, e), e, 'A'), e, 'T'), e), e, '+'), e), e, 'B'), e, 'I'), e, 'N'), e, 'P'), e), e), e), e, &uu->SpecificDataRequest.request), e), e))
      {
#ifndef TEST_HARNESS
        handleSpecificDataRequest(addr, &uu->SpecificDataRequest);
#endif
#ifdef TEST_HARNESS
        printf("Called handleSpecificDataRequest");
        printf(" request=%d", uu->SpecificDataRequest.request);
        putchar('\n');
#endif
        continue;
      }
      if(match2(skip1(getString(skip1(match1(skip1(matchChar(matchChar(matchChar(skip1(matchChar(skip1(matchChar(matchChar(skip1(s, e), e, 'A'), e, 'T'), e), e, '+'), e), e, 'V'), e, 'T'), e, 'S'), e), e), e), e, &uu->DTMFGeneration.code), e), e))
      {
#ifndef TEST_HARNESS
        handleDTMFGeneration(addr, &uu->DTMFGeneration);
#endif
#ifdef TEST_HARNESS
        printf("Called handleDTMFGeneration");
        printString("code", &uu->DTMFGeneration.code);
        putchar('\n');
#endif
        continue;
      }
      if(match2(skip1(match2(skip1(matchChar(matchChar(skip1(match2(skip1(match2(skip1(s, e), e), e), e), e), e, 'O'), e, 'K'), e), e), e), e))
      {
#ifndef TEST_HARNESS
        handleOK(addr);
#endif
#ifdef TEST_HARNESS
        printf("Called handleOK");
        putchar('\n');
#endif
        continue;
      }
      if(match2(skip1(match2(skip1(matchChar(matchChar(matchChar(matchChar(matchChar(skip1(match2(skip1(match2(skip1(s, e), e), e), e), e), e, 'E'), e, 'R'), e, 'R'), e, 'O'), e, 'R'), e), e), e), e))
      {
#ifndef TEST_HARNESS
        handleError(addr);
#endif
#ifdef TEST_HARNESS
        printf("Called handleError");
        putchar('\n');
#endif
        continue;
      }
      if(match2(skip1(match2(skip1(matchChar(matchChar(matchChar(matchChar(skip1(match2(skip1(match2(skip1(s, e), e), e), e), e), e, 'R'), e, 'I'), e, 'N'), e, 'G'), e), e), e), e))
      {
#ifndef TEST_HARNESS
        handleRing(addr);
#endif
#ifdef TEST_HARNESS
        printf("Called handleRing");
        putchar('\n');
#endif
        continue;
      }
      if(match2(skip1(match2(skip1(getNumber(skip1(match1(skip1(matchChar(matchChar(matchChar(skip1(matchChar(skip1(match2(skip1(match2(skip1(s, e), e), e), e), e), e, '+'), e), e, 'V'), e, 'G'), e, 'M'), e), e), e), e, &uu->MicrophoneGain.gain), e), e), e), e))
      {
#ifndef TEST_HARNESS
        handleMicrophoneGain(addr, &uu->MicrophoneGain);
#endif
#ifdef TEST_HARNESS
        printf("Called handleMicrophoneGain");
        printf(" gain=%d", uu->MicrophoneGain.gain);
        putchar('\n');
#endif
        continue;
      }
      if(match2(skip1(match2(skip1(getNumber(skip1(match1(skip1(matchChar(matchChar(matchChar(skip1(matchChar(skip1(match2(skip1(match2(skip1(s, e), e), e), e), e), e, '+'), e), e, 'V'), e, 'G'), e, 'S'), e), e), e), e, &uu->SpeakerGain.gain), e), e), e), e))
      {
#ifndef TEST_HARNESS
        handleSpeakerGain(addr, &uu->SpeakerGain);
#endif
#ifdef TEST_HARNESS
        printf("Called handleSpeakerGain");
        printf(" gain=%d", uu->SpeakerGain.gain);
        putchar('\n');
#endif
        continue;
      }
      /*
        The message does not contain a recognised AT command or response.
        Pass the data on to the application to have a go at 
      */
#ifndef TEST_HARNESS
      handleUnrecognised(s, p-s, addr);

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产一区二区美女诱惑| 亚洲视频网在线直播| 欧美性色aⅴ视频一区日韩精品| 国产成人av电影在线观看| 美女在线视频一区| 久久精工是国产品牌吗| 日韩国产欧美在线播放| 日韩二区三区四区| 日韩精品91亚洲二区在线观看 | 欧美日韩免费一区二区三区视频| fc2成人免费人成在线观看播放 | 欧美经典一区二区| 中文字幕乱码久久午夜不卡| 国产日韩欧美电影| 亚洲丝袜美腿综合| 亚洲欧美中日韩| 亚洲自拍另类综合| 午夜精品福利一区二区蜜股av| 亚洲一线二线三线视频| 日韩国产在线一| 精品一二三四区| 成人精品在线视频观看| 9人人澡人人爽人人精品| 99精品久久只有精品| 99国产精品久久| 欧美日韩在线播放三区| 日韩精品专区在线| 中文字幕色av一区二区三区| 亚洲激情成人在线| 国产最新精品精品你懂的| 成人动漫在线一区| 欧美日韩不卡一区二区| 久久久久久99久久久精品网站| 中文字幕一区二区三区色视频| 亚洲一区二区三区四区在线观看 | 久久久亚洲欧洲日产国码αv| 久久精品人人爽人人爽| 亚洲精品免费一二三区| 久久99久久精品欧美| 91啪亚洲精品| 91精品国产入口在线| 亚洲综合色区另类av| 久久99最新地址| 91视视频在线直接观看在线看网页在线看 | 亚洲国产成人自拍| 亚洲国产成人porn| 成人美女视频在线观看18| 欧美日韩国产bt| 国产精品国产三级国产专播品爱网| 亚洲国产精品精华液网站| 成人免费毛片嘿嘿连载视频| 在线综合视频播放| 亚洲色图欧洲色图婷婷| 国产一级精品在线| 宅男噜噜噜66一区二区66| 中文字幕av在线一区二区三区| 一区二区免费视频| 91影院在线免费观看| 久久久一区二区| 日日夜夜免费精品| 在线免费不卡视频| 自拍视频在线观看一区二区| 国产盗摄一区二区三区| 精品美女一区二区三区| 婷婷开心激情综合| 欧美调教femdomvk| 一区二区高清在线| 97久久精品人人做人人爽50路| 久久久亚洲综合| 国产精品一二三区在线| 精品成人一区二区三区| 成人av手机在线观看| 精品成人免费观看| 国模少妇一区二区三区| 日韩久久久久久| 麻豆精品国产传媒mv男同| 欧美日本一区二区| 亚州成人在线电影| 欧美三区在线视频| 午夜精品在线看| 色婷婷国产精品| 亚洲三级在线看| 色婷婷综合久色| 亚洲成人激情社区| 欧美日韩国产在线播放网站| 亚洲午夜激情av| 日韩一级完整毛片| 日韩av在线免费观看不卡| 91精品福利在线一区二区三区| 蜜桃久久精品一区二区| 欧美一三区三区四区免费在线看| 另类小说综合欧美亚洲| 欧美mv日韩mv国产网站app| 国内不卡的二区三区中文字幕| 日韩一区二区电影| 久久99精品久久久久久| 337p日本欧洲亚洲大胆精品| 成人一区二区三区在线观看| 中文一区一区三区高中清不卡| 99国产精品一区| 亚洲亚洲精品在线观看| 欧美色网站导航| 韩国欧美一区二区| 一区二区三区在线不卡| 欧美美女网站色| 国产高清不卡二三区| 亚洲欧美日韩精品久久久久| 欧美巨大另类极品videosbest| 久久99国产乱子伦精品免费| 亚洲乱码精品一二三四区日韩在线| 91在线观看视频| 免费久久精品视频| 国产精品二三区| 91精品国产一区二区人妖| 国产成人午夜精品影院观看视频| 亚洲欧美韩国综合色| 欧美www视频| 99re视频精品| 精品一区二区三区久久| 亚洲黄色小说网站| 国产视频911| 欧美丰满少妇xxxbbb| 99天天综合性| 激情深爱一区二区| 五月天丁香久久| 亚洲色图视频免费播放| 精品国产一区二区国模嫣然| 在线视频你懂得一区| 成人av午夜影院| 久88久久88久久久| 人人爽香蕉精品| 亚洲成人精品一区| 国产精品视频麻豆| 久久无码av三级| 日韩精品一区在线| 69堂国产成人免费视频| 99久久国产综合色|国产精品| 韩国一区二区三区| 日韩av一级电影| 亚洲高清视频中文字幕| 一区二区免费视频| 亚洲欧洲日产国码二区| 亚洲精品一区二区三区影院| 日韩视频免费观看高清完整版| 欧美性大战久久| 91在线porny国产在线看| 国产成人亚洲综合色影视| 国产综合久久久久久久久久久久| 天堂蜜桃一区二区三区| 亚洲一区在线视频| 亚洲免费资源在线播放| 成人免费一区二区三区视频 | 国产日韩欧美不卡在线| 欧美xxxxxxxxx| 精品sm捆绑视频| 久久免费国产精品| 国产女主播在线一区二区| 久久久噜噜噜久久人人看| 日韩欧美一区二区视频| 欧美一级二级三级蜜桃| 日韩视频一区二区三区| 欧美mv日韩mv国产网站app| 26uuu亚洲综合色| 久久只精品国产| 中文字幕第一页久久| 中文字幕中文字幕一区二区| 亚洲精品菠萝久久久久久久| 亚洲国产一区二区三区| 奇米一区二区三区av| 久久99精品一区二区三区三区| 韩国av一区二区| 97精品视频在线观看自产线路二| 不卡区在线中文字幕| 欧美亚洲综合久久| 91麻豆精品国产自产在线观看一区| 精品1区2区在线观看| 久久久蜜臀国产一区二区| 亚洲欧美在线视频| 奇米一区二区三区| 丁香五精品蜜臀久久久久99网站| 成人黄页在线观看| 欧美美女一区二区在线观看| 久久人人97超碰com| 综合久久久久久| 日韩专区中文字幕一区二区| 国产一区二区三区免费观看 | 一区二区三区在线免费观看| 日韩精品一级中文字幕精品视频免费观看| 手机精品视频在线观看| 国产大片一区二区| 欧美天堂一区二区三区| 日韩欧美123| 亚洲欧美影音先锋| 麻豆成人av在线| 成人av网址在线| 91精品欧美久久久久久动漫| 国产精品午夜久久| 久久精品免费观看| 在线观看亚洲a| 久久久久久久国产精品影院|