Lines Matching defs:sqlite3_vfs
1778 typedef struct sqlite3_vfs sqlite3_vfs; typedef
1780 struct sqlite3_vfs { struct
1784 sqlite3_vfs *pNext; /* Next registered VFS */ argument
1787 int (*xOpen)(sqlite3_vfs*, sqlite3_filename zName, sqlite3_file*, argument
1789 int (*xDelete)(sqlite3_vfs*, const char *zName, int syncDir); argument
1790 int (*xAccess)(sqlite3_vfs*, const char *zName, int flags, int *pResOut); argument
1791 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut); argument
1792 void *(*xDlOpen)(sqlite3_vfs*, const char *zFilename); argument
1793 void (*xDlError)(sqlite3_vfs*, int nByte, char *zErrMsg); argument
1794 void (*(*xDlSym)(sqlite3_vfs*,void*, const char *zSymbol))(void); argument
1795 void (*xDlClose)(sqlite3_vfs*, void*); argument
1796 int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut); argument
1797 int (*xSleep)(sqlite3_vfs*, int microseconds); argument
1798 int (*xCurrentTime)(sqlite3_vfs*, double*); argument
1799 int (*xGetLastError)(sqlite3_vfs*, int, char *); argument
1804 int (*xCurrentTimeInt64)(sqlite3_vfs*, sqlite3_int64*); argument
1809 int (*xSetSystemCall)(sqlite3_vfs*, const char *zName, sqlite3_syscall_ptr); argument
1810 sqlite3_syscall_ptr (*xGetSystemCall)(sqlite3_vfs*, const char *zName); argument
1811 const char *(*xNextSystemCall)(sqlite3_vfs*, const char *zName); argument