sqlite3_vfs 1457 third_party/sqlite/amalgamation/sqlite3.c typedef struct sqlite3_vfs sqlite3_vfs; sqlite3_vfs 1463 third_party/sqlite/amalgamation/sqlite3.c sqlite3_vfs *pNext; /* Next registered VFS */ sqlite3_vfs 1466 third_party/sqlite/amalgamation/sqlite3.c int (*xOpen)(sqlite3_vfs*, const char *zName, sqlite3_file*, sqlite3_vfs 1468 third_party/sqlite/amalgamation/sqlite3.c int (*xDelete)(sqlite3_vfs*, const char *zName, int syncDir); sqlite3_vfs 1469 third_party/sqlite/amalgamation/sqlite3.c int (*xAccess)(sqlite3_vfs*, const char *zName, int flags, int *pResOut); sqlite3_vfs 1470 third_party/sqlite/amalgamation/sqlite3.c int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut); sqlite3_vfs 1471 third_party/sqlite/amalgamation/sqlite3.c void *(*xDlOpen)(sqlite3_vfs*, const char *zFilename); sqlite3_vfs 1472 third_party/sqlite/amalgamation/sqlite3.c void (*xDlError)(sqlite3_vfs*, int nByte, char *zErrMsg); sqlite3_vfs 1473 third_party/sqlite/amalgamation/sqlite3.c void (*(*xDlSym)(sqlite3_vfs*,void*, const char *zSymbol))(void); sqlite3_vfs 1474 third_party/sqlite/amalgamation/sqlite3.c void (*xDlClose)(sqlite3_vfs*, void*); sqlite3_vfs 1475 third_party/sqlite/amalgamation/sqlite3.c int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut); sqlite3_vfs 1476 third_party/sqlite/amalgamation/sqlite3.c int (*xSleep)(sqlite3_vfs*, int microseconds); sqlite3_vfs 1477 third_party/sqlite/amalgamation/sqlite3.c int (*xCurrentTime)(sqlite3_vfs*, double*); sqlite3_vfs 1478 third_party/sqlite/amalgamation/sqlite3.c int (*xGetLastError)(sqlite3_vfs*, int, char *); sqlite3_vfs 1483 third_party/sqlite/amalgamation/sqlite3.c int (*xCurrentTimeInt64)(sqlite3_vfs*, sqlite3_int64*); sqlite3_vfs 1488 third_party/sqlite/amalgamation/sqlite3.c int (*xSetSystemCall)(sqlite3_vfs*, const char *zName, sqlite3_syscall_ptr); sqlite3_vfs 1489 third_party/sqlite/amalgamation/sqlite3.c sqlite3_syscall_ptr (*xGetSystemCall)(sqlite3_vfs*, const char *zName); sqlite3_vfs 1490 third_party/sqlite/amalgamation/sqlite3.c const char *(*xNextSystemCall)(sqlite3_vfs*, const char *zName); sqlite3_vfs 5614 third_party/sqlite/amalgamation/sqlite3.c SQLITE_API sqlite3_vfs *sqlite3_vfs_find(const char *zVfsName); sqlite3_vfs 5615 third_party/sqlite/amalgamation/sqlite3.c SQLITE_API int sqlite3_vfs_register(sqlite3_vfs*, int makeDflt); sqlite3_vfs 5616 third_party/sqlite/amalgamation/sqlite3.c SQLITE_API int sqlite3_vfs_unregister(sqlite3_vfs*); sqlite3_vfs 8381 third_party/sqlite/amalgamation/sqlite3.c sqlite3_vfs*, sqlite3_vfs 8443 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE const sqlite3_vfs *sqlite3PagerVfs(Pager*); sqlite3_vfs 8896 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3OsOpen(sqlite3_vfs *, const char *, sqlite3_file*, int, int *); sqlite3_vfs 8897 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3OsDelete(sqlite3_vfs *, const char *, int); sqlite3_vfs 8898 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3OsAccess(sqlite3_vfs *, const char *, int, int *pResOut); sqlite3_vfs 8899 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3OsFullPathname(sqlite3_vfs *, const char *, int, char *); sqlite3_vfs 8901 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void *sqlite3OsDlOpen(sqlite3_vfs *, const char *); sqlite3_vfs 8902 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3OsDlError(sqlite3_vfs *, int, char *); sqlite3_vfs 8903 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void (*sqlite3OsDlSym(sqlite3_vfs *, void *, const char *))(void); sqlite3_vfs 8904 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3OsDlClose(sqlite3_vfs *, void *); sqlite3_vfs 8906 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3OsRandomness(sqlite3_vfs *, int, char *); sqlite3_vfs 8907 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3OsSleep(sqlite3_vfs *, int); sqlite3_vfs 8908 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3OsCurrentTimeInt64(sqlite3_vfs *, sqlite3_int64*); sqlite3_vfs 8914 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3OsOpenMalloc(sqlite3_vfs *, const char *, sqlite3_file **, int,int*); sqlite3_vfs 9146 third_party/sqlite/amalgamation/sqlite3.c sqlite3_vfs *pVfs; /* OS Interface */ sqlite3_vfs 11486 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3JournalOpen(sqlite3_vfs *, const char *, sqlite3_file *, int, int); sqlite3_vfs 11487 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3JournalSize(sqlite3_vfs *); sqlite3_vfs 14071 third_party/sqlite/amalgamation/sqlite3.c sqlite3_vfs *pVfs, sqlite3_vfs 14087 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3OsDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ sqlite3_vfs 14091 third_party/sqlite/amalgamation/sqlite3.c sqlite3_vfs *pVfs, sqlite3_vfs 14100 third_party/sqlite/amalgamation/sqlite3.c sqlite3_vfs *pVfs, sqlite3_vfs 14109 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void *sqlite3OsDlOpen(sqlite3_vfs *pVfs, const char *zPath){ sqlite3_vfs 14112 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3OsDlError(sqlite3_vfs *pVfs, int nByte, char *zBufOut){ sqlite3_vfs 14115 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void (*sqlite3OsDlSym(sqlite3_vfs *pVfs, void *pHdle, const char *zSym))(void){ sqlite3_vfs 14118 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3OsDlClose(sqlite3_vfs *pVfs, void *pHandle){ sqlite3_vfs 14122 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3OsRandomness(sqlite3_vfs *pVfs, int nByte, char *zBufOut){ sqlite3_vfs 14125 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3OsSleep(sqlite3_vfs *pVfs, int nMicro){ sqlite3_vfs 14128 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3OsCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *pTimeOut){ sqlite3_vfs 14147 third_party/sqlite/amalgamation/sqlite3.c sqlite3_vfs *pVfs, sqlite3_vfs 14190 third_party/sqlite/amalgamation/sqlite3.c static sqlite3_vfs * SQLITE_WSD vfsList = 0; sqlite3_vfs 14191 third_party/sqlite/amalgamation/sqlite3.c #define vfsList GLOBAL(sqlite3_vfs *, vfsList) sqlite3_vfs 14197 third_party/sqlite/amalgamation/sqlite3.c SQLITE_API sqlite3_vfs *sqlite3_vfs_find(const char *zVfs){ sqlite3_vfs 14198 third_party/sqlite/amalgamation/sqlite3.c sqlite3_vfs *pVfs = 0; sqlite3_vfs 14221 third_party/sqlite/amalgamation/sqlite3.c static void vfsUnlink(sqlite3_vfs *pVfs){ sqlite3_vfs 14228 third_party/sqlite/amalgamation/sqlite3.c sqlite3_vfs *p = vfsList; sqlite3_vfs 14243 third_party/sqlite/amalgamation/sqlite3.c SQLITE_API int sqlite3_vfs_register(sqlite3_vfs *pVfs, int makeDflt){ sqlite3_vfs 14267 third_party/sqlite/amalgamation/sqlite3.c SQLITE_API int sqlite3_vfs_unregister(sqlite3_vfs *pVfs){ sqlite3_vfs 23450 third_party/sqlite/amalgamation/sqlite3.c sqlite3_vfs *pVfs, /* Pointer to vfs object */ sqlite3_vfs 23472 third_party/sqlite/amalgamation/sqlite3.c sqlite3_vfs *pVfs, /* Not used */ sqlite3_vfs 23619 third_party/sqlite/amalgamation/sqlite3.c sqlite3_vfs *pVfs, /* Not used on os2 */ sqlite3_vfs 23639 third_party/sqlite/amalgamation/sqlite3.c sqlite3_vfs *pVfs, /* Not used on os2 */ sqlite3_vfs 23693 third_party/sqlite/amalgamation/sqlite3.c static void *os2DlOpen(sqlite3_vfs *pVfs, const char *zFilename){ sqlite3_vfs 23705 third_party/sqlite/amalgamation/sqlite3.c static void os2DlError(sqlite3_vfs *pVfs, int nBuf, char *zBufOut){ sqlite3_vfs 23708 third_party/sqlite/amalgamation/sqlite3.c static void (*os2DlSym(sqlite3_vfs *pVfs, void *pHandle, const char *zSymbol))(void){ sqlite3_vfs 23722 third_party/sqlite/amalgamation/sqlite3.c static void os2DlClose(sqlite3_vfs *pVfs, void *pHandle){ sqlite3_vfs 23736 third_party/sqlite/amalgamation/sqlite3.c static int os2Randomness(sqlite3_vfs *pVfs, int nBuf, char *zBuf ){ sqlite3_vfs 23788 third_party/sqlite/amalgamation/sqlite3.c static int os2Sleep( sqlite3_vfs *pVfs, int microsec ){ sqlite3_vfs 23810 third_party/sqlite/amalgamation/sqlite3.c static int os2CurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *piNow){ sqlite3_vfs 23852 third_party/sqlite/amalgamation/sqlite3.c static int os2CurrentTime( sqlite3_vfs *pVfs, double *prNow ){ sqlite3_vfs 23892 third_party/sqlite/amalgamation/sqlite3.c static int os2GetLastError(sqlite3_vfs *pVfs, int nBuf, char *zBuf){ sqlite3_vfs 23901 third_party/sqlite/amalgamation/sqlite3.c static sqlite3_vfs os2Vfs = { sqlite3_vfs 24539 third_party/sqlite/amalgamation/sqlite3.c sqlite3_vfs *pNotUsed, /* The VFS pointer. Not used */ sqlite3_vfs 24582 third_party/sqlite/amalgamation/sqlite3.c sqlite3_vfs *pNotUsed, sqlite3_vfs 24600 third_party/sqlite/amalgamation/sqlite3.c static const char *unixNextSystemCall(sqlite3_vfs *p, const char *zName){ sqlite3_vfs 28616 third_party/sqlite/amalgamation/sqlite3.c sqlite3_vfs *pVfs, /* Pointer to vfs object */ sqlite3_vfs 29005 third_party/sqlite/amalgamation/sqlite3.c int chromium_sqlite3_fill_in_unix_sqlite3_file(sqlite3_vfs* vfs, sqlite3_vfs 29088 third_party/sqlite/amalgamation/sqlite3.c sqlite3_vfs *pVfs, /* The VFS for which this is the xOpen method */ sqlite3_vfs 29305 third_party/sqlite/amalgamation/sqlite3.c sqlite3_vfs *NotUsed, /* VFS containing this as the xDelete method */ sqlite3_vfs 29348 third_party/sqlite/amalgamation/sqlite3.c sqlite3_vfs *NotUsed, /* The VFS containing this xAccess method */ sqlite3_vfs 29391 third_party/sqlite/amalgamation/sqlite3.c sqlite3_vfs *pVfs, /* Pointer to vfs object */ sqlite3_vfs 29428 third_party/sqlite/amalgamation/sqlite3.c static void *unixDlOpen(sqlite3_vfs *NotUsed, const char *zFilename){ sqlite3_vfs 29440 third_party/sqlite/amalgamation/sqlite3.c static void unixDlError(sqlite3_vfs *NotUsed, int nBuf, char *zBufOut){ sqlite3_vfs 29450 third_party/sqlite/amalgamation/sqlite3.c static void (*unixDlSym(sqlite3_vfs *NotUsed, void *p, const char*zSym))(void){ sqlite3_vfs 29473 third_party/sqlite/amalgamation/sqlite3.c static void unixDlClose(sqlite3_vfs *NotUsed, void *pHandle){ sqlite3_vfs 29487 third_party/sqlite/amalgamation/sqlite3.c static int unixRandomness(sqlite3_vfs *NotUsed, int nBuf, char *zBuf){ sqlite3_vfs 29534 third_party/sqlite/amalgamation/sqlite3.c static int unixSleep(sqlite3_vfs *NotUsed, int microseconds){ sqlite3_vfs 29573 third_party/sqlite/amalgamation/sqlite3.c static int unixCurrentTimeInt64(sqlite3_vfs *NotUsed, sqlite3_int64 *piNow){ sqlite3_vfs 29603 third_party/sqlite/amalgamation/sqlite3.c static int unixCurrentTime(sqlite3_vfs *NotUsed, double *prNow){ sqlite3_vfs 29618 third_party/sqlite/amalgamation/sqlite3.c static int unixGetLastError(sqlite3_vfs *NotUsed, int NotUsed2, char *NotUsed3){ sqlite3_vfs 29895 third_party/sqlite/amalgamation/sqlite3.c sqlite3_vfs dummyVfs; sqlite3_vfs 30865 third_party/sqlite/amalgamation/sqlite3.c static sqlite3_vfs aVfs[] = { sqlite3_vfs 30896 third_party/sqlite/amalgamation/sqlite3.c for(i=0; i<(sizeof(aVfs)/sizeof(sqlite3_vfs)); i++){ sqlite3_vfs 31223 third_party/sqlite/amalgamation/sqlite3.c sqlite3_vfs *pVfs; /* The VFS used to open this file */ sqlite3_vfs 31245 third_party/sqlite/amalgamation/sqlite3.c sqlite3_vfs *pVfs, sqlite3_vfs 32501 third_party/sqlite/amalgamation/sqlite3.c static int winOpen(sqlite3_vfs*,const char*,sqlite3_file*,int,int*); sqlite3_vfs 32502 third_party/sqlite/amalgamation/sqlite3.c static int winDelete(sqlite3_vfs *,const char*,int); sqlite3_vfs 32510 third_party/sqlite/amalgamation/sqlite3.c static void winShmPurge(sqlite3_vfs *pVfs, int deleteFlag){ sqlite3_vfs 33160 third_party/sqlite/amalgamation/sqlite3.c sqlite3_vfs *pVfs, /* Not used */ sqlite3_vfs 33387 third_party/sqlite/amalgamation/sqlite3.c sqlite3_vfs *pVfs, /* Not used on win32 */ sqlite3_vfs 33437 third_party/sqlite/amalgamation/sqlite3.c sqlite3_vfs *pVfs, /* Not used on win32 */ sqlite3_vfs 33508 third_party/sqlite/amalgamation/sqlite3.c sqlite3_vfs *pVfs, /* Pointer to vfs object */ sqlite3_vfs 33588 third_party/sqlite/amalgamation/sqlite3.c sqlite3_vfs *pVfs, sqlite3_vfs 33662 third_party/sqlite/amalgamation/sqlite3.c static void *winDlOpen(sqlite3_vfs *pVfs, const char *zFilename){ sqlite3_vfs 33683 third_party/sqlite/amalgamation/sqlite3.c static void winDlError(sqlite3_vfs *pVfs, int nBuf, char *zBufOut){ sqlite3_vfs 33687 third_party/sqlite/amalgamation/sqlite3.c void (*winDlSym(sqlite3_vfs *pVfs, void *pHandle, const char *zSymbol))(void){ sqlite3_vfs 33698 third_party/sqlite/amalgamation/sqlite3.c void winDlClose(sqlite3_vfs *pVfs, void *pHandle){ sqlite3_vfs 33713 third_party/sqlite/amalgamation/sqlite3.c static int winRandomness(sqlite3_vfs *pVfs, int nBuf, char *zBuf){ sqlite3_vfs 33750 third_party/sqlite/amalgamation/sqlite3.c static int winSleep(sqlite3_vfs *pVfs, int microsec){ sqlite3_vfs 33774 third_party/sqlite/amalgamation/sqlite3.c static int winCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *piNow){ sqlite3_vfs 33816 third_party/sqlite/amalgamation/sqlite3.c int winCurrentTime(sqlite3_vfs *pVfs, double *prNow){ sqlite3_vfs 33856 third_party/sqlite/amalgamation/sqlite3.c static int winGetLastError(sqlite3_vfs *pVfs, int nBuf, char *zBuf){ sqlite3_vfs 33867 third_party/sqlite/amalgamation/sqlite3.c static sqlite3_vfs winVfs = { sqlite3_vfs 36381 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3WalOpen(sqlite3_vfs*, sqlite3_file*, const char *zName, int, Wal**); sqlite3_vfs 37041 third_party/sqlite/amalgamation/sqlite3.c sqlite3_vfs *pVfs; /* OS functions to use for IO */ sqlite3_vfs 38792 third_party/sqlite/amalgamation/sqlite3.c sqlite3_vfs *pVfs = pPager->pVfs; sqlite3_vfs 39025 third_party/sqlite/amalgamation/sqlite3.c sqlite3_vfs *pVfs = pPager->pVfs; sqlite3_vfs 40711 third_party/sqlite/amalgamation/sqlite3.c sqlite3_vfs *pVfs, /* The virtual file system to use */ sqlite3_vfs 41004 third_party/sqlite/amalgamation/sqlite3.c sqlite3_vfs * const pVfs = pPager->pVfs; sqlite3_vfs 41191 third_party/sqlite/amalgamation/sqlite3.c sqlite3_vfs * const pVfs = pPager->pVfs; sqlite3_vfs 41564 third_party/sqlite/amalgamation/sqlite3.c sqlite3_vfs * const pVfs = pPager->pVfs; /* Local cache of vfs pointer */ sqlite3_vfs 42687 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE const sqlite3_vfs *sqlite3PagerVfs(Pager *pPager){ sqlite3_vfs 43691 third_party/sqlite/amalgamation/sqlite3.c sqlite3_vfs *pVfs; /* The VFS used to create pDbFd */ sqlite3_vfs 44513 third_party/sqlite/amalgamation/sqlite3.c sqlite3_vfs *pVfs, /* vfs module to open wal and wal-index */ sqlite3_vfs 48816 third_party/sqlite/amalgamation/sqlite3.c sqlite3_vfs *pVfs; /* The VFS to use for this btree */ sqlite3_vfs 58910 third_party/sqlite/amalgamation/sqlite3.c sqlite3_vfs *pVfs = db->pVfs; sqlite3_vfs 68937 third_party/sqlite/amalgamation/sqlite3.c sqlite3_vfs *pVfs; /* The "real" underlying VFS */ sqlite3_vfs 69092 third_party/sqlite/amalgamation/sqlite3.c sqlite3_vfs *pVfs, /* The VFS to use for actual file I/O */ sqlite3_vfs 69131 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3JournalSize(sqlite3_vfs *pVfs){ sqlite3_vfs 86662 third_party/sqlite/amalgamation/sqlite3.c sqlite3_vfs *(*vfs_find)(const char*); sqlite3_vfs 86663 third_party/sqlite/amalgamation/sqlite3.c int (*vfs_register)(sqlite3_vfs*,int); sqlite3_vfs 86664 third_party/sqlite/amalgamation/sqlite3.c int (*vfs_unregister)(sqlite3_vfs*); sqlite3_vfs 87279 third_party/sqlite/amalgamation/sqlite3.c sqlite3_vfs *pVfs = db->pVfs; sqlite3_vfs 109633 third_party/sqlite/amalgamation/sqlite3.c sqlite3_vfs *pVfs; sqlite3_vfs 914 third_party/sqlite/amalgamation/sqlite3.h typedef struct sqlite3_vfs sqlite3_vfs; sqlite3_vfs 920 third_party/sqlite/amalgamation/sqlite3.h sqlite3_vfs *pNext; /* Next registered VFS */ sqlite3_vfs 923 third_party/sqlite/amalgamation/sqlite3.h int (*xOpen)(sqlite3_vfs*, const char *zName, sqlite3_file*, sqlite3_vfs 925 third_party/sqlite/amalgamation/sqlite3.h int (*xDelete)(sqlite3_vfs*, const char *zName, int syncDir); sqlite3_vfs 926 third_party/sqlite/amalgamation/sqlite3.h int (*xAccess)(sqlite3_vfs*, const char *zName, int flags, int *pResOut); sqlite3_vfs 927 third_party/sqlite/amalgamation/sqlite3.h int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut); sqlite3_vfs 928 third_party/sqlite/amalgamation/sqlite3.h void *(*xDlOpen)(sqlite3_vfs*, const char *zFilename); sqlite3_vfs 929 third_party/sqlite/amalgamation/sqlite3.h void (*xDlError)(sqlite3_vfs*, int nByte, char *zErrMsg); sqlite3_vfs 930 third_party/sqlite/amalgamation/sqlite3.h void (*(*xDlSym)(sqlite3_vfs*,void*, const char *zSymbol))(void); sqlite3_vfs 931 third_party/sqlite/amalgamation/sqlite3.h void (*xDlClose)(sqlite3_vfs*, void*); sqlite3_vfs 932 third_party/sqlite/amalgamation/sqlite3.h int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut); sqlite3_vfs 933 third_party/sqlite/amalgamation/sqlite3.h int (*xSleep)(sqlite3_vfs*, int microseconds); sqlite3_vfs 934 third_party/sqlite/amalgamation/sqlite3.h int (*xCurrentTime)(sqlite3_vfs*, double*); sqlite3_vfs 935 third_party/sqlite/amalgamation/sqlite3.h int (*xGetLastError)(sqlite3_vfs*, int, char *); sqlite3_vfs 940 third_party/sqlite/amalgamation/sqlite3.h int (*xCurrentTimeInt64)(sqlite3_vfs*, sqlite3_int64*); sqlite3_vfs 945 third_party/sqlite/amalgamation/sqlite3.h int (*xSetSystemCall)(sqlite3_vfs*, const char *zName, sqlite3_syscall_ptr); sqlite3_vfs 946 third_party/sqlite/amalgamation/sqlite3.h sqlite3_syscall_ptr (*xGetSystemCall)(sqlite3_vfs*, const char *zName); sqlite3_vfs 947 third_party/sqlite/amalgamation/sqlite3.h const char *(*xNextSystemCall)(sqlite3_vfs*, const char *zName); sqlite3_vfs 5071 third_party/sqlite/amalgamation/sqlite3.h SQLITE_API sqlite3_vfs *sqlite3_vfs_find(const char *zVfsName); sqlite3_vfs 5072 third_party/sqlite/amalgamation/sqlite3.h SQLITE_API int sqlite3_vfs_register(sqlite3_vfs*, int makeDflt); sqlite3_vfs 5073 third_party/sqlite/amalgamation/sqlite3.h SQLITE_API int sqlite3_vfs_unregister(sqlite3_vfs*); sqlite3_vfs 1015 third_party/sqlite/src/ext/async/sqlite3async.c sqlite3_vfs *pAsyncVfs, sqlite3_vfs 1037 third_party/sqlite/src/ext/async/sqlite3async.c sqlite3_vfs *pVfs = (sqlite3_vfs *)pAsyncVfs->pAppData; sqlite3_vfs 1173 third_party/sqlite/src/ext/async/sqlite3async.c static int asyncDelete(sqlite3_vfs *pAsyncVfs, const char *z, int syncDir){ sqlite3_vfs 1183 third_party/sqlite/src/ext/async/sqlite3async.c sqlite3_vfs *pAsyncVfs, sqlite3_vfs 1191 third_party/sqlite/src/ext/async/sqlite3async.c sqlite3_vfs *pVfs = (sqlite3_vfs *)pAsyncVfs->pAppData; sqlite3_vfs 1226 third_party/sqlite/src/ext/async/sqlite3async.c sqlite3_vfs *pAsyncVfs, sqlite3_vfs 1232 third_party/sqlite/src/ext/async/sqlite3async.c sqlite3_vfs *pVfs = (sqlite3_vfs *)pAsyncVfs->pAppData; sqlite3_vfs 1265 third_party/sqlite/src/ext/async/sqlite3async.c static void *asyncDlOpen(sqlite3_vfs *pAsyncVfs, const char *zPath){ sqlite3_vfs 1266 third_party/sqlite/src/ext/async/sqlite3async.c sqlite3_vfs *pVfs = (sqlite3_vfs *)pAsyncVfs->pAppData; sqlite3_vfs 1269 third_party/sqlite/src/ext/async/sqlite3async.c static void asyncDlError(sqlite3_vfs *pAsyncVfs, int nByte, char *zErrMsg){ sqlite3_vfs 1270 third_party/sqlite/src/ext/async/sqlite3async.c sqlite3_vfs *pVfs = (sqlite3_vfs *)pAsyncVfs->pAppData; sqlite3_vfs 1274 third_party/sqlite/src/ext/async/sqlite3async.c sqlite3_vfs *pAsyncVfs, sqlite3_vfs 1278 third_party/sqlite/src/ext/async/sqlite3async.c sqlite3_vfs *pVfs = (sqlite3_vfs *)pAsyncVfs->pAppData; sqlite3_vfs 1281 third_party/sqlite/src/ext/async/sqlite3async.c static void asyncDlClose(sqlite3_vfs *pAsyncVfs, void *pHandle){ sqlite3_vfs 1282 third_party/sqlite/src/ext/async/sqlite3async.c sqlite3_vfs *pVfs = (sqlite3_vfs *)pAsyncVfs->pAppData; sqlite3_vfs 1285 third_party/sqlite/src/ext/async/sqlite3async.c static int asyncRandomness(sqlite3_vfs *pAsyncVfs, int nByte, char *zBufOut){ sqlite3_vfs 1286 third_party/sqlite/src/ext/async/sqlite3async.c sqlite3_vfs *pVfs = (sqlite3_vfs *)pAsyncVfs->pAppData; sqlite3_vfs 1289 third_party/sqlite/src/ext/async/sqlite3async.c static int asyncSleep(sqlite3_vfs *pAsyncVfs, int nMicro){ sqlite3_vfs 1290 third_party/sqlite/src/ext/async/sqlite3async.c sqlite3_vfs *pVfs = (sqlite3_vfs *)pAsyncVfs->pAppData; sqlite3_vfs 1293 third_party/sqlite/src/ext/async/sqlite3async.c static int asyncCurrentTime(sqlite3_vfs *pAsyncVfs, double *pTimeOut){ sqlite3_vfs 1294 third_party/sqlite/src/ext/async/sqlite3async.c sqlite3_vfs *pVfs = (sqlite3_vfs *)pAsyncVfs->pAppData; sqlite3_vfs 1298 third_party/sqlite/src/ext/async/sqlite3async.c static sqlite3_vfs async_vfs = { sqlite3_vfs 1338 third_party/sqlite/src/ext/async/sqlite3async.c sqlite3_vfs *pVfs = (sqlite3_vfs *)(async_vfs.pAppData); sqlite3_vfs 1600 third_party/sqlite/src/ext/async/sqlite3async.c sqlite3_vfs *pParent = sqlite3_vfs_find(zParent); sqlite3_vfs 1607 third_party/sqlite/src/ext/async/sqlite3async.c async_vfs.mxPathname = ((sqlite3_vfs *)async_vfs.pAppData)->mxPathname; sqlite3_vfs 1619 third_party/sqlite/src/ext/async/sqlite3async.c sqlite3_vfs_unregister((sqlite3_vfs *)&async_vfs); sqlite3_vfs 1697 third_party/sqlite/src/src/btree.c sqlite3_vfs *pVfs; /* The VFS to use for this btree */ sqlite3_vfs 41 third_party/sqlite/src/src/journal.c sqlite3_vfs *pVfs; /* The "real" underlying VFS */ sqlite3_vfs 196 third_party/sqlite/src/src/journal.c sqlite3_vfs *pVfs, /* The VFS to use for actual file I/O */ sqlite3_vfs 235 third_party/sqlite/src/src/journal.c int sqlite3JournalSize(sqlite3_vfs *pVfs){ sqlite3_vfs 395 third_party/sqlite/src/src/loadext.c sqlite3_vfs *pVfs = db->pVfs; sqlite3_vfs 2388 third_party/sqlite/src/src/main.c sqlite3_vfs *pVfs; sqlite3_vfs 127 third_party/sqlite/src/src/os.c sqlite3_vfs *pVfs, sqlite3_vfs 143 third_party/sqlite/src/src/os.c int sqlite3OsDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ sqlite3_vfs 147 third_party/sqlite/src/src/os.c sqlite3_vfs *pVfs, sqlite3_vfs 156 third_party/sqlite/src/src/os.c sqlite3_vfs *pVfs, sqlite3_vfs 165 third_party/sqlite/src/src/os.c void *sqlite3OsDlOpen(sqlite3_vfs *pVfs, const char *zPath){ sqlite3_vfs 168 third_party/sqlite/src/src/os.c void sqlite3OsDlError(sqlite3_vfs *pVfs, int nByte, char *zBufOut){ sqlite3_vfs 171 third_party/sqlite/src/src/os.c void (*sqlite3OsDlSym(sqlite3_vfs *pVfs, void *pHdle, const char *zSym))(void){ sqlite3_vfs 174 third_party/sqlite/src/src/os.c void sqlite3OsDlClose(sqlite3_vfs *pVfs, void *pHandle){ sqlite3_vfs 178 third_party/sqlite/src/src/os.c int sqlite3OsRandomness(sqlite3_vfs *pVfs, int nByte, char *zBufOut){ sqlite3_vfs 181 third_party/sqlite/src/src/os.c int sqlite3OsSleep(sqlite3_vfs *pVfs, int nMicro){ sqlite3_vfs 184 third_party/sqlite/src/src/os.c int sqlite3OsCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *pTimeOut){ sqlite3_vfs 203 third_party/sqlite/src/src/os.c sqlite3_vfs *pVfs, sqlite3_vfs 246 third_party/sqlite/src/src/os.c static sqlite3_vfs * SQLITE_WSD vfsList = 0; sqlite3_vfs 247 third_party/sqlite/src/src/os.c #define vfsList GLOBAL(sqlite3_vfs *, vfsList) sqlite3_vfs 253 third_party/sqlite/src/src/os.c sqlite3_vfs *sqlite3_vfs_find(const char *zVfs){ sqlite3_vfs 254 third_party/sqlite/src/src/os.c sqlite3_vfs *pVfs = 0; sqlite3_vfs 277 third_party/sqlite/src/src/os.c static void vfsUnlink(sqlite3_vfs *pVfs){ sqlite3_vfs 284 third_party/sqlite/src/src/os.c sqlite3_vfs *p = vfsList; sqlite3_vfs 299 third_party/sqlite/src/src/os.c int sqlite3_vfs_register(sqlite3_vfs *pVfs, int makeDflt){ sqlite3_vfs 323 third_party/sqlite/src/src/os.c int sqlite3_vfs_unregister(sqlite3_vfs *pVfs){ sqlite3_vfs 258 third_party/sqlite/src/src/os.h int sqlite3OsOpen(sqlite3_vfs *, const char *, sqlite3_file*, int, int *); sqlite3_vfs 259 third_party/sqlite/src/src/os.h int sqlite3OsDelete(sqlite3_vfs *, const char *, int); sqlite3_vfs 260 third_party/sqlite/src/src/os.h int sqlite3OsAccess(sqlite3_vfs *, const char *, int, int *pResOut); sqlite3_vfs 261 third_party/sqlite/src/src/os.h int sqlite3OsFullPathname(sqlite3_vfs *, const char *, int, char *); sqlite3_vfs 263 third_party/sqlite/src/src/os.h void *sqlite3OsDlOpen(sqlite3_vfs *, const char *); sqlite3_vfs 264 third_party/sqlite/src/src/os.h void sqlite3OsDlError(sqlite3_vfs *, int, char *); sqlite3_vfs 265 third_party/sqlite/src/src/os.h void (*sqlite3OsDlSym(sqlite3_vfs *, void *, const char *))(void); sqlite3_vfs 266 third_party/sqlite/src/src/os.h void sqlite3OsDlClose(sqlite3_vfs *, void *); sqlite3_vfs 268 third_party/sqlite/src/src/os.h int sqlite3OsRandomness(sqlite3_vfs *, int, char *); sqlite3_vfs 269 third_party/sqlite/src/src/os.h int sqlite3OsSleep(sqlite3_vfs *, int); sqlite3_vfs 270 third_party/sqlite/src/src/os.h int sqlite3OsCurrentTimeInt64(sqlite3_vfs *, sqlite3_int64*); sqlite3_vfs 276 third_party/sqlite/src/src/os.h int sqlite3OsOpenMalloc(sqlite3_vfs *, const char *, sqlite3_file **, int,int*); sqlite3_vfs 1438 third_party/sqlite/src/src/os_os2.c sqlite3_vfs *pVfs, /* Pointer to vfs object */ sqlite3_vfs 1460 third_party/sqlite/src/src/os_os2.c sqlite3_vfs *pVfs, /* Not used */ sqlite3_vfs 1607 third_party/sqlite/src/src/os_os2.c sqlite3_vfs *pVfs, /* Not used on os2 */ sqlite3_vfs 1627 third_party/sqlite/src/src/os_os2.c sqlite3_vfs *pVfs, /* Not used on os2 */ sqlite3_vfs 1681 third_party/sqlite/src/src/os_os2.c static void *os2DlOpen(sqlite3_vfs *pVfs, const char *zFilename){ sqlite3_vfs 1693 third_party/sqlite/src/src/os_os2.c static void os2DlError(sqlite3_vfs *pVfs, int nBuf, char *zBufOut){ sqlite3_vfs 1696 third_party/sqlite/src/src/os_os2.c static void (*os2DlSym(sqlite3_vfs *pVfs, void *pHandle, const char *zSymbol))(void){ sqlite3_vfs 1710 third_party/sqlite/src/src/os_os2.c static void os2DlClose(sqlite3_vfs *pVfs, void *pHandle){ sqlite3_vfs 1724 third_party/sqlite/src/src/os_os2.c static int os2Randomness(sqlite3_vfs *pVfs, int nBuf, char *zBuf ){ sqlite3_vfs 1776 third_party/sqlite/src/src/os_os2.c static int os2Sleep( sqlite3_vfs *pVfs, int microsec ){ sqlite3_vfs 1798 third_party/sqlite/src/src/os_os2.c static int os2CurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *piNow){ sqlite3_vfs 1840 third_party/sqlite/src/src/os_os2.c static int os2CurrentTime( sqlite3_vfs *pVfs, double *prNow ){ sqlite3_vfs 1880 third_party/sqlite/src/src/os_os2.c static int os2GetLastError(sqlite3_vfs *pVfs, int nBuf, char *zBuf){ sqlite3_vfs 1889 third_party/sqlite/src/src/os_os2.c static sqlite3_vfs os2Vfs = { sqlite3_vfs 398 third_party/sqlite/src/src/os_unix.c sqlite3_vfs *pNotUsed, /* The VFS pointer. Not used */ sqlite3_vfs 441 third_party/sqlite/src/src/os_unix.c sqlite3_vfs *pNotUsed, sqlite3_vfs 459 third_party/sqlite/src/src/os_unix.c static const char *unixNextSystemCall(sqlite3_vfs *p, const char *zName){ sqlite3_vfs 4475 third_party/sqlite/src/src/os_unix.c sqlite3_vfs *pVfs, /* Pointer to vfs object */ sqlite3_vfs 4864 third_party/sqlite/src/src/os_unix.c int chromium_sqlite3_fill_in_unix_sqlite3_file(sqlite3_vfs* vfs, sqlite3_vfs 4947 third_party/sqlite/src/src/os_unix.c sqlite3_vfs *pVfs, /* The VFS for which this is the xOpen method */ sqlite3_vfs 5164 third_party/sqlite/src/src/os_unix.c sqlite3_vfs *NotUsed, /* VFS containing this as the xDelete method */ sqlite3_vfs 5207 third_party/sqlite/src/src/os_unix.c sqlite3_vfs *NotUsed, /* The VFS containing this xAccess method */ sqlite3_vfs 5250 third_party/sqlite/src/src/os_unix.c sqlite3_vfs *pVfs, /* Pointer to vfs object */ sqlite3_vfs 5287 third_party/sqlite/src/src/os_unix.c static void *unixDlOpen(sqlite3_vfs *NotUsed, const char *zFilename){ sqlite3_vfs 5299 third_party/sqlite/src/src/os_unix.c static void unixDlError(sqlite3_vfs *NotUsed, int nBuf, char *zBufOut){ sqlite3_vfs 5309 third_party/sqlite/src/src/os_unix.c static void (*unixDlSym(sqlite3_vfs *NotUsed, void *p, const char*zSym))(void){ sqlite3_vfs 5332 third_party/sqlite/src/src/os_unix.c static void unixDlClose(sqlite3_vfs *NotUsed, void *pHandle){ sqlite3_vfs 5346 third_party/sqlite/src/src/os_unix.c static int unixRandomness(sqlite3_vfs *NotUsed, int nBuf, char *zBuf){ sqlite3_vfs 5393 third_party/sqlite/src/src/os_unix.c static int unixSleep(sqlite3_vfs *NotUsed, int microseconds){ sqlite3_vfs 5432 third_party/sqlite/src/src/os_unix.c static int unixCurrentTimeInt64(sqlite3_vfs *NotUsed, sqlite3_int64 *piNow){ sqlite3_vfs 5462 third_party/sqlite/src/src/os_unix.c static int unixCurrentTime(sqlite3_vfs *NotUsed, double *prNow){ sqlite3_vfs 5477 third_party/sqlite/src/src/os_unix.c static int unixGetLastError(sqlite3_vfs *NotUsed, int NotUsed2, char *NotUsed3){ sqlite3_vfs 5754 third_party/sqlite/src/src/os_unix.c sqlite3_vfs dummyVfs; sqlite3_vfs 6724 third_party/sqlite/src/src/os_unix.c static sqlite3_vfs aVfs[] = { sqlite3_vfs 6755 third_party/sqlite/src/src/os_unix.c for(i=0; i<(sizeof(aVfs)/sizeof(sqlite3_vfs)); i++){ sqlite3_vfs 103 third_party/sqlite/src/src/os_win.c sqlite3_vfs *pVfs; /* The VFS used to open this file */ sqlite3_vfs 125 third_party/sqlite/src/src/os_win.c sqlite3_vfs *pVfs, sqlite3_vfs 1382 third_party/sqlite/src/src/os_win.c static int winOpen(sqlite3_vfs*,const char*,sqlite3_file*,int,int*); sqlite3_vfs 1383 third_party/sqlite/src/src/os_win.c static int winDelete(sqlite3_vfs *,const char*,int); sqlite3_vfs 1391 third_party/sqlite/src/src/os_win.c static void winShmPurge(sqlite3_vfs *pVfs, int deleteFlag){ sqlite3_vfs 2041 third_party/sqlite/src/src/os_win.c sqlite3_vfs *pVfs, /* Not used */ sqlite3_vfs 2268 third_party/sqlite/src/src/os_win.c sqlite3_vfs *pVfs, /* Not used on win32 */ sqlite3_vfs 2318 third_party/sqlite/src/src/os_win.c sqlite3_vfs *pVfs, /* Not used on win32 */ sqlite3_vfs 2389 third_party/sqlite/src/src/os_win.c sqlite3_vfs *pVfs, /* Pointer to vfs object */ sqlite3_vfs 2469 third_party/sqlite/src/src/os_win.c sqlite3_vfs *pVfs, sqlite3_vfs 2543 third_party/sqlite/src/src/os_win.c static void *winDlOpen(sqlite3_vfs *pVfs, const char *zFilename){ sqlite3_vfs 2564 third_party/sqlite/src/src/os_win.c static void winDlError(sqlite3_vfs *pVfs, int nBuf, char *zBufOut){ sqlite3_vfs 2568 third_party/sqlite/src/src/os_win.c void (*winDlSym(sqlite3_vfs *pVfs, void *pHandle, const char *zSymbol))(void){ sqlite3_vfs 2579 third_party/sqlite/src/src/os_win.c void winDlClose(sqlite3_vfs *pVfs, void *pHandle){ sqlite3_vfs 2594 third_party/sqlite/src/src/os_win.c static int winRandomness(sqlite3_vfs *pVfs, int nBuf, char *zBuf){ sqlite3_vfs 2631 third_party/sqlite/src/src/os_win.c static int winSleep(sqlite3_vfs *pVfs, int microsec){ sqlite3_vfs 2655 third_party/sqlite/src/src/os_win.c static int winCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *piNow){ sqlite3_vfs 2697 third_party/sqlite/src/src/os_win.c int winCurrentTime(sqlite3_vfs *pVfs, double *prNow){ sqlite3_vfs 2737 third_party/sqlite/src/src/os_win.c static int winGetLastError(sqlite3_vfs *pVfs, int nBuf, char *zBuf){ sqlite3_vfs 2748 third_party/sqlite/src/src/os_win.c static sqlite3_vfs winVfs = { sqlite3_vfs 611 third_party/sqlite/src/src/pager.c sqlite3_vfs *pVfs; /* OS functions to use for IO */ sqlite3_vfs 2362 third_party/sqlite/src/src/pager.c sqlite3_vfs *pVfs = pPager->pVfs; sqlite3_vfs 2595 third_party/sqlite/src/src/pager.c sqlite3_vfs *pVfs = pPager->pVfs; sqlite3_vfs 4281 third_party/sqlite/src/src/pager.c sqlite3_vfs *pVfs, /* The virtual file system to use */ sqlite3_vfs 4574 third_party/sqlite/src/src/pager.c sqlite3_vfs * const pVfs = pPager->pVfs; sqlite3_vfs 4761 third_party/sqlite/src/src/pager.c sqlite3_vfs * const pVfs = pPager->pVfs; sqlite3_vfs 5134 third_party/sqlite/src/src/pager.c sqlite3_vfs * const pVfs = pPager->pVfs; /* Local cache of vfs pointer */ sqlite3_vfs 6257 third_party/sqlite/src/src/pager.c const sqlite3_vfs *sqlite3PagerVfs(Pager *pPager){ sqlite3_vfs 90 third_party/sqlite/src/src/pager.h sqlite3_vfs*, sqlite3_vfs 152 third_party/sqlite/src/src/pager.h const sqlite3_vfs *sqlite3PagerVfs(Pager*); sqlite3_vfs 2734 third_party/sqlite/src/src/shell.c sqlite3_vfs *pVfs = sqlite3_vfs_find(argv[++i]); sqlite3_vfs 180 third_party/sqlite/src/src/sqlite3ext.h sqlite3_vfs *(*vfs_find)(const char*); sqlite3_vfs 181 third_party/sqlite/src/src/sqlite3ext.h int (*vfs_register)(sqlite3_vfs*,int); sqlite3_vfs 182 third_party/sqlite/src/src/sqlite3ext.h int (*vfs_unregister)(sqlite3_vfs*); sqlite3_vfs 801 third_party/sqlite/src/src/sqliteInt.h sqlite3_vfs *pVfs; /* OS Interface */ sqlite3_vfs 3141 third_party/sqlite/src/src/sqliteInt.h int sqlite3JournalOpen(sqlite3_vfs *, const char *, sqlite3_file *, int, int); sqlite3_vfs 3142 third_party/sqlite/src/src/sqliteInt.h int sqlite3JournalSize(sqlite3_vfs *); sqlite3_vfs 4624 third_party/sqlite/src/src/test1.c sqlite3_vfs *pMain; sqlite3_vfs 4625 third_party/sqlite/src/src/test1.c sqlite3_vfs *apVfs[20]; sqlite3_vfs 4626 third_party/sqlite/src/src/test1.c sqlite3_vfs one, two; sqlite3_vfs 4725 third_party/sqlite/src/src/test1.c sqlite3_vfs one; sqlite3_vfs 4739 third_party/sqlite/src/src/test1.c static sqlite3_vfs *apVfs[20]; sqlite3_vfs 5011 third_party/sqlite/src/src/test1.c sqlite3_vfs *pVfs; sqlite3_vfs 535 third_party/sqlite/src/src/test2.c sqlite3_vfs *pVfs; sqlite3_vfs 569 third_party/sqlite/src/src/test6.c sqlite3_vfs *pOrig; /* Wrapped vfs structure */ sqlite3_vfs 582 third_party/sqlite/src/src/test6.c sqlite3_vfs *pCfVfs, sqlite3_vfs 588 third_party/sqlite/src/src/test6.c sqlite3_vfs *pVfs = (sqlite3_vfs *)pCfVfs->pAppData; sqlite3_vfs 636 third_party/sqlite/src/src/test6.c static int cfDelete(sqlite3_vfs *pCfVfs, const char *zPath, int dirSync){ sqlite3_vfs 637 third_party/sqlite/src/src/test6.c sqlite3_vfs *pVfs = (sqlite3_vfs *)pCfVfs->pAppData; sqlite3_vfs 641 third_party/sqlite/src/src/test6.c sqlite3_vfs *pCfVfs, sqlite3_vfs 646 third_party/sqlite/src/src/test6.c sqlite3_vfs *pVfs = (sqlite3_vfs *)pCfVfs->pAppData; sqlite3_vfs 650 third_party/sqlite/src/src/test6.c sqlite3_vfs *pCfVfs, sqlite3_vfs 655 third_party/sqlite/src/src/test6.c sqlite3_vfs *pVfs = (sqlite3_vfs *)pCfVfs->pAppData; sqlite3_vfs 658 third_party/sqlite/src/src/test6.c static void *cfDlOpen(sqlite3_vfs *pCfVfs, const char *zPath){ sqlite3_vfs 659 third_party/sqlite/src/src/test6.c sqlite3_vfs *pVfs = (sqlite3_vfs *)pCfVfs->pAppData; sqlite3_vfs 662 third_party/sqlite/src/src/test6.c static void cfDlError(sqlite3_vfs *pCfVfs, int nByte, char *zErrMsg){ sqlite3_vfs 663 third_party/sqlite/src/src/test6.c sqlite3_vfs *pVfs = (sqlite3_vfs *)pCfVfs->pAppData; sqlite3_vfs 666 third_party/sqlite/src/src/test6.c static void (*cfDlSym(sqlite3_vfs *pCfVfs, void *pH, const char *zSym))(void){ sqlite3_vfs 667 third_party/sqlite/src/src/test6.c sqlite3_vfs *pVfs = (sqlite3_vfs *)pCfVfs->pAppData; sqlite3_vfs 670 third_party/sqlite/src/src/test6.c static void cfDlClose(sqlite3_vfs *pCfVfs, void *pHandle){ sqlite3_vfs 671 third_party/sqlite/src/src/test6.c sqlite3_vfs *pVfs = (sqlite3_vfs *)pCfVfs->pAppData; sqlite3_vfs 674 third_party/sqlite/src/src/test6.c static int cfRandomness(sqlite3_vfs *pCfVfs, int nByte, char *zBufOut){ sqlite3_vfs 675 third_party/sqlite/src/src/test6.c sqlite3_vfs *pVfs = (sqlite3_vfs *)pCfVfs->pAppData; sqlite3_vfs 678 third_party/sqlite/src/src/test6.c static int cfSleep(sqlite3_vfs *pCfVfs, int nMicro){ sqlite3_vfs 679 third_party/sqlite/src/src/test6.c sqlite3_vfs *pVfs = (sqlite3_vfs *)pCfVfs->pAppData; sqlite3_vfs 682 third_party/sqlite/src/src/test6.c static int cfCurrentTime(sqlite3_vfs *pCfVfs, double *pTimeOut){ sqlite3_vfs 683 third_party/sqlite/src/src/test6.c sqlite3_vfs *pVfs = (sqlite3_vfs *)pCfVfs->pAppData; sqlite3_vfs 792 third_party/sqlite/src/src/test6.c static sqlite3_vfs crashVfs = { sqlite3_vfs 829 third_party/sqlite/src/src/test6.c sqlite3_vfs *pOriginalVfs = sqlite3_vfs_find(0); sqlite3_vfs 392 third_party/sqlite/src/src/test_demovfs.c sqlite3_vfs *pVfs, /* VFS */ sqlite3_vfs 454 third_party/sqlite/src/src/test_demovfs.c static int demoDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ sqlite3_vfs 498 third_party/sqlite/src/src/test_demovfs.c sqlite3_vfs *pVfs, sqlite3_vfs 531 third_party/sqlite/src/src/test_demovfs.c sqlite3_vfs *pVfs, /* VFS */ sqlite3_vfs 562 third_party/sqlite/src/src/test_demovfs.c static void *demoDlOpen(sqlite3_vfs *pVfs, const char *zPath){ sqlite3_vfs 565 third_party/sqlite/src/src/test_demovfs.c static void demoDlError(sqlite3_vfs *pVfs, int nByte, char *zErrMsg){ sqlite3_vfs 569 third_party/sqlite/src/src/test_demovfs.c static void (*demoDlSym(sqlite3_vfs *pVfs, void *pH, const char *z))(void){ sqlite3_vfs 572 third_party/sqlite/src/src/test_demovfs.c static void demoDlClose(sqlite3_vfs *pVfs, void *pHandle){ sqlite3_vfs 580 third_party/sqlite/src/src/test_demovfs.c static int demoRandomness(sqlite3_vfs *pVfs, int nByte, char *zByte){ sqlite3_vfs 588 third_party/sqlite/src/src/test_demovfs.c static int demoSleep(sqlite3_vfs *pVfs, int nMicro){ sqlite3_vfs 605 third_party/sqlite/src/src/test_demovfs.c static int demoCurrentTime(sqlite3_vfs *pVfs, double *pTime){ sqlite3_vfs 617 third_party/sqlite/src/src/test_demovfs.c sqlite3_vfs *sqlite3_demovfs(void){ sqlite3_vfs 618 third_party/sqlite/src/src/test_demovfs.c static sqlite3_vfs demovfs = { sqlite3_vfs 61 third_party/sqlite/src/src/test_devsym.c static int devsymOpen(sqlite3_vfs*, const char *, sqlite3_file*, int , int *); sqlite3_vfs 62 third_party/sqlite/src/src/test_devsym.c static int devsymDelete(sqlite3_vfs*, const char *zName, int syncDir); sqlite3_vfs 63 third_party/sqlite/src/src/test_devsym.c static int devsymAccess(sqlite3_vfs*, const char *zName, int flags, int *); sqlite3_vfs 64 third_party/sqlite/src/src/test_devsym.c static int devsymFullPathname(sqlite3_vfs*, const char *zName, int, char *zOut); sqlite3_vfs 66 third_party/sqlite/src/src/test_devsym.c static void *devsymDlOpen(sqlite3_vfs*, const char *zFilename); sqlite3_vfs 67 third_party/sqlite/src/src/test_devsym.c static void devsymDlError(sqlite3_vfs*, int nByte, char *zErrMsg); sqlite3_vfs 68 third_party/sqlite/src/src/test_devsym.c static void (*devsymDlSym(sqlite3_vfs*,void*, const char *zSymbol))(void); sqlite3_vfs 69 third_party/sqlite/src/src/test_devsym.c static void devsymDlClose(sqlite3_vfs*, void*); sqlite3_vfs 71 third_party/sqlite/src/src/test_devsym.c static int devsymRandomness(sqlite3_vfs*, int nByte, char *zOut); sqlite3_vfs 72 third_party/sqlite/src/src/test_devsym.c static int devsymSleep(sqlite3_vfs*, int microseconds); sqlite3_vfs 73 third_party/sqlite/src/src/test_devsym.c static int devsymCurrentTime(sqlite3_vfs*, double*); sqlite3_vfs 75 third_party/sqlite/src/src/test_devsym.c static sqlite3_vfs devsym_vfs = { sqlite3_vfs 125 third_party/sqlite/src/src/test_devsym.c sqlite3_vfs *pVfs; sqlite3_vfs 267 third_party/sqlite/src/src/test_devsym.c sqlite3_vfs *pVfs, sqlite3_vfs 288 third_party/sqlite/src/src/test_devsym.c static int devsymDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ sqlite3_vfs 297 third_party/sqlite/src/src/test_devsym.c sqlite3_vfs *pVfs, sqlite3_vfs 311 third_party/sqlite/src/src/test_devsym.c sqlite3_vfs *pVfs, sqlite3_vfs 323 third_party/sqlite/src/src/test_devsym.c static void *devsymDlOpen(sqlite3_vfs *pVfs, const char *zPath){ sqlite3_vfs 332 third_party/sqlite/src/src/test_devsym.c static void devsymDlError(sqlite3_vfs *pVfs, int nByte, char *zErrMsg){ sqlite3_vfs 339 third_party/sqlite/src/src/test_devsym.c static void (*devsymDlSym(sqlite3_vfs *pVfs, void *p, const char *zSym))(void){ sqlite3_vfs 346 third_party/sqlite/src/src/test_devsym.c static void devsymDlClose(sqlite3_vfs *pVfs, void *pHandle){ sqlite3_vfs 355 third_party/sqlite/src/src/test_devsym.c static int devsymRandomness(sqlite3_vfs *pVfs, int nByte, char *zBufOut){ sqlite3_vfs 363 third_party/sqlite/src/src/test_devsym.c static int devsymSleep(sqlite3_vfs *pVfs, int nMicro){ sqlite3_vfs 370 third_party/sqlite/src/src/test_devsym.c static int devsymCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ sqlite3_vfs 153 third_party/sqlite/src/src/test_journal.c static int jtOpen(sqlite3_vfs*, const char *, sqlite3_file*, int , int *); sqlite3_vfs 154 third_party/sqlite/src/src/test_journal.c static int jtDelete(sqlite3_vfs*, const char *zName, int syncDir); sqlite3_vfs 155 third_party/sqlite/src/src/test_journal.c static int jtAccess(sqlite3_vfs*, const char *zName, int flags, int *); sqlite3_vfs 156 third_party/sqlite/src/src/test_journal.c static int jtFullPathname(sqlite3_vfs*, const char *zName, int, char *zOut); sqlite3_vfs 157 third_party/sqlite/src/src/test_journal.c static void *jtDlOpen(sqlite3_vfs*, const char *zFilename); sqlite3_vfs 158 third_party/sqlite/src/src/test_journal.c static void jtDlError(sqlite3_vfs*, int nByte, char *zErrMsg); sqlite3_vfs 159 third_party/sqlite/src/src/test_journal.c static void (*jtDlSym(sqlite3_vfs*,void*, const char *zSymbol))(void); sqlite3_vfs 160 third_party/sqlite/src/src/test_journal.c static void jtDlClose(sqlite3_vfs*, void*); sqlite3_vfs 161 third_party/sqlite/src/src/test_journal.c static int jtRandomness(sqlite3_vfs*, int nByte, char *zOut); sqlite3_vfs 162 third_party/sqlite/src/src/test_journal.c static int jtSleep(sqlite3_vfs*, int microseconds); sqlite3_vfs 163 third_party/sqlite/src/src/test_journal.c static int jtCurrentTime(sqlite3_vfs*, double*); sqlite3_vfs 164 third_party/sqlite/src/src/test_journal.c static int jtCurrentTimeInt64(sqlite3_vfs*, sqlite3_int64*); sqlite3_vfs 166 third_party/sqlite/src/src/test_journal.c static sqlite3_vfs jt_vfs = { sqlite3_vfs 205 third_party/sqlite/src/src/test_journal.c sqlite3_vfs *pVfs; /* Parent VFS */ sqlite3_vfs 690 third_party/sqlite/src/src/test_journal.c sqlite3_vfs *pVfs, sqlite3_vfs 726 third_party/sqlite/src/src/test_journal.c static int jtDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ sqlite3_vfs 744 third_party/sqlite/src/src/test_journal.c sqlite3_vfs *pVfs, sqlite3_vfs 758 third_party/sqlite/src/src/test_journal.c sqlite3_vfs *pVfs, sqlite3_vfs 769 third_party/sqlite/src/src/test_journal.c static void *jtDlOpen(sqlite3_vfs *pVfs, const char *zPath){ sqlite3_vfs 778 third_party/sqlite/src/src/test_journal.c static void jtDlError(sqlite3_vfs *pVfs, int nByte, char *zErrMsg){ sqlite3_vfs 785 third_party/sqlite/src/src/test_journal.c static void (*jtDlSym(sqlite3_vfs *pVfs, void *p, const char *zSym))(void){ sqlite3_vfs 792 third_party/sqlite/src/src/test_journal.c static void jtDlClose(sqlite3_vfs *pVfs, void *pHandle){ sqlite3_vfs 800 third_party/sqlite/src/src/test_journal.c static int jtRandomness(sqlite3_vfs *pVfs, int nByte, char *zBufOut){ sqlite3_vfs 808 third_party/sqlite/src/src/test_journal.c static int jtSleep(sqlite3_vfs *pVfs, int nMicro){ sqlite3_vfs 815 third_party/sqlite/src/src/test_journal.c static int jtCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ sqlite3_vfs 821 third_party/sqlite/src/src/test_journal.c static int jtCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *pTimeOut){ sqlite3_vfs 132 third_party/sqlite/src/src/test_multiplex.c sqlite3_vfs *pOrigVfs; sqlite3_vfs 137 third_party/sqlite/src/src/test_multiplex.c sqlite3_vfs sThisVfs; sqlite3_vfs 200 third_party/sqlite/src/src/test_multiplex.c sqlite3_vfs *pOrigVfs = gMultiplex.pOrigVfs; /* Real VFS */ sqlite3_vfs 292 third_party/sqlite/src/src/test_multiplex.c sqlite3_vfs *pVfs, /* The multiplex VFS */ sqlite3_vfs 302 third_party/sqlite/src/src/test_multiplex.c sqlite3_vfs *pOrigVfs = gMultiplex.pOrigVfs; /* Real VFS */ sqlite3_vfs 385 third_party/sqlite/src/src/test_multiplex.c sqlite3_vfs *pVfs, /* The multiplex VFS */ sqlite3_vfs 389 third_party/sqlite/src/src/test_multiplex.c sqlite3_vfs *pOrigVfs = gMultiplex.pOrigVfs; /* Real VFS */ sqlite3_vfs 427 third_party/sqlite/src/src/test_multiplex.c static int multiplexAccess(sqlite3_vfs *a, const char *b, int c, int *d){ sqlite3_vfs 430 third_party/sqlite/src/src/test_multiplex.c static int multiplexFullPathname(sqlite3_vfs *a, const char *b, int c, char *d){ sqlite3_vfs 433 third_party/sqlite/src/src/test_multiplex.c static void *multiplexDlOpen(sqlite3_vfs *a, const char *b){ sqlite3_vfs 436 third_party/sqlite/src/src/test_multiplex.c static void multiplexDlError(sqlite3_vfs *a, int b, char *c){ sqlite3_vfs 439 third_party/sqlite/src/src/test_multiplex.c static void (*multiplexDlSym(sqlite3_vfs *a, void *b, const char *c))(void){ sqlite3_vfs 442 third_party/sqlite/src/src/test_multiplex.c static void multiplexDlClose(sqlite3_vfs *a, void *b){ sqlite3_vfs 445 third_party/sqlite/src/src/test_multiplex.c static int multiplexRandomness(sqlite3_vfs *a, int b, char *c){ sqlite3_vfs 448 third_party/sqlite/src/src/test_multiplex.c static int multiplexSleep(sqlite3_vfs *a, int b){ sqlite3_vfs 451 third_party/sqlite/src/src/test_multiplex.c static int multiplexCurrentTime(sqlite3_vfs *a, double *b){ sqlite3_vfs 454 third_party/sqlite/src/src/test_multiplex.c static int multiplexGetLastError(sqlite3_vfs *a, int b, char *c){ sqlite3_vfs 457 third_party/sqlite/src/src/test_multiplex.c static int multiplexCurrentTimeInt64(sqlite3_vfs *a, sqlite3_int64 *b){ sqlite3_vfs 591 third_party/sqlite/src/src/test_multiplex.c sqlite3_vfs *pOrigVfs = gMultiplex.pOrigVfs; /* Real VFS */ sqlite3_vfs 667 third_party/sqlite/src/src/test_multiplex.c sqlite3_vfs *pOrigVfs = gMultiplex.pOrigVfs; /* Real VFS */ sqlite3_vfs 901 third_party/sqlite/src/src/test_multiplex.c sqlite3_vfs *pOrigVfs; sqlite3_vfs 163 third_party/sqlite/src/src/test_onefile.c static int fsOpen(sqlite3_vfs*, const char *, sqlite3_file*, int , int *); sqlite3_vfs 164 third_party/sqlite/src/src/test_onefile.c static int fsDelete(sqlite3_vfs*, const char *zName, int syncDir); sqlite3_vfs 165 third_party/sqlite/src/src/test_onefile.c static int fsAccess(sqlite3_vfs*, const char *zName, int flags, int *); sqlite3_vfs 166 third_party/sqlite/src/src/test_onefile.c static int fsFullPathname(sqlite3_vfs*, const char *zName, int nOut,char *zOut); sqlite3_vfs 167 third_party/sqlite/src/src/test_onefile.c static void *fsDlOpen(sqlite3_vfs*, const char *zFilename); sqlite3_vfs 168 third_party/sqlite/src/src/test_onefile.c static void fsDlError(sqlite3_vfs*, int nByte, char *zErrMsg); sqlite3_vfs 169 third_party/sqlite/src/src/test_onefile.c static void (*fsDlSym(sqlite3_vfs*,void*, const char *zSymbol))(void); sqlite3_vfs 170 third_party/sqlite/src/src/test_onefile.c static void fsDlClose(sqlite3_vfs*, void*); sqlite3_vfs 171 third_party/sqlite/src/src/test_onefile.c static int fsRandomness(sqlite3_vfs*, int nByte, char *zOut); sqlite3_vfs 172 third_party/sqlite/src/src/test_onefile.c static int fsSleep(sqlite3_vfs*, int microseconds); sqlite3_vfs 173 third_party/sqlite/src/src/test_onefile.c static int fsCurrentTime(sqlite3_vfs*, double*); sqlite3_vfs 178 third_party/sqlite/src/src/test_onefile.c sqlite3_vfs base; sqlite3_vfs 180 third_party/sqlite/src/src/test_onefile.c sqlite3_vfs *pParent; sqlite3_vfs 584 third_party/sqlite/src/src/test_onefile.c sqlite3_vfs *pVfs, sqlite3_vfs 617 third_party/sqlite/src/src/test_onefile.c sqlite3_vfs *pParent = pFsVfs->pParent; sqlite3_vfs 685 third_party/sqlite/src/src/test_onefile.c static int fsDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ sqlite3_vfs 712 third_party/sqlite/src/src/test_onefile.c sqlite3_vfs *pVfs, sqlite3_vfs 723 third_party/sqlite/src/src/test_onefile.c sqlite3_vfs *pParent = ((fs_vfs_t *)pVfs)->pParent; sqlite3_vfs 746 third_party/sqlite/src/src/test_onefile.c sqlite3_vfs *pVfs, /* Pointer to vfs object */ sqlite3_vfs 751 third_party/sqlite/src/src/test_onefile.c sqlite3_vfs *pParent = ((fs_vfs_t *)pVfs)->pParent; sqlite3_vfs 758 third_party/sqlite/src/src/test_onefile.c static void *fsDlOpen(sqlite3_vfs *pVfs, const char *zPath){ sqlite3_vfs 759 third_party/sqlite/src/src/test_onefile.c sqlite3_vfs *pParent = ((fs_vfs_t *)pVfs)->pParent; sqlite3_vfs 768 third_party/sqlite/src/src/test_onefile.c static void fsDlError(sqlite3_vfs *pVfs, int nByte, char *zErrMsg){ sqlite3_vfs 769 third_party/sqlite/src/src/test_onefile.c sqlite3_vfs *pParent = ((fs_vfs_t *)pVfs)->pParent; sqlite3_vfs 776 third_party/sqlite/src/src/test_onefile.c static void (*fsDlSym(sqlite3_vfs *pVfs, void *pH, const char *zSym))(void){ sqlite3_vfs 777 third_party/sqlite/src/src/test_onefile.c sqlite3_vfs *pParent = ((fs_vfs_t *)pVfs)->pParent; sqlite3_vfs 784 third_party/sqlite/src/src/test_onefile.c static void fsDlClose(sqlite3_vfs *pVfs, void *pHandle){ sqlite3_vfs 785 third_party/sqlite/src/src/test_onefile.c sqlite3_vfs *pParent = ((fs_vfs_t *)pVfs)->pParent; sqlite3_vfs 793 third_party/sqlite/src/src/test_onefile.c static int fsRandomness(sqlite3_vfs *pVfs, int nByte, char *zBufOut){ sqlite3_vfs 794 third_party/sqlite/src/src/test_onefile.c sqlite3_vfs *pParent = ((fs_vfs_t *)pVfs)->pParent; sqlite3_vfs 802 third_party/sqlite/src/src/test_onefile.c static int fsSleep(sqlite3_vfs *pVfs, int nMicro){ sqlite3_vfs 803 third_party/sqlite/src/src/test_onefile.c sqlite3_vfs *pParent = ((fs_vfs_t *)pVfs)->pParent; sqlite3_vfs 810 third_party/sqlite/src/src/test_onefile.c static int fsCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ sqlite3_vfs 811 third_party/sqlite/src/src/test_onefile.c sqlite3_vfs *pParent = ((fs_vfs_t *)pVfs)->pParent; sqlite3_vfs 115 third_party/sqlite/src/src/test_osinst.c sqlite3_vfs base; /* VFS methods */ sqlite3_vfs 116 third_party/sqlite/src/src/test_osinst.c sqlite3_vfs *pVfs; /* Parent VFS */ sqlite3_vfs 127 third_party/sqlite/src/src/test_osinst.c sqlite3_vfs *pVfslog; /* Associated VsflogVfs object */ sqlite3_vfs 159 third_party/sqlite/src/src/test_osinst.c static int vfslogOpen(sqlite3_vfs*, const char *, sqlite3_file*, int , int *); sqlite3_vfs 160 third_party/sqlite/src/src/test_osinst.c static int vfslogDelete(sqlite3_vfs*, const char *zName, int syncDir); sqlite3_vfs 161 third_party/sqlite/src/src/test_osinst.c static int vfslogAccess(sqlite3_vfs*, const char *zName, int flags, int *); sqlite3_vfs 162 third_party/sqlite/src/src/test_osinst.c static int vfslogFullPathname(sqlite3_vfs*, const char *zName, int, char *zOut); sqlite3_vfs 163 third_party/sqlite/src/src/test_osinst.c static void *vfslogDlOpen(sqlite3_vfs*, const char *zFilename); sqlite3_vfs 164 third_party/sqlite/src/src/test_osinst.c static void vfslogDlError(sqlite3_vfs*, int nByte, char *zErrMsg); sqlite3_vfs 165 third_party/sqlite/src/src/test_osinst.c static void (*vfslogDlSym(sqlite3_vfs *pVfs, void *p, const char*zSym))(void); sqlite3_vfs 166 third_party/sqlite/src/src/test_osinst.c static void vfslogDlClose(sqlite3_vfs*, void*); sqlite3_vfs 167 third_party/sqlite/src/src/test_osinst.c static int vfslogRandomness(sqlite3_vfs*, int nByte, char *zOut); sqlite3_vfs 168 third_party/sqlite/src/src/test_osinst.c static int vfslogSleep(sqlite3_vfs*, int microseconds); sqlite3_vfs 169 third_party/sqlite/src/src/test_osinst.c static int vfslogCurrentTime(sqlite3_vfs*, double*); sqlite3_vfs 171 third_party/sqlite/src/src/test_osinst.c static int vfslogGetLastError(sqlite3_vfs*, int, char *); sqlite3_vfs 172 third_party/sqlite/src/src/test_osinst.c static int vfslogCurrentTimeInt64(sqlite3_vfs*, sqlite3_int64*); sqlite3_vfs 174 third_party/sqlite/src/src/test_osinst.c static sqlite3_vfs vfslog_vfs = { sqlite3_vfs 245 third_party/sqlite/src/src/test_osinst.c static void vfslog_call(sqlite3_vfs *, int, int, int, int, int, int); sqlite3_vfs 246 third_party/sqlite/src/src/test_osinst.c static void vfslog_string(sqlite3_vfs *, const char *); sqlite3_vfs 473 third_party/sqlite/src/src/test_osinst.c sqlite3_vfs *pVfs, sqlite3_vfs 503 third_party/sqlite/src/src/test_osinst.c static int vfslogDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ sqlite3_vfs 519 third_party/sqlite/src/src/test_osinst.c sqlite3_vfs *pVfs, sqlite3_vfs 540 third_party/sqlite/src/src/test_osinst.c sqlite3_vfs *pVfs, sqlite3_vfs 551 third_party/sqlite/src/src/test_osinst.c static void *vfslogDlOpen(sqlite3_vfs *pVfs, const char *zPath){ sqlite3_vfs 560 third_party/sqlite/src/src/test_osinst.c static void vfslogDlError(sqlite3_vfs *pVfs, int nByte, char *zErrMsg){ sqlite3_vfs 567 third_party/sqlite/src/src/test_osinst.c static void (*vfslogDlSym(sqlite3_vfs *pVfs, void *p, const char *zSym))(void){ sqlite3_vfs 574 third_party/sqlite/src/src/test_osinst.c static void vfslogDlClose(sqlite3_vfs *pVfs, void *pHandle){ sqlite3_vfs 582 third_party/sqlite/src/src/test_osinst.c static int vfslogRandomness(sqlite3_vfs *pVfs, int nByte, char *zBufOut){ sqlite3_vfs 590 third_party/sqlite/src/src/test_osinst.c static int vfslogSleep(sqlite3_vfs *pVfs, int nMicro){ sqlite3_vfs 597 third_party/sqlite/src/src/test_osinst.c static int vfslogCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ sqlite3_vfs 601 third_party/sqlite/src/src/test_osinst.c static int vfslogGetLastError(sqlite3_vfs *pVfs, int a, char *b){ sqlite3_vfs 604 third_party/sqlite/src/src/test_osinst.c static int vfslogCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *p){ sqlite3_vfs 644 third_party/sqlite/src/src/test_osinst.c sqlite3_vfs *pVfs, sqlite3_vfs 667 third_party/sqlite/src/src/test_osinst.c static void vfslog_string(sqlite3_vfs *pVfs, const char *zStr){ sqlite3_vfs 691 third_party/sqlite/src/src/test_osinst.c sqlite3_vfs *pVfs; sqlite3_vfs 707 third_party/sqlite/src/src/test_osinst.c sqlite3_vfs *pParent; sqlite3_vfs 726 third_party/sqlite/src/src/test_osinst.c memcpy(&p->base, &vfslog_vfs, sizeof(sqlite3_vfs)); sqlite3_vfs 741 third_party/sqlite/src/src/test_osinst.c rc = sqlite3_vfs_register((sqlite3_vfs *)p, 1); sqlite3_vfs 750 third_party/sqlite/src/src/test_osinst.c sqlite3_vfs *pVfs; sqlite3_vfs 861 third_party/sqlite/src/src/test_osinst.c sqlite3_vfs *pVfs; /* VFS used to read log file */ sqlite3_vfs 124 third_party/sqlite/src/src/test_quota.c sqlite3_vfs *pOrigVfs; sqlite3_vfs 129 third_party/sqlite/src/src/test_quota.c sqlite3_vfs sThisVfs; sqlite3_vfs 288 third_party/sqlite/src/src/test_quota.c sqlite3_vfs *pVfs, /* The quota VFS */ sqlite3_vfs 299 third_party/sqlite/src/src/test_quota.c sqlite3_vfs *pOrigVfs = gQuota.pOrigVfs; /* Real VFS */ sqlite3_vfs 576 third_party/sqlite/src/src/test_quota.c sqlite3_vfs *pOrigVfs; sqlite3_vfs 385 third_party/sqlite/src/src/test_syscall.c sqlite3_vfs *pVfs; sqlite3_vfs 421 third_party/sqlite/src/src/test_syscall.c sqlite3_vfs *pVfs; sqlite3_vfs 445 third_party/sqlite/src/src/test_syscall.c sqlite3_vfs *pVfs; sqlite3_vfs 483 third_party/sqlite/src/src/test_syscall.c sqlite3_vfs *pVfs; sqlite3_vfs 580 third_party/sqlite/src/src/test_syscall.c sqlite3_vfs *pVfs; sqlite3_vfs 609 third_party/sqlite/src/src/test_syscall.c sqlite3_vfs *pVfs; sqlite3_vfs 51 third_party/sqlite/src/src/test_vfs.c sqlite3_vfs *pVfs; /* The VFS */ sqlite3_vfs 81 third_party/sqlite/src/src/test_vfs.c sqlite3_vfs *pParent; /* The VFS to use for file IO */ sqlite3_vfs 82 third_party/sqlite/src/src/test_vfs.c sqlite3_vfs *pVfs; /* The testvfs registered with SQLite */ sqlite3_vfs 173 third_party/sqlite/src/src/test_vfs.c static int tvfsOpen(sqlite3_vfs*, const char *, sqlite3_file*, int , int *); sqlite3_vfs 174 third_party/sqlite/src/src/test_vfs.c static int tvfsDelete(sqlite3_vfs*, const char *zName, int syncDir); sqlite3_vfs 175 third_party/sqlite/src/src/test_vfs.c static int tvfsAccess(sqlite3_vfs*, const char *zName, int flags, int *); sqlite3_vfs 176 third_party/sqlite/src/src/test_vfs.c static int tvfsFullPathname(sqlite3_vfs*, const char *zName, int, char *zOut); sqlite3_vfs 178 third_party/sqlite/src/src/test_vfs.c static void *tvfsDlOpen(sqlite3_vfs*, const char *zFilename); sqlite3_vfs 179 third_party/sqlite/src/src/test_vfs.c static void tvfsDlError(sqlite3_vfs*, int nByte, char *zErrMsg); sqlite3_vfs 180 third_party/sqlite/src/src/test_vfs.c static void (*tvfsDlSym(sqlite3_vfs*,void*, const char *zSymbol))(void); sqlite3_vfs 181 third_party/sqlite/src/src/test_vfs.c static void tvfsDlClose(sqlite3_vfs*, void*); sqlite3_vfs 183 third_party/sqlite/src/src/test_vfs.c static int tvfsRandomness(sqlite3_vfs*, int nByte, char *zOut); sqlite3_vfs 184 third_party/sqlite/src/src/test_vfs.c static int tvfsSleep(sqlite3_vfs*, int microseconds); sqlite3_vfs 185 third_party/sqlite/src/src/test_vfs.c static int tvfsCurrentTime(sqlite3_vfs*, double*); sqlite3_vfs 524 third_party/sqlite/src/src/test_vfs.c sqlite3_vfs *pVfs, sqlite3_vfs 607 third_party/sqlite/src/src/test_vfs.c static int tvfsDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ sqlite3_vfs 628 third_party/sqlite/src/src/test_vfs.c sqlite3_vfs *pVfs, sqlite3_vfs 661 third_party/sqlite/src/src/test_vfs.c sqlite3_vfs *pVfs, sqlite3_vfs 673 third_party/sqlite/src/src/test_vfs.c static void *tvfsDlOpen(sqlite3_vfs *pVfs, const char *zPath){ sqlite3_vfs 682 third_party/sqlite/src/src/test_vfs.c static void tvfsDlError(sqlite3_vfs *pVfs, int nByte, char *zErrMsg){ sqlite3_vfs 689 third_party/sqlite/src/src/test_vfs.c static void (*tvfsDlSym(sqlite3_vfs *pVfs, void *p, const char *zSym))(void){ sqlite3_vfs 696 third_party/sqlite/src/src/test_vfs.c static void tvfsDlClose(sqlite3_vfs *pVfs, void *pHandle){ sqlite3_vfs 705 third_party/sqlite/src/src/test_vfs.c static int tvfsRandomness(sqlite3_vfs *pVfs, int nByte, char *zBufOut){ sqlite3_vfs 713 third_party/sqlite/src/src/test_vfs.c static int tvfsSleep(sqlite3_vfs *pVfs, int nMicro){ sqlite3_vfs 720 third_party/sqlite/src/src/test_vfs.c static int tvfsCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ sqlite3_vfs 1281 third_party/sqlite/src/src/test_vfs.c static sqlite3_vfs tvfs_vfs = { sqlite3_vfs 1311 third_party/sqlite/src/src/test_vfs.c sqlite3_vfs *pVfs; /* New VFS */ sqlite3_vfs 1382 third_party/sqlite/src/src/test_vfs.c pVfs = (sqlite3_vfs *)ckalloc(sizeof(sqlite3_vfs)); sqlite3_vfs 1383 third_party/sqlite/src/src/test_vfs.c memcpy(pVfs, &tvfs_vfs, sizeof(sqlite3_vfs)); sqlite3_vfs 26 third_party/sqlite/src/src/test_vfstrace.c sqlite3_vfs *pRootVfs; /* The underlying real VFS */ sqlite3_vfs 30 third_party/sqlite/src/src/test_vfstrace.c sqlite3_vfs *pTraceVfs; /* Pointer back to the trace VFS */ sqlite3_vfs 67 third_party/sqlite/src/src/test_vfstrace.c static int vfstraceOpen(sqlite3_vfs*, const char *, sqlite3_file*, int , int *); sqlite3_vfs 68 third_party/sqlite/src/src/test_vfstrace.c static int vfstraceDelete(sqlite3_vfs*, const char *zName, int syncDir); sqlite3_vfs 69 third_party/sqlite/src/src/test_vfstrace.c static int vfstraceAccess(sqlite3_vfs*, const char *zName, int flags, int *); sqlite3_vfs 70 third_party/sqlite/src/src/test_vfstrace.c static int vfstraceFullPathname(sqlite3_vfs*, const char *zName, int, char *); sqlite3_vfs 71 third_party/sqlite/src/src/test_vfstrace.c static void *vfstraceDlOpen(sqlite3_vfs*, const char *zFilename); sqlite3_vfs 72 third_party/sqlite/src/src/test_vfstrace.c static void vfstraceDlError(sqlite3_vfs*, int nByte, char *zErrMsg); sqlite3_vfs 73 third_party/sqlite/src/src/test_vfstrace.c static void (*vfstraceDlSym(sqlite3_vfs*,void*, const char *zSymbol))(void); sqlite3_vfs 74 third_party/sqlite/src/src/test_vfstrace.c static void vfstraceDlClose(sqlite3_vfs*, void*); sqlite3_vfs 75 third_party/sqlite/src/src/test_vfstrace.c static int vfstraceRandomness(sqlite3_vfs*, int nByte, char *zOut); sqlite3_vfs 76 third_party/sqlite/src/src/test_vfstrace.c static int vfstraceSleep(sqlite3_vfs*, int microseconds); sqlite3_vfs 77 third_party/sqlite/src/src/test_vfstrace.c static int vfstraceCurrentTime(sqlite3_vfs*, double*); sqlite3_vfs 78 third_party/sqlite/src/src/test_vfstrace.c static int vfstraceGetLastError(sqlite3_vfs*, int, char*); sqlite3_vfs 79 third_party/sqlite/src/src/test_vfstrace.c static int vfstraceCurrentTimeInt64(sqlite3_vfs*, sqlite3_int64*); sqlite3_vfs 80 third_party/sqlite/src/src/test_vfstrace.c static int vfstraceSetSystemCall(sqlite3_vfs*,const char*, sqlite3_syscall_ptr); sqlite3_vfs 81 third_party/sqlite/src/src/test_vfstrace.c static sqlite3_syscall_ptr vfstraceGetSystemCall(sqlite3_vfs*, const char *); sqlite3_vfs 82 third_party/sqlite/src/src/test_vfstrace.c static const char *vfstraceNextSystemCall(sqlite3_vfs*, const char *zName); sqlite3_vfs 483 third_party/sqlite/src/src/test_vfstrace.c sqlite3_vfs *pVfs, sqlite3_vfs 492 third_party/sqlite/src/src/test_vfstrace.c sqlite3_vfs *pRoot = pInfo->pRootVfs; sqlite3_vfs 538 third_party/sqlite/src/src/test_vfstrace.c static int vfstraceDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ sqlite3_vfs 540 third_party/sqlite/src/src/test_vfstrace.c sqlite3_vfs *pRoot = pInfo->pRootVfs; sqlite3_vfs 554 third_party/sqlite/src/src/test_vfstrace.c sqlite3_vfs *pVfs, sqlite3_vfs 560 third_party/sqlite/src/src/test_vfstrace.c sqlite3_vfs *pRoot = pInfo->pRootVfs; sqlite3_vfs 576 third_party/sqlite/src/src/test_vfstrace.c sqlite3_vfs *pVfs, sqlite3_vfs 582 third_party/sqlite/src/src/test_vfstrace.c sqlite3_vfs *pRoot = pInfo->pRootVfs; sqlite3_vfs 595 third_party/sqlite/src/src/test_vfstrace.c static void *vfstraceDlOpen(sqlite3_vfs *pVfs, const char *zPath){ sqlite3_vfs 597 third_party/sqlite/src/src/test_vfstrace.c sqlite3_vfs *pRoot = pInfo->pRootVfs; sqlite3_vfs 607 third_party/sqlite/src/src/test_vfstrace.c static void vfstraceDlError(sqlite3_vfs *pVfs, int nByte, char *zErrMsg){ sqlite3_vfs 609 third_party/sqlite/src/src/test_vfstrace.c sqlite3_vfs *pRoot = pInfo->pRootVfs; sqlite3_vfs 618 third_party/sqlite/src/src/test_vfstrace.c static void (*vfstraceDlSym(sqlite3_vfs *pVfs,void *p,const char *zSym))(void){ sqlite3_vfs 620 third_party/sqlite/src/src/test_vfstrace.c sqlite3_vfs *pRoot = pInfo->pRootVfs; sqlite3_vfs 628 third_party/sqlite/src/src/test_vfstrace.c static void vfstraceDlClose(sqlite3_vfs *pVfs, void *pHandle){ sqlite3_vfs 630 third_party/sqlite/src/src/test_vfstrace.c sqlite3_vfs *pRoot = pInfo->pRootVfs; sqlite3_vfs 639 third_party/sqlite/src/src/test_vfstrace.c static int vfstraceRandomness(sqlite3_vfs *pVfs, int nByte, char *zBufOut){ sqlite3_vfs 641 third_party/sqlite/src/src/test_vfstrace.c sqlite3_vfs *pRoot = pInfo->pRootVfs; sqlite3_vfs 650 third_party/sqlite/src/src/test_vfstrace.c static int vfstraceSleep(sqlite3_vfs *pVfs, int nMicro){ sqlite3_vfs 652 third_party/sqlite/src/src/test_vfstrace.c sqlite3_vfs *pRoot = pInfo->pRootVfs; sqlite3_vfs 659 third_party/sqlite/src/src/test_vfstrace.c static int vfstraceCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ sqlite3_vfs 661 third_party/sqlite/src/src/test_vfstrace.c sqlite3_vfs *pRoot = pInfo->pRootVfs; sqlite3_vfs 664 third_party/sqlite/src/src/test_vfstrace.c static int vfstraceCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *pTimeOut){ sqlite3_vfs 666 third_party/sqlite/src/src/test_vfstrace.c sqlite3_vfs *pRoot = pInfo->pRootVfs; sqlite3_vfs 673 third_party/sqlite/src/src/test_vfstrace.c static int vfstraceGetLastError(sqlite3_vfs *pVfs, int iErr, char *zErr){ sqlite3_vfs 675 third_party/sqlite/src/src/test_vfstrace.c sqlite3_vfs *pRoot = pInfo->pRootVfs; sqlite3_vfs 683 third_party/sqlite/src/src/test_vfstrace.c sqlite3_vfs *pVfs, sqlite3_vfs 688 third_party/sqlite/src/src/test_vfstrace.c sqlite3_vfs *pRoot = pInfo->pRootVfs; sqlite3_vfs 692 third_party/sqlite/src/src/test_vfstrace.c sqlite3_vfs *pVfs, sqlite3_vfs 696 third_party/sqlite/src/src/test_vfstrace.c sqlite3_vfs *pRoot = pInfo->pRootVfs; sqlite3_vfs 699 third_party/sqlite/src/src/test_vfstrace.c static const char *vfstraceNextSystemCall(sqlite3_vfs *pVfs, const char *zName){ sqlite3_vfs 701 third_party/sqlite/src/src/test_vfstrace.c sqlite3_vfs *pRoot = pInfo->pRootVfs; sqlite3_vfs 721 third_party/sqlite/src/src/test_vfstrace.c sqlite3_vfs *pNew; sqlite3_vfs 722 third_party/sqlite/src/src/test_vfstrace.c sqlite3_vfs *pRoot; sqlite3_vfs 1785 third_party/sqlite/src/src/vdbeaux.c sqlite3_vfs *pVfs = db->pVfs; sqlite3_vfs 411 third_party/sqlite/src/src/wal.c sqlite3_vfs *pVfs; /* The VFS used to create pDbFd */ sqlite3_vfs 1233 third_party/sqlite/src/src/wal.c sqlite3_vfs *pVfs, /* vfs module to open wal and wal-index */ sqlite3_vfs 49 third_party/sqlite/src/src/wal.h int sqlite3WalOpen(sqlite3_vfs*, sqlite3_file*, const char *zName, int, Wal**); sqlite3_vfs 847 third_party/sqlite/src/test/threadtest3.c static sqlite3_vfs *pTimelimitVfs = 0; sqlite3_vfs 112 third_party/sqlite/src/tool/speedtest8.c extern sqlite3_vfs *sqlite3_instvfs_binarylog(char *, char *, char *); sqlite3_vfs 113 third_party/sqlite/src/tool/speedtest8.c extern void sqlite3_instvfs_destroy(sqlite3_vfs *); sqlite3_vfs 114 third_party/sqlite/src/tool/speedtest8.c sqlite3_vfs *pVfs = 0; sqlite3_vfs 37 third_party/sqlite/src/tool/speedtest8inst1.c static void prepareAndRun(sqlite3_vfs *pInstVfs, sqlite3 *db, const char *zSql){ sqlite3_vfs 82 third_party/sqlite/src/tool/speedtest8inst1.c sqlite3_vfs *pVfs = sqlite3_vfs_find(0); sqlite3_vfs 145 third_party/sqlite/src/tool/speedtest8inst1.c sqlite3_vfs *pInstVfs; /* Instrumentation VFS */