Lines Matching defs:sqlite3_vfs
1463 typedef struct sqlite3_vfs sqlite3_vfs; typedef
1465 struct sqlite3_vfs { struct
1469 sqlite3_vfs *pNext; /* Next registered VFS */ argument
1472 int (*xOpen)(sqlite3_vfs*, sqlite3_filename zName, sqlite3_file*, argument
1474 int (*xDelete)(sqlite3_vfs*, const char *zName, int syncDir); argument
1475 int (*xAccess)(sqlite3_vfs*, const char *zName, int flags, int *pResOut); argument
1476 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut); argument
1477 void *(*xDlOpen)(sqlite3_vfs*, const char *zFilename); argument
1478 void (*xDlError)(sqlite3_vfs*, int nByte, char *zErrMsg); argument
1479 void (*(*xDlSym)(sqlite3_vfs*,void*, const char *zSymbol))(void); argument
1480 void (*xDlClose)(sqlite3_vfs*, void*); argument
1481 int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut); argument
1482 int (*xSleep)(sqlite3_vfs*, int microseconds); argument
1483 int (*xCurrentTime)(sqlite3_vfs*, double*); argument
1484 int (*xGetLastError)(sqlite3_vfs*, int, char *); argument
1489 int (*xCurrentTimeInt64)(sqlite3_vfs*, sqlite3_int64*); argument
1494 int (*xSetSystemCall)(sqlite3_vfs*, const char *zName, sqlite3_syscall_ptr); argument
1495 sqlite3_syscall_ptr (*xGetSystemCall)(sqlite3_vfs*, const char *zName); argument
1496 const char *(*xNextSystemCall)(sqlite3_vfs*, const char *zName); argument