Lines Matching defs:sqlite3_vfs
2403 typedef struct sqlite3_vfs sqlite3_vfs; typedef
2405 struct sqlite3_vfs { struct
2409 sqlite3_vfs *pNext; /* Next registered VFS */ argument
2412 int (*xOpen)(sqlite3_vfs*, const char *zName, sqlite3_file*, argument
2414 int (*xDelete)(sqlite3_vfs*, const char *zName, int syncDir); argument
2415 int (*xAccess)(sqlite3_vfs*, const char *zName, int flags, int *pResOut); argument
2416 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut); argument
2417 void *(*xDlOpen)(sqlite3_vfs*, const char *zFilename); argument
2418 void (*xDlError)(sqlite3_vfs*, int nByte, char *zErrMsg); argument
2419 void (*(*xDlSym)(sqlite3_vfs*,void*, const char *zSymbol))(void); argument
2420 void (*xDlClose)(sqlite3_vfs*, void*); argument
2421 int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut); argument
2422 int (*xSleep)(sqlite3_vfs*, int microseconds); argument
2423 int (*xCurrentTime)(sqlite3_vfs*, double*); argument
2424 int (*xGetLastError)(sqlite3_vfs*, int, char *); argument
2429 int (*xCurrentTimeInt64)(sqlite3_vfs*, sqlite3_int64*); argument
2434 int (*xSetSystemCall)(sqlite3_vfs*, const char *zName, sqlite3_syscall_ptr); argument
2435 sqlite3_syscall_ptr (*xGetSystemCall)(sqlite3_vfs*, const char *zName); argument
2436 const char *(*xNextSystemCall)(sqlite3_vfs*, const char *zName); argument