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

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

?? ff.c

?? 非常精簡的一個fat文件系統
?? C
?? 第 1 頁 / 共 4 頁
字號:
		if (_USE_SJIS &&
			((c >= 0x81 && c <= 0x9F) ||	/* Accept S-JIS code */
		    (c >= 0xE0 && c <= 0xFC))) {
			if (n == 0 && c == 0xE5)		/* Change heading \xE5 to \x05 */
				c = 0x05;
			a ^= 1; goto md_l2;
		}
		if (c == '"') break;				/* Reject " */
		if (c <= ')') goto md_l1;			/* Accept ! # $ % & ' ( ) */
		if (c <= ',') break;				/* Reject * + , */
		if (c <= '9') goto md_l1;			/* Accept - 0-9 */
		if (c <= '?') break;				/* Reject : ; < = > ? */
		if (!(a & 1)) {	/* These checks are not applied to S-JIS 2nd byte */
			if (c == '|') break;			/* Reject | */
			if (c >= '[' && c <= ']') break;/* Reject [ \ ] */
			if (_USE_NTFLAG && c >= 'A' && c <= 'Z')
				(t == 8) ? (b &= ~0x08) : (b &= ~0x10);
			if (c >= 'a' && c <= 'z') {		/* Convert to upper case */
				c -= 0x20;
				if (_USE_NTFLAG) (t == 8) ? (a |= 0x08) : (a |= 0x10);
			}
		}
	md_l1:
		a &= ~1;
	md_l2:
		if (n >= t) break;
		dirname[n++] = c;
	}
	return 1;
}




/*-----------------------------------------------------------------------*/
/* Trace a file path                                                     */
/*-----------------------------------------------------------------------*/

static
FRESULT trace_path (	/* FR_OK(0): successful, !=0: error code */
	DIR *dirobj,		/* Pointer to directory object to return last directory */
	char *fn,			/* Pointer to last segment name to return {file(8),ext(3),attr(1)} */
	const char *path,	/* Full-path string to trace a file or directory */
	BYTE **dir			/* Directory pointer in Win[] to retutn */
)
{
	DWORD clust;
	char ds;
	BYTE *dptr = NULL;
	FATFS *fs = dirobj->fs;	/* Get logical drive from the given DIR structure */


	/* Initialize directory object */
	clust = fs->dirbase;
	if (fs->fs_type == FS_FAT32) {
		dirobj->clust = dirobj->sclust = clust;
		dirobj->sect = clust2sect(fs, clust);
	} else {
		dirobj->clust = dirobj->sclust = 0;
		dirobj->sect = clust;
	}
	dirobj->index = 0;

	if (*path == '\0') {					/* Null path means the root directory */
		*dir = NULL; return FR_OK;
	}

	for (;;) {
		ds = make_dirfile(&path, fn);			/* Get a paragraph into fn[] */
		if (ds == 1) return FR_INVALID_NAME;
		for (;;) {
			if (!move_window(fs, dirobj->sect)) return FR_RW_ERROR;
			dptr = &fs->win[(dirobj->index & ((S_SIZ - 1) / 32)) * 32];	/* Pointer to the directory entry */
			if (dptr[DIR_Name] == 0)						/* Has it reached to end of dir? */
				return !ds ? FR_NO_FILE : FR_NO_PATH;
			if (dptr[DIR_Name] != 0xE5						/* Matched? */
				&& !(dptr[DIR_Attr] & AM_VOL)
				&& !memcmp(&dptr[DIR_Name], fn, 8+3) ) break;
			if (!next_dir_entry(dirobj))					/* Next directory pointer */
				return !ds ? FR_NO_FILE : FR_NO_PATH;
		}
		if (!ds) { *dir = dptr; return FR_OK; }				/* Matched with end of path */
		if (!(dptr[DIR_Attr] & AM_DIR)) return FR_NO_PATH;	/* Cannot trace because it is a file */
		clust = ((DWORD)LD_WORD(&dptr[DIR_FstClusHI]) << 16) | LD_WORD(&dptr[DIR_FstClusLO]); /* Get cluster# of the directory */
		dirobj->clust = dirobj->sclust = clust;				/* Restart scanning at the new directory */
		dirobj->sect = clust2sect(fs, clust);
		dirobj->index = 2;
	}
}




/*-----------------------------------------------------------------------*/
/* Reserve a directory entry                                             */
/*-----------------------------------------------------------------------*/

#if !_FS_READONLY
static
FRESULT reserve_direntry (	/* FR_OK: successful, FR_DENIED: no free entry, FR_RW_ERROR: a disk error occured */
	DIR *dirobj,			/* Target directory to create new entry */
	BYTE **dir				/* Pointer to pointer to created entry to retutn */
)
{
	DWORD clust, sector;
	BYTE c, n, *dptr;
	FATFS *fs = dirobj->fs;


	/* Re-initialize directory object */
	clust = dirobj->sclust;
	if (clust) {	/* Dyanmic directory table */
		dirobj->clust = clust;
		dirobj->sect = clust2sect(fs, clust);
	} else {		/* Static directory table */
		dirobj->sect = fs->dirbase;
	}
	dirobj->index = 0;

	do {
		if (!move_window(fs, dirobj->sect)) return FR_RW_ERROR;
		dptr = &fs->win[(dirobj->index & ((S_SIZ - 1) / 32)) * 32];	/* Pointer to the directory entry */
		c = dptr[DIR_Name];
		if (c == 0 || c == 0xE5) {			/* Found an empty entry! */
			*dir = dptr; return FR_OK;
		}
	} while (next_dir_entry(dirobj));				/* Next directory pointer */
	/* Reached to end of the directory table */

	/* Abort when static table or could not stretch dynamic table */
	if (!clust || !(clust = create_chain(fs, dirobj->clust))) return FR_DENIED;
	if (clust == 1 || !move_window(fs, 0)) return FR_RW_ERROR;

	fs->winsect = sector = clust2sect(fs, clust);		/* Cleanup the expanded table */
	memset(fs->win, 0, S_SIZ);
	for (n = fs->sects_clust; n; n--) {
		if (disk_write(fs->drive, fs->win, sector, 1) != RES_OK)
			return FR_RW_ERROR;
		sector++;
	}
	fs->winflag = 1;
	*dir = fs->win;
	return FR_OK;
}
#endif /* !_FS_READONLY */




/*-----------------------------------------------------------------------*/
/* Load boot record and check if it is a FAT boot record                 */
/*-----------------------------------------------------------------------*/

static
BYTE check_fs (		/* 0:The FAT boot record, 1:Valid boot record but not an FAT, 2:Not a boot record or error */
	FATFS *fs,		/* File system object */
	DWORD sect		/* Sector# (lba) to check if it is a FAT boot record or not */
)
{
	if (disk_read(fs->drive, fs->win, sect, 1) != RES_OK)	/* Load boot record */
		return 2;
	if (LD_WORD(&fs->win[BS_55AA]) != 0xAA55)				/* Check record signature (always placed at offset 510 even if the sector size is >512) */
		return 2;

	if (!memcmp(&fs->win[BS_FilSysType], "FAT", 3))			/* Check FAT signature */
		return 0;
	if (!memcmp(&fs->win[BS_FilSysType32], "FAT32", 5) && !(fs->win[BPB_ExtFlags] & 0x80))
		return 0;

	return 1;
}




/*-----------------------------------------------------------------------*/
/* Make sure that the file system is valid                               */
/*-----------------------------------------------------------------------*/

static
FRESULT auto_mount (		/* FR_OK(0): successful, !=0: any error occured */
	const char **path,		/* Pointer to pointer to the path name (drive number) */
	FATFS **rfs,			/* Pointer to pointer to the found file system object */
	BYTE chk_wp				/* !=0: Check media write protection for write access */
)
{
	BYTE drv, fmt, *tbl;
	DSTATUS stat;
	DWORD bootsect, fatsize, totalsect, maxclust;
	const char *p = *path;
	FATFS *fs;


	/* Get drive number from the path name */
	while (*p == ' ') p++;		/* Strip leading spaces */
	drv = p[0] - '0';			/* Is there a drive number? */
	if (drv <= 9 && p[1] == ':')
		p += 2;			/* Found a drive number, get and strip it */
	else
		drv = 0;		/* No drive number is given, use drive number 0 as default */
	if (*p == '/') p++;	/* Strip heading slash */
	*path = p;			/* Return pointer to the path name */

	/* Check if the drive number is valid or not */
	if (drv >= _DRIVES) return FR_INVALID_DRIVE;	/* Is the drive number valid? */
	if (!(fs = FatFs[drv])) return FR_NOT_ENABLED;	/* Is the file system object registered? */
	*rfs = fs;			/* Returen pointer to the corresponding file system object */

	/* Check if the logical drive has been mounted or not */
	if (fs->fs_type) {
		stat = disk_status(fs->drive);
		if (!(stat & STA_NOINIT)) {				/* If the physical drive is kept initialized */
#if !_FS_READONLY
			if (chk_wp && (stat & STA_PROTECT))	/* Check write protection if needed */
				return FR_WRITE_PROTECTED;
#endif
			return FR_OK;						/* The file system object is valid */
		}
	}

	/* The logical drive has not been mounted, following code attempts to mount the logical drive */

	memset(fs, 0, sizeof(FATFS));		/* Clean-up the file system object */
	fs->drive = LD2PD(drv);				/* Bind the logical drive and a physical drive */
	stat = disk_initialize(fs->drive);	/* Initialize low level disk I/O layer */
	if (stat & STA_NOINIT)				/* Check if the drive is ready */
		return FR_NOT_READY;
#if S_MAX_SIZ > 512						/* Check disk sector size */
	if (disk_ioctl(drv, GET_SECTOR_SIZE, &S_SIZ) != RES_OK || S_SIZ > S_MAX_SIZ)
		return FR_NO_FILESYSTEM;
#endif
#if !_FS_READONLY
	if (chk_wp && (stat & STA_PROTECT))	/* Check write protection if needed */
		return FR_WRITE_PROTECTED;
#endif
	/* Search FAT partition on the drive */
	fmt = check_fs(fs, bootsect = 0);	/* Check sector 0 as an SFD format */
	if (fmt == 1) {						/* Not a FAT boot record, it may be patitioned */
		/* Check a partition listed in top of the partition table */
		tbl = &fs->win[MBR_Table + LD2PT(drv) * 16];	/* Partition table */
		if (tbl[4]) {								/* Is the partition existing? */
			bootsect = LD_DWORD(&tbl[8]);			/* Partition offset in LBA */
			fmt = check_fs(fs, bootsect);			/* Check the partition */
		}
	}
	if (fmt || LD_WORD(&fs->win[BPB_BytsPerSec]) != S_SIZ)	/* No valid FAT patition is found */
		return FR_NO_FILESYSTEM;

	/* Initialize the file system object */
	fatsize = LD_WORD(&fs->win[BPB_FATSz16]);			/* Number of sectors per FAT */
	if (!fatsize) fatsize = LD_DWORD(&fs->win[BPB_FATSz32]);
	fs->sects_fat = fatsize;
	fs->n_fats = fs->win[BPB_NumFATs];					/* Number of FAT copies */
	fatsize *= fs->n_fats;								/* (Number of sectors in FAT area) */
	fs->fatbase = bootsect + LD_WORD(&fs->win[BPB_RsvdSecCnt]); /* FAT start sector (lba) */
	fs->sects_clust = fs->win[BPB_SecPerClus];			/* Number of sectors per cluster */
	fs->n_rootdir = LD_WORD(&fs->win[BPB_RootEntCnt]);	/* Nmuber of root directory entries */
	totalsect = LD_WORD(&fs->win[BPB_TotSec16]);		/* Number of sectors on the file system */
	if (!totalsect) totalsect = LD_DWORD(&fs->win[BPB_TotSec32]);
	fs->max_clust = maxclust = (totalsect				/* Last cluster# + 1 */
		- LD_WORD(&fs->win[BPB_RsvdSecCnt]) - fatsize - fs->n_rootdir / (S_SIZ/32)
		) / fs->sects_clust + 2;

	fmt = FS_FAT12;										/* Determine the FAT sub type */
	if (maxclust > 0xFF7) fmt = FS_FAT16;
	if (maxclust > 0xFFF7) fmt = FS_FAT32;
	fs->fs_type = fmt;

	if (fmt == FS_FAT32)
		fs->dirbase = LD_DWORD(&fs->win[BPB_RootClus]);	/* Root directory start cluster */
	else
		fs->dirbase = fs->fatbase + fatsize;			/* Root directory start sector (lba) */
	fs->database = fs->fatbase + fatsize + fs->n_rootdir / (S_SIZ/32);	/* Data start sector (lba) */

#if !_FS_READONLY
	fs->free_clust = 0xFFFFFFFF;
#if _USE_FSINFO
	/* Load fsinfo sector if needed */
	if (fmt == FS_FAT32) {
		fs->fsi_sector = bootsect + LD_WORD(&fs->win[BPB_FSInfo]);
		if (disk_read(fs->drive, fs->win, fs->fsi_sector, 1) == RES_OK &&
			LD_WORD(&fs->win[BS_55AA]) == 0xAA55 &&
			LD_DWORD(&fs->win[FSI_LeadSig]) == 0x41615252 &&
			LD_DWORD(&fs->win[FSI_StrucSig]) == 0x61417272) {
			fs->last_clust = LD_DWORD(&fs->win[FSI_Nxt_Free]);
			fs->free_clust = LD_DWORD(&fs->win[FSI_Free_Count]);
		}
	}
#endif
#endif
	fs->id = ++fsid;									/* File system mount ID */
	return FR_OK;
}




/*-----------------------------------------------------------------------*/
/* Check if the file/dir object is valid or not                          */
/*-----------------------------------------------------------------------*/

static
FRESULT validate (		/* FR_OK(0): The object is valid, !=0: Not valid */
	const FATFS *fs,	/* Pointer to the file system object */
	WORD id				/* id member of the target object to be checked */
)
{
	if (!fs || fs->id != id)
		return FR_INVALID_OBJECT;
	if (disk_status(fs->drive) & STA_NOINIT)
		return FR_NOT_READY;

	return FR_OK;
}




/*--------------------------------------------------------------------------

   Public Functions

--------------------------------------------------------------------------*/



/*-----------------------------------------------------------------------*/
/* Mount/Unmount a Locical Drive                                         */
/*-----------------------------------------------------------------------*/

FRESULT f_mount (
	BYTE drv,		/* Logical drive number to be mounted/unmounted */
	FATFS *fs		/* Pointer to new file system object (NULL for unmount)*/
)
{
	FATFS *fsobj;


	if (drv >= _DRIVES) return FR_INVALID_DRIVE;
	fsobj = FatFs[drv];
	FatFs[drv] = fs;
	if (fsobj) memset(fsobj, 0, sizeof(FATFS));
	if (fs) memset(fs, 0, sizeof(FATFS));

	return FR_OK;
}




/*-----------------------------------------------------------------------*/
/* Open or Create a File                                                 */
/*-----------------------------------------------------------------------*/

FRESULT f_open (
	FIL *fp,			/* Pointer to the blank file object */
	const char *path,	/* Pointer to the file name */
	BYTE mode			/* Access mode and file open mode flags */
)
{
	FRESULT res;
	BYTE *dir;
	DIR dirobj;
	char fn[8+3+1];
	FATFS *fs;


	fp->fs = NULL;
#if !_FS_READONLY
	mode &= (FA_READ|FA_WRITE|FA_CREATE_ALWAYS|FA_OPEN_ALWAYS|FA_CREATE_NEW);
	res = auto_mount(&path, &fs, (BYTE)(mode & (FA_WRITE|FA_CREATE_ALWAYS|FA_OPEN_ALWAYS|FA_CREATE_NEW)));
#else
	mode &= FA_READ;
	res = auto_mount(&path, &fs, 0);
#endif
	if (res != FR_OK) return res;
	dirobj.fs = fs;

	/* Trace the file path */
	res = trace_path(&dirobj, fn, path, &dir);
#if !_FS_READONLY
	/* Create or Open a file */
	if (mode & (FA_CREATE_ALWAYS|FA_OPEN_ALWAYS|FA_CREATE_NEW)) {
		DWORD ps, rs;
		if (res != FR_OK) {		/* No file, create new */
			if (res != FR_NO_FILE) return res;
			res = reserve_direntry(&dirobj, &dir);
			if (res != FR_OK) return res;
			memset(dir, 0, 32);						/* Initialize the new entry with open name */
			memcpy(&dir[DIR_Name], fn, 8+3);
			dir[DIR_NTres] = fn[11];
			mode |= FA_CREATE_ALWAYS;
		}
		else {					/* Any object is already existing */
			if (mode & FA_CREATE_NEW)			/* Cannot create new */
				return FR_EXIST;
			if (dir == NULL || (dir[DIR_Attr] & (AM_RDO|AM_DIR)))	/* Cannot overwrite it (R/O or DIR) */
				return FR_DENIED;
			if (mode & FA_CREATE_ALWAYS) {		/* Resize it to zero if needed */
				rs = ((DWORD)LD_WORD(&dir[DIR_FstClusHI]) << 16) | LD_WORD(&dir[DIR_FstClusLO]);	/* Get start cluster */
				ST_WORD(&dir[DIR_FstClusHI], 0);	/* cluster = 0 */
				ST_WORD(&dir[DIR_FstClusLO], 0);
				ST_DWORD(&dir[DIR_FileSize], 0);	/* size = 0 */
				fs->winflag = 1;
				ps = fs->winsect;				/* Remove the cluster chain */
				if (!remove_chain(fs, rs) || !move_window(fs, ps))
					return FR_RW_ERROR;
				fs->last_clust = rs - 1;		/* Reuse the cluster hole */
			}
		}
		if (mode & FA_CREATE_ALWAYS) {
			dir[DIR_Attr] = AM_ARC;				/* New attribute */
			ps = get_fattime();
			ST_DWORD(&dir[DIR_WrtTime], ps);	/* Updated time */
			ST_DWORD(&dir[DIR_CrtTime], ps);	/* Created time */
			fs->winflag = 1;
		}
	}
	/* Open an existing file */
	else {
#endif /* !_FS_READONLY */
		if (res != FR_OK) return res;		/* Trace failed */
		if (dir == NULL || (dir[DIR_Attr] & AM_DIR))	/* It is a directory */
			return FR_NO_FILE;
#if !_FS_READONLY
		if ((mode & FA_WRITE) && (dir[DIR_Attr] & AM_RDO)) /* R/O violation */
			return FR_DENIED;
	}

	fp->dir_sect = fs->winsect;			/* Pointer to the directory entry */
	fp->dir_ptr = dir;
#endif
	fp->flag = mode;					/* File access mode */
	fp->org_clust =						/* File start cluster */
		((DWORD)LD_WORD(&dir[DIR_FstClusHI]) << 16) | LD_WORD(&dir[DIR_FstClusLO]);
	fp->fsize = LD_DWORD(&dir[DIR_FileSize]);	/* File size */
	fp->fptr = 0;						/* File ptr */
	fp->sect_clust = 1;					/* Sector counter */
	fp->fs = fs; fp->id = fs->id;		/* Owner file system object of the file */

	return FR_OK;
}




/*-----------------------------------------------------------------------*/

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
www.性欧美| 国产精品一区二区91| 国产欧美日韩精品a在线观看| 成人免费观看av| 日本欧美韩国一区三区| 国产精品传媒在线| 欧美mv日韩mv亚洲| 99精品欧美一区| 国产一区二区美女| 首页国产欧美日韩丝袜| 中文字幕在线不卡一区二区三区| 日韩欧美一级特黄在线播放| 色婷婷精品大在线视频 | 日本在线不卡一区| 亚洲欧洲性图库| 2022国产精品视频| 欧美精品丝袜中出| 91激情五月电影| 成人激情视频网站| 国内精品嫩模私拍在线| 免费在线观看不卡| 亚洲国产综合人成综合网站| 中文字幕一区av| 久久精品亚洲精品国产欧美| 这里只有精品99re| 欧美日韩在线三级| 一本色道综合亚洲| 成人爱爱电影网址| 丁香五精品蜜臀久久久久99网站| 久久se精品一区精品二区| 日韩电影一区二区三区四区| 亚洲高清在线精品| 亚洲综合丝袜美腿| 亚洲综合小说图片| 亚洲精品视频一区二区| 国产精品大尺度| 国产精品少妇自拍| 国产精品嫩草99a| 国产网站一区二区| 久久精品亚洲精品国产欧美| 久久九九99视频| 久久精品视频在线看| 久久精品无码一区二区三区| 国产亚洲成aⅴ人片在线观看| 精品动漫一区二区三区在线观看| 日韩免费电影一区| 欧美成人乱码一区二区三区| 精品入口麻豆88视频| 亚洲精品在线三区| 久久久久久一二三区| 日本一区二区三区久久久久久久久不 | 久久久不卡影院| 日本一区二区免费在线| 中文字幕av资源一区| 国产精品情趣视频| 亚洲人精品一区| 夜色激情一区二区| 日韩成人午夜电影| 美日韩一级片在线观看| 国产精品88av| 91麻豆国产香蕉久久精品| 一本一道久久a久久精品| 欧洲一区二区av| 91精品视频网| 国产亚洲欧洲997久久综合 | 亚洲国产综合在线| 午夜精品成人在线视频| 美女网站一区二区| 国产成人一区在线| 91香蕉视频在线| 欧美日韩国产精品成人| 久久亚洲综合色一区二区三区| 国产精品私人影院| 亚洲影院在线观看| 久久成人久久爱| www.亚洲色图.com| 91麻豆精品国产自产在线| 久久综合丝袜日本网| 中文字幕一区免费在线观看| 天天亚洲美女在线视频| 国产成人午夜电影网| 欧美午夜视频网站| 久久影音资源网| 一区二区三区日本| 国内精品久久久久影院色| 99精品桃花视频在线观看| 欧美二区三区的天堂| 欧美激情综合在线| 午夜精品视频一区| 国产999精品久久久久久绿帽| 91久久精品国产91性色tv| 精品国免费一区二区三区| 中文字幕一区二区三区蜜月| 日本不卡一区二区| 99视频超级精品| 精品国产区一区| 亚洲自拍偷拍图区| 国产a视频精品免费观看| 欧美巨大另类极品videosbest | 美腿丝袜亚洲色图| 91婷婷韩国欧美一区二区| 日韩午夜中文字幕| 伊人性伊人情综合网| 国产在线视频不卡二| 欧美日韩精品三区| 国产精品欧美久久久久无广告| 日韩精品电影在线观看| 91老司机福利 在线| 国产亚洲一区字幕| 琪琪久久久久日韩精品| 色综合久久久久久久久久久| 欧美国产一区视频在线观看| 免费看欧美美女黄的网站| 欧美综合欧美视频| 国产精品传媒入口麻豆| 国产激情一区二区三区| 欧美电视剧免费全集观看| 午夜精品123| 91电影在线观看| 日韩毛片视频在线看| 国产99久久久国产精品潘金| 精品国产百合女同互慰| 美女任你摸久久| 欧美日韩一级大片网址| 亚洲一区国产视频| 欧美在线不卡一区| 亚洲女子a中天字幕| 不卡大黄网站免费看| 欧美韩日一区二区三区四区| 国产一区二区久久| 久久久久亚洲综合| 国产成人在线色| 国产亚洲欧美一区在线观看| 国产一区不卡在线| 久久青草欧美一区二区三区| 国产一区二区三区免费在线观看| 日韩精品一区二区三区中文不卡 | 国产一区二区女| 久久精品视频免费| 韩国成人在线视频| 久久夜色精品国产欧美乱极品| 久国产精品韩国三级视频| 精品久久久久久久久久久院品网 | 欧美亚洲国产怡红院影院| 亚洲美腿欧美偷拍| 欧美在线播放高清精品| 一区二区三区在线观看国产| 色婷婷精品久久二区二区蜜臀av| 亚洲午夜一区二区| 91精品国产91久久久久久一区二区 | 亚洲欧美日韩中文字幕一区二区三区 | 蜜臀av一区二区| 日韩写真欧美这视频| 黄色精品一二区| 国产欧美日韩久久| 97久久超碰国产精品| 亚洲综合激情网| 91麻豆精品91久久久久同性| 久久99热这里只有精品| 国产色婷婷亚洲99精品小说| 成人av网在线| 亚洲国产aⅴ成人精品无吗| 日韩一区二区三区视频在线 | 亚洲国产欧美在线人成| 91精品国产欧美一区二区成人| 国产在线视频不卡二| 中文字幕在线不卡国产视频| 欧美亚洲另类激情小说| 免费的成人av| 中文字幕免费不卡| 欧美又粗又大又爽| 麻豆精品国产91久久久久久| 日本一区二区三区久久久久久久久不| 99re8在线精品视频免费播放| 亚洲电影一级片| 久久精品欧美日韩| 日本高清视频一区二区| 美国三级日本三级久久99 | 欧美国产精品一区二区| 欧美伊人精品成人久久综合97| 捆绑调教一区二区三区| 18欧美乱大交hd1984| 日韩小视频在线观看专区| www.久久久久久久久| 日日骚欧美日韩| 欧美国产日韩一二三区| 欧美日韩一区二区欧美激情| 国产一区二区免费视频| 亚洲综合男人的天堂| 国产亚洲一区二区在线观看| 在线日韩av片| 国产大片一区二区| 日韩精品一二三| 1区2区3区欧美| 久久中文字幕电影| 欧美日韩精品欧美日韩精品 | 亚洲午夜成aⅴ人片| 欧美激情一区在线观看| 日韩视频一区二区在线观看| 97久久人人超碰|