亚洲欧美第一页_禁久久精品乱码_粉嫩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一区二区三区免费野_久草精品视频
91精品国产色综合久久不卡电影| 国产精品996| 欧美日韩免费电影| 亚洲第一成人在线| 7777精品伊人久久久大香线蕉最新版| 调教+趴+乳夹+国产+精品| 欧美喷水一区二区| 久久99国内精品| 国产精品久久久久aaaa樱花| 不卡的av在线| 午夜精品国产更新| 精品国内片67194| 不卡的av网站| 午夜精品福利视频网站| 久久夜色精品国产噜噜av| 成人高清视频在线观看| 亚洲一区二区三区三| 日韩精品在线网站| 99久久伊人精品| 日韩av一级电影| 欧美国产一区视频在线观看| 在线免费观看日韩欧美| 久久精品噜噜噜成人88aⅴ| 国产精品视频yy9299一区| 欧美在线三级电影| 国产福利一区二区三区视频在线 | 精品日本一线二线三线不卡| 国产美女久久久久| 亚洲乱码中文字幕| 欧美精品一区二区蜜臀亚洲| 色综合久久88色综合天天免费| 久久精品国产77777蜜臀| 国产精品久久久久四虎| 91精品免费观看| 91尤物视频在线观看| 激情综合色综合久久| 亚洲欧美aⅴ...| 久久你懂得1024| 日韩欧美一区二区三区在线| 久久99精品久久久久久动态图| 日韩理论片一区二区| 欧美大黄免费观看| 在线视频一区二区三区| 国产精品综合久久| 日韩精品一卡二卡三卡四卡无卡| 欧美国产一区在线| 精品国免费一区二区三区| 在线观看亚洲a| 成人免费电影视频| 国产精品一区在线观看乱码| 视频一区欧美精品| 亚洲精品免费在线| 国产嫩草影院久久久久| 欧美mv日韩mv国产网站app| 欧美色大人视频| 成人福利电影精品一区二区在线观看| 日av在线不卡| 日韩综合小视频| 亚洲午夜精品一区二区三区他趣| 亚洲国产精品ⅴa在线观看| 精品日韩99亚洲| 欧美一级在线视频| 欧美三级电影在线观看| 色94色欧美sute亚洲线路一ni| 成人高清视频在线观看| 懂色av中文一区二区三区| 国产在线精品一区在线观看麻豆| 午夜电影一区二区| 亚洲国产日日夜夜| 亚洲欧美精品午睡沙发| ...中文天堂在线一区| 中文字幕成人av| 国产蜜臀97一区二区三区| 欧美精品一区二区在线播放| 日韩免费性生活视频播放| 欧美丰满少妇xxxbbb| 日本伦理一区二区| 欧美在线你懂的| 欧美日韩在线亚洲一区蜜芽| 欧美最新大片在线看| 欧美色成人综合| 7777精品伊人久久久大香线蕉经典版下载| 欧美日韩亚洲综合在线| 欧美日韩另类一区| 欧美一级高清片| 欧美一级在线免费| 精品国产一区二区亚洲人成毛片| 久久久久久久久久久99999| 欧美精品一区二区三区蜜桃| 久久蜜桃av一区精品变态类天堂| 久久久精品日韩欧美| 欧美国产综合色视频| 亚洲美女屁股眼交| 亚洲在线成人精品| 青青草国产精品亚洲专区无| 国产在线精品一区在线观看麻豆| 乱一区二区av| 国产成人一区在线| 一本色道久久综合亚洲精品按摩| 在线观看视频一区| 6080午夜不卡| 国产欧美日本一区视频| 亚洲激情在线播放| 天天亚洲美女在线视频| 国产在线一区观看| 色av一区二区| 欧美精品九九99久久| ww亚洲ww在线观看国产| 国产精品动漫网站| 爽好多水快深点欧美视频| 捆绑调教美女网站视频一区| 成人免费看片app下载| 欧亚一区二区三区| 久久久午夜精品理论片中文字幕| 亚洲欧美自拍偷拍色图| 视频一区国产视频| 粉嫩av一区二区三区| 欧美午夜影院一区| 国产亚洲精品资源在线26u| 亚洲精品高清视频在线观看| 毛片av中文字幕一区二区| 成人免费观看视频| 欧美日韩中文另类| 欧美国产精品v| 婷婷夜色潮精品综合在线| 高清不卡一二三区| 欧美高清视频不卡网| 国产精品久久久久永久免费观看 | 91精品视频网| 国产精品久线观看视频| 日本不卡一区二区三区| 99久久精品国产麻豆演员表| 91精品蜜臀在线一区尤物| 亚洲免费观看高清| 国产精品12区| 日韩美女主播在线视频一区二区三区| 国产精品久久久久久久久免费相片| 亚洲成人免费影院| 99精品视频中文字幕| 久久―日本道色综合久久| 亚洲超碰97人人做人人爱| 成人精品视频一区| 欧美成人欧美edvon| 亚洲国产欧美日韩另类综合| 成人午夜伦理影院| 久久久99久久| 久久国产综合精品| 欧美精品九九99久久| 一区二区在线观看不卡| 成人三级伦理片| 久久久久久久久蜜桃| 免费成人在线播放| 欧美精品v国产精品v日韩精品| 亚洲欧美福利一区二区| 国产91丝袜在线播放| 精品福利一二区| 免费av网站大全久久| 欧美日韩一区二区三区在线看 | 不卡一区二区中文字幕| 欧美激情中文字幕| 国产精品自在在线| 欧美精品一区二区精品网| 美女国产一区二区| 欧美xxxxx牲另类人与| 蜜臀久久99精品久久久久久9| 欧美日韩一卡二卡| 亚洲风情在线资源站| 欧美日韩在线一区二区| 天堂久久一区二区三区| 欧美精品乱人伦久久久久久| 亚洲成av人片在线观看| 欧美精品欧美精品系列| 免费观看91视频大全| 亚洲精品在线免费观看视频| 国产成人亚洲综合色影视| 国产精品日韩成人| 91污片在线观看| 亚洲美女在线国产| 在线播放亚洲一区| 蜜臀国产一区二区三区在线播放| 日韩午夜精品视频| 黑人巨大精品欧美黑白配亚洲| 欧美zozo另类异族| 成人免费毛片嘿嘿连载视频| 中文字幕视频一区二区三区久| 99久久久久免费精品国产 | 亚洲福利国产精品| 欧美一区二区高清| 国产成人精品亚洲午夜麻豆| 国产精品久久久久天堂| 91精品1区2区| 日韩av中文在线观看| 久久精品一二三| 波多野结衣在线一区| 一区二区三区在线视频免费观看| 欧美日韩免费在线视频| 黄色日韩网站视频| 亚洲精品va在线观看| 精品乱人伦小说| 99久久精品费精品国产一区二区|