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

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

?? whyt1_lib.c

?? /*** *** *** *** *** *** *** *** *** *** *** *** * File: whyt1_lib.c * * Library for accessing W
?? C
?? 第 1 頁 / 共 3 頁
字號:
/************************************************************************
*  File: whyt1_lib.c
*
*  Library for accessing WHYT1 devices.
*  The code accesses hardware using WinDriver's WDC library.
*  Code was generated by DriverWizard v9.01.
*
*  Copyright (c) 2007 Jungo Ltd.  http://www.jungo.com
*************************************************************************/

#include <stdio.h>
#include <stdarg.h>
#include "wdc_defs.h"
#include "utils.h"
#include "status_strings.h"
#include "whyt1_lib.h"

/*************************************************************
  Internal definitions
 *************************************************************/
/* WinDriver license registration string */
/* TODO: When using a registered WinDriver version, make sure the license string
         below is your specific WinDriver license registration string and set 
 * the driver name to your driver's name */
#define WHYT1_DEFAULT_LICENSE_STRING "12345abcde12345.abcde"
#define WHYT1_DEFAULT_DRIVER_NAME "windrvr6"

/* WHYT1 device information struct */
typedef struct {
    WD_TRANSFER      *pIntTransCmds;
    WHYT1_INT_HANDLER   funcDiagIntHandler;
    WHYT1_EVENT_HANDLER funcDiagEventHandler;
} WHYT1_DEV_CTX, *PWHYT1_DEV_CTX;
/* TODO: You can add fields to store additional device-specific information */

static CHAR gsWHYT1_LastErr[256];

/*************************************************************
  Static functions prototypes and inline implementation
 *************************************************************/
static BOOL DeviceValidate(const PWDC_DEVICE pDev);
static void DLLCALLCONV WHYT1_IntHandler(PVOID pData);
static void WHYT1_EventHandler(WD_EVENT *pEvent, PVOID pData);
static void ErrLog(const CHAR *sFormat, ...);
static void TraceLog(const CHAR *sFormat, ...);

static inline BOOL IsValidDevice(PWDC_DEVICE pDev, const CHAR *sFunc)
{
    if (!pDev || !WDC_GetDevContext(pDev))
    {
        snprintf(gsWHYT1_LastErr, sizeof(gsWHYT1_LastErr) - 1, "%s: NULL device %s\n",
            sFunc, !pDev ? "handle" : "context");
        ErrLog(gsWHYT1_LastErr);
        return FALSE;
    }

    return TRUE;
}

/*************************************************************
  Functions implementation
 *************************************************************/
/* -----------------------------------------------
    WHYT1 and WDC library initialize/uninit
   ----------------------------------------------- */
DWORD WHYT1_LibInit(void)
{
    DWORD dwStatus;
 
#if defined(WD_DRIVER_NAME_CHANGE)
    /* Set the driver name */
    if (!WD_DriverName(WHYT1_DEFAULT_DRIVER_NAME))
    {
        ErrLog("Failed to set the driver name for WDC library.\n");
        return WD_SYSTEM_INTERNAL_ERROR;
    }
#endif

    /* Set WDC library's debug options (default: level TRACE, output to Debug Monitor) */
    dwStatus = WDC_SetDebugOptions(WDC_DBG_DEFAULT, NULL);
    if (WD_STATUS_SUCCESS != dwStatus)
    {
        ErrLog("Failed to initialize debug options for WDC library.\n"
            "Error 0x%lx - %s\n", dwStatus, Stat2Str(dwStatus));
        
        return dwStatus;
    }

    /* Open a handle to the driver and initialize the WDC library */
    dwStatus = WDC_DriverOpen(WDC_DRV_OPEN_DEFAULT, WHYT1_DEFAULT_LICENSE_STRING);
    if (WD_STATUS_SUCCESS != dwStatus)
    {
        ErrLog("Failed to initialize the WDC library. Error 0x%lx - %s\n",
            dwStatus, Stat2Str(dwStatus));
        
        return dwStatus;
    }

    return WD_STATUS_SUCCESS;
}

DWORD WHYT1_LibUninit(void)
{
    DWORD dwStatus;

    /* Uninit the WDC library and close the handle to WinDriver */
    dwStatus = WDC_DriverClose();
    if (WD_STATUS_SUCCESS != dwStatus)
    {
        ErrLog("Failed to uninit the WDC library. Error 0x%lx - %s\n",
            dwStatus, Stat2Str(dwStatus));
    }

    return dwStatus;
}

/* -----------------------------------------------
    Device open/close
   ----------------------------------------------- */
WDC_DEVICE_HANDLE WHYT1_DeviceOpen(const WD_PCI_CARD_INFO *pDeviceInfo)
{
    DWORD dwStatus;
    PWHYT1_DEV_CTX pDevCtx = NULL;
    WDC_DEVICE_HANDLE hDev = NULL;

    /* Validate arguments */
    if (!pDeviceInfo)
    {
        ErrLog("WHYT1_DeviceOpen: Error - NULL device information struct pointer\n");
        return NULL;
    }

    /* Allocate memory for the WHYT1 device context */
    pDevCtx = (PWHYT1_DEV_CTX)malloc(sizeof (WHYT1_DEV_CTX));
    if (!pDevCtx)
    {
        ErrLog("Failed allocating memory for WHYT1 device context\n");
        return NULL;
    }

    BZERO(*pDevCtx);

    /* Open a WDC device handle */
    dwStatus = WDC_PciDeviceOpen(&hDev, pDeviceInfo, pDevCtx, NULL, NULL, NULL);

    if (WD_STATUS_SUCCESS != dwStatus)
    {
        ErrLog("Failed opening a WDC device handle. Error 0x%lx - %s\n",
            dwStatus, Stat2Str(dwStatus));
        goto Error;
    }

    /* Validate device information */
    if (!DeviceValidate((PWDC_DEVICE)hDev))
        goto Error;

    /* Return handle to the new device */
    TraceLog("WHYT1_DeviceOpen: Opened a WHYT1 device (handle 0x%p)\n", hDev);
    return hDev;

Error:    
    if (hDev)
        WHYT1_DeviceClose(hDev);
    else
        free(pDevCtx);
    
    return NULL;
}

BOOL WHYT1_DeviceClose(WDC_DEVICE_HANDLE hDev)
{
    DWORD dwStatus;
    PWDC_DEVICE pDev = (PWDC_DEVICE)hDev;
    PWHYT1_DEV_CTX pDevCtx;
    
    TraceLog("WHYT1_DeviceClose entered. Device handle: 0x%p\n", hDev);

    if (!hDev)
    {
        ErrLog("WHYT1_DeviceClose: Error - NULL device handle\n");
        return FALSE;
    }

    pDevCtx = (PWHYT1_DEV_CTX)WDC_GetDevContext(pDev);
    
    /* Disable interrupts */
    if (WDC_IntIsEnabled(hDev))
    {
        dwStatus = WHYT1_IntDisable(hDev);
        if (WD_STATUS_SUCCESS != dwStatus)
        {
            ErrLog("Failed disabling interrupts. Error 0x%lx - %s\n",
                dwStatus, Stat2Str(dwStatus));
        }
    }

    /* Close the device */
    dwStatus = WDC_PciDeviceClose(hDev);
    if (WD_STATUS_SUCCESS != dwStatus)
    {
        ErrLog("Failed closing a WDC device handle (0x%p). Error 0x%lx - %s\n",
            hDev, dwStatus, Stat2Str(dwStatus));
    }

    /* Free WHYT1 device context memory */
    if (pDevCtx)
        free (pDevCtx);
    
    return (WD_STATUS_SUCCESS == dwStatus);
}

static BOOL DeviceValidate(const PWDC_DEVICE pDev)
{
    DWORD i, dwNumAddrSpaces = pDev->dwNumAddrSpaces;

    /* TODO: You can modify the implementation of this function in order to
             verify that the device has all expected resources. */
    
    /* Verify that the device has at least one active address space */
    for (i = 0; i < dwNumAddrSpaces; i++)
    {
        if (WDC_AddrSpaceIsActive(pDev, i))
            return TRUE;
    }
    
    ErrLog("Device does not have any active memory or I/O address spaces\n");
    return FALSE;
}

/* -----------------------------------------------
    Interrupts
   ----------------------------------------------- */
static void DLLCALLCONV WHYT1_IntHandler(PVOID pData)
{
    PWDC_DEVICE pDev = (PWDC_DEVICE)pData;
    PWHYT1_DEV_CTX pDevCtx = (PWHYT1_DEV_CTX)WDC_GetDevContext(pDev);
    WHYT1_INT_RESULT intResult;

    BZERO(intResult);
    intResult.dwCounter = pDev->Int.dwCounter;
    intResult.dwLost = pDev->Int.dwLost;
    intResult.waitResult = (WD_INTERRUPT_WAIT_RESULT)pDev->Int.fStopped;
    
    /* Execute the diagnostics application's interrupt handler routine */
    pDevCtx->funcDiagIntHandler((WDC_DEVICE_HANDLE)pDev, &intResult);
}

DWORD WHYT1_IntEnable(WDC_DEVICE_HANDLE hDev, WHYT1_INT_HANDLER funcIntHandler)
{
    DWORD dwStatus;
    PWDC_DEVICE pDev = (PWDC_DEVICE)hDev;
    PWHYT1_DEV_CTX pDevCtx;
    WDC_ADDR_DESC *pAddrDesc;
    WD_TRANSFER *pTrans;

    TraceLog("WHYT1_IntEnable entered. Device handle: 0x%p\n", hDev);

    if (!IsValidDevice(pDev, "WHYT1_IntEnable"))
        return WD_INVALID_PARAMETER;

    pDevCtx = (PWHYT1_DEV_CTX)WDC_GetDevContext(pDev);

    /* Check if interrupts are already enabled */
    if (WDC_IntIsEnabled(hDev))
    {
        ErrLog("Interrupts are already enabled ...\n");
        return WD_OPERATION_ALREADY_DONE;
    }

    /* Define the number of interrupt transfer commands to use */
    #define NUM_TRANS_CMDS 1

    /* Allocate memory for the interrupt transfer commands */
    pTrans = (WD_TRANSFER*)calloc(NUM_TRANS_CMDS, sizeof(WD_TRANSFER));
    if (!pTrans)
    {
        ErrLog("Failed allocating memory for interrupt transfer commands\n");
        return WD_INSUFFICIENT_RESOURCES;
    }

    /* Prepare the interrupt transfer commands */
    /* The transfer commands will be executed by WinDriver in the kernel
      for each interrupt that is received */

    /* #1: Write to the INTMAK register */
    pAddrDesc = &pDev->pAddrDesc[AD_PCI_BAR0];
    pTrans[0].dwPort = pAddrDesc->kptAddr + 0x48;
    pTrans[0].cmdTrans = WDC_ADDR_IS_MEM(pAddrDesc) ? WM_BYTE : WP_BYTE;
    pTrans[0].Data.Byte = 0x0;

    /* Store the diag interrupt handler routine, which will be executed by
       WHYT1_IntHandler() when an interrupt is received */
    pDevCtx->funcDiagIntHandler = funcIntHandler;
    
    /* Enable the interrupts */
    dwStatus = WDC_IntEnable(hDev, pTrans, NUM_TRANS_CMDS, INTERRUPT_CMD_COPY,
        WHYT1_IntHandler, (PVOID)pDev, WDC_IS_KP(hDev));
        
    if (WD_STATUS_SUCCESS != dwStatus)
    {
        ErrLog("Failed enabling interrupts. Error 0x%lx - %s\n",
            dwStatus, Stat2Str(dwStatus));
        
        free(pTrans);
        
        return dwStatus;
    }

    /* Store the interrupt transfer commands in the device context */
    pDevCtx->pIntTransCmds = pTrans;

    /* TODO: You can add code here to write to the device in order
             to physically enable the hardware interrupts */

    TraceLog("WHYT1_IntEnable: Interrupts enabled\n");

    return WD_STATUS_SUCCESS;
}

DWORD WHYT1_IntDisable(WDC_DEVICE_HANDLE hDev)
{
    DWORD dwStatus;
    PWDC_DEVICE pDev = (PWDC_DEVICE)hDev;
    PWHYT1_DEV_CTX pDevCtx;

    TraceLog("WHYT1_IntDisable entered. Device handle: 0x%p\n", hDev);

    if (!IsValidDevice(pDev, "WHYT1_IntDisable"))
        return WD_INVALID_PARAMETER;

    pDevCtx = (PWHYT1_DEV_CTX)WDC_GetDevContext(pDev);
 
    if (!WDC_IntIsEnabled(hDev))
    {
        ErrLog("Interrupts are already disabled ...\n");
        return WD_OPERATION_ALREADY_DONE;
    }

    /* TODO: You can add code here to write to the device in order
             to physically disable the hardware interrupts */

    /* Disable the interrupts */
    dwStatus = WDC_IntDisable(hDev);
    if (WD_STATUS_SUCCESS != dwStatus)
    {
        ErrLog("Failed disabling interrupts. Error 0x%lx - %s\n",
            dwStatus, Stat2Str(dwStatus));
    }

    /* Free the memory allocated for the interrupt transfer commands */
    if (pDevCtx->pIntTransCmds)
    {
        free(pDevCtx->pIntTransCmds);
        pDevCtx->pIntTransCmds = NULL;
    }

    return dwStatus;
}

BOOL WHYT1_IntIsEnabled(WDC_DEVICE_HANDLE hDev)
{
    if (!IsValidDevice((PWDC_DEVICE)hDev, "WHYT1_IntIsEnabled"))
        return FALSE;

    return WDC_IntIsEnabled(hDev);
}

/* -----------------------------------------------
    Plug-and-play and power management events
   ----------------------------------------------- */
static void WHYT1_EventHandler(WD_EVENT *pEvent, PVOID pData)
{
    PWDC_DEVICE pDev = (PWDC_DEVICE)pData;
    PWHYT1_DEV_CTX pDevCtx = (PWHYT1_DEV_CTX)WDC_GetDevContext(pDev);

    TraceLog("WHYT1_EventHandler entered, pData: 0x%p, dwAction 0x%lx\n",
        pData, pEvent->dwAction);
    
    /* Execute the diagnostics application's event handler function */
    pDevCtx->funcDiagEventHandler((WDC_DEVICE_HANDLE)pDev, pEvent->dwAction);
}

DWORD WHYT1_EventRegister(WDC_DEVICE_HANDLE hDev, WHYT1_EVENT_HANDLER funcEventHandler)
{
    DWORD dwStatus;
    PWDC_DEVICE pDev = (PWDC_DEVICE)hDev;
    PWHYT1_DEV_CTX pDevCtx;
    DWORD dwActions = WD_ACTIONS_ALL;
    /* TODO: Modify the above to set up the plug-and-play/power management
             events for which you wish to receive notifications.
             dwActions can be set to any combination of the WD_EVENT_ACTION
             flags defined in windrvr.h */

    TraceLog("WHYT1_EventRegister entered. Device handle: 0x%p\n", hDev);
    
    if (!IsValidDevice(pDev, "WHYT1_EventRegister"))
        return WD_INVALID_PARAMETER;

    pDevCtx = (PWHYT1_DEV_CTX)WDC_GetDevContext(pDev);

    /* Check if event is already registered */
    if (WDC_EventIsRegistered(hDev))
    {
        ErrLog("Events are already registered ...\n");
        return WD_OPERATION_ALREADY_DONE;
    }

    /* Store the diag event handler routine to be executed from WHYT1_EventHandler() upon an event */
    pDevCtx->funcDiagEventHandler = funcEventHandler;

    /* Register event */
    dwStatus = WDC_EventRegister(hDev, dwActions, WHYT1_EventHandler, hDev, FALSE);
    
    if (WD_STATUS_SUCCESS != dwStatus)
    {
        ErrLog("Failed to register events. Error 0x%lx - %s\n",
            dwStatus, Stat2Str(dwStatus));
        return dwStatus;
    }

    TraceLog("Events registered\n");

    return WD_STATUS_SUCCESS;
}

DWORD WHYT1_EventUnregister(WDC_DEVICE_HANDLE hDev)
{
    DWORD dwStatus;
    
    TraceLog("WHYT1_EventUnregister entered. Device handle: 0x%p\n", hDev);
    
    if (!IsValidDevice((PWDC_DEVICE)hDev, "WHYT1_EventUnregister"))
        return WD_INVALID_PARAMETER;

    if (!WDC_EventIsRegistered(hDev))
    {
        ErrLog("Cannot unregister events - no events currently registered ...\n");
        return WD_OPERATION_ALREADY_DONE;
    }

    dwStatus = WDC_EventUnregister(hDev);
    
    if (WD_STATUS_SUCCESS != dwStatus)
    {
        ErrLog("Failed to unregister events. Error 0x%lx - %s\n",
            dwStatus, Stat2Str(dwStatus));
    }

    return dwStatus;
}

BOOL WHYT1_EventIsRegistered(WDC_DEVICE_HANDLE hDev)
{
    if (!IsValidDevice((PWDC_DEVICE)hDev, "WHYT1_EventIsRegistered"))
        return FALSE;

    return WDC_EventIsRegistered(hDev);
}

/* -----------------------------------------------
    Address spaces information
   ----------------------------------------------- */
DWORD WHYT1_GetNumAddrSpaces(WDC_DEVICE_HANDLE hDev)
{
    PWDC_DEVICE pDev = (PWDC_DEVICE)hDev;
    
    if (!IsValidDevice(pDev, "WHYT1_GetNumAddrSpaces"))
        return 0;

    return pDev->dwNumAddrSpaces;
}

BOOL WHYT1_GetAddrSpaceInfo(WDC_DEVICE_HANDLE hDev, WHYT1_ADDR_SPACE_INFO *pAddrSpaceInfo)
{
    PWDC_DEVICE pDev = (PWDC_DEVICE)hDev;
    WDC_ADDR_DESC *pAddrDesc;
    DWORD dwAddrSpace, dwMaxAddrSpace;
    BOOL fIsMemory;
    
    if (!IsValidDevice(pDev, "WHYT1_GetAddrSpaceInfo"))
        return FALSE;

#if defined(DEBUG)
    if (!pAddrSpaceInfo)
    {
        ErrLog("WHYT1_GetAddrSpaceInfo: Error - NULL address space information pointer\n");
        return FALSE;
    }
#endif

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产成人自拍网| 日韩女优av电影在线观看| 欧美日本视频在线| 国产精品每日更新| 热久久国产精品| 欧美午夜电影在线播放| 国产精品电影院| 国产一区二区女| 欧美成人一区二区| 亚洲第一成年网| 日本久久电影网| 亚洲图片欧美激情| 成人性生交大片免费看视频在线| 欧美一区二区免费观在线| 一区二区三区在线观看欧美| av不卡在线播放| 国产欧美日韩综合精品一区二区| 奇米影视一区二区三区小说| 色婷婷综合久久久中文一区二区 | 91精品婷婷国产综合久久竹菊| 中文字幕欧美激情| 国产精品一二三四区| 91精品在线观看入口| 日韩国产欧美一区二区三区| 欧美在线观看18| 亚洲线精品一区二区三区八戒| 91视频免费观看| 亚洲三级理论片| 福利电影一区二区| 亚洲国产成人自拍| av亚洲产国偷v产偷v自拍| 国产精品你懂的在线| av午夜一区麻豆| 亚洲精品videosex极品| 91电影在线观看| 五月综合激情婷婷六月色窝| 91精品久久久久久蜜臀| 久久国产成人午夜av影院| 欧美第一区第二区| 国产成a人亚洲| 最新国产の精品合集bt伙计| 一本色道久久综合亚洲91| 一区二区三区免费在线观看| 欧美三片在线视频观看| 日韩高清不卡在线| 欧美草草影院在线视频| 国产精品 日产精品 欧美精品| 国产喷白浆一区二区三区| 99视频超级精品| 亚洲一区av在线| 日韩欧美一区电影| 国产不卡在线视频| 亚洲欧美日韩国产另类专区| 欧美精品日韩一区| 国内精品国产成人国产三级粉色 | 欧美一区二区成人| 国产精品18久久久久久久久久久久| 国产精品日日摸夜夜摸av| 91小视频在线免费看| 天天色天天操综合| 国产日韩成人精品| 欧美日韩国产综合久久| 精品亚洲porn| 亚洲激情图片小说视频| 欧美一区二区美女| av一区二区三区四区| 首页国产欧美久久| 国产亚洲一区二区在线观看| 在线观看日韩国产| 国产一区二区三区四区五区美女 | 亚洲精品自拍动漫在线| 欧美一级淫片007| 国产大陆a不卡| 日韩二区三区四区| 日韩理论片一区二区| 精品国产乱码久久久久久久久| 91丨porny丨蝌蚪视频| 久久99久久久欧美国产| 亚洲日本在线a| 国产亚洲美州欧州综合国| 欧美色综合天天久久综合精品| 粉嫩13p一区二区三区| 青青草原综合久久大伊人精品优势| 中文字幕一区在线| 精品成人一区二区三区四区| 欧美视频完全免费看| av中文字幕不卡| 国产精品资源网| 日本成人中文字幕| 亚洲高清视频的网址| 国产精品久久久久7777按摩| 精品国产免费久久 | 亚洲成人7777| 国产精品国产三级国产| 久久久久久久免费视频了| 欧美一区二区三区日韩视频| 欧日韩精品视频| 91网站最新地址| a美女胸又www黄视频久久| 国产成人亚洲精品狼色在线 | 香蕉av福利精品导航| 最新欧美精品一区二区三区| 2017欧美狠狠色| 精品欧美一区二区在线观看| 欧美一区二区三区视频在线| 欧美男男青年gay1069videost| 色哟哟欧美精品| 色综合中文综合网| 国模冰冰炮一区二区| 欧美aⅴ一区二区三区视频| 亚洲成人动漫在线免费观看| 亚洲国产精品一区二区久久恐怖片| 亚洲人成在线观看一区二区| 成人免费在线视频| 自拍偷自拍亚洲精品播放| 亚洲欧洲精品一区二区三区| 亚洲视频综合在线| 最新久久zyz资源站| 亚洲精品成人悠悠色影视| 亚洲天天做日日做天天谢日日欢 | 国产人久久人人人人爽| 国产精品青草久久| 中文字幕一区二区视频| 亚洲欧美日韩中文播放| 亚洲精品自拍动漫在线| 亚洲图片自拍偷拍| 日韩电影在线观看一区| 老司机精品视频导航| 久久99精品国产麻豆不卡| 精品亚洲国产成人av制服丝袜| 国产成人精品免费一区二区| 99视频有精品| 欧美日韩成人在线| 久久先锋影音av| 亚洲免费毛片网站| 日本视频一区二区| 国产xxx精品视频大全| 92精品国产成人观看免费 | 91影院在线观看| 欧美精品v国产精品v日韩精品| 欧美成人video| 亚洲欧洲日韩综合一区二区| 亚洲午夜在线电影| 久久国产视频网| 99精品1区2区| 日韩欧美高清一区| 综合av第一页| 麻豆91在线看| 94色蜜桃网一区二区三区| 91麻豆精品国产91久久久使用方法| 久久综合精品国产一区二区三区| 综合激情成人伊人| 狠狠色综合播放一区二区| 91在线小视频| 欧美成人精品二区三区99精品| 国产精品初高中害羞小美女文| 亚洲国产一区二区三区| 国产一区二区三区视频在线播放 | 国产精品99久久久| 日本久久电影网| 久久综合成人精品亚洲另类欧美| 亚洲精品视频免费观看| 国产尤物一区二区| 在线成人高清不卡| 亚洲视频香蕉人妖| 国产精品99久久久久久久女警| 91精品视频网| 亚洲午夜私人影院| 91蝌蚪国产九色| 国产欧美1区2区3区| 麻豆视频一区二区| 欧美精品久久99| 又紧又大又爽精品一区二区| 国产91丝袜在线观看| 欧美一区二区三区啪啪| 亚洲一区中文在线| 一本久久综合亚洲鲁鲁五月天 | 日韩精品中文字幕一区二区三区| 一区二区三区资源| 成人综合在线视频| 国产午夜亚洲精品理论片色戒| 麻豆国产欧美一区二区三区| 欧美日韩视频在线一区二区| 亚洲欧美色一区| 91亚洲资源网| 亚洲裸体xxx| 高清在线观看日韩| 国产亚洲成av人在线观看导航| 免费欧美在线视频| 欧美一区二区在线观看| 亚洲成人黄色影院| 56国语精品自产拍在线观看| 午夜精品成人在线视频| 欧美日韩国产电影| 五月天国产精品| 在线成人免费视频| 免费成人在线网站| 日韩欧美一区二区久久婷婷| 久久99精品国产麻豆不卡| 欧美成人精精品一区二区频|