Home | History | Annotate | Download | only in dist

Lines Matching full:sqlite3_vfs

468 ** [sqlite3_vfs] object.
569 ** [sqlite3_vfs | OS interface layer]. Individual OS interface
584 ** Every file opened by the [sqlite3_vfs] xOpen method populates an
746 ** An instance of the sqlite3_vfs object defines the interface between
753 ** of the sqlite3_vfs object changes in the transaction between
761 ** Registered sqlite3_vfs objects are kept on a linked list formed by
768 ** The pNext field is the only field in the sqlite3_vfs
771 ** The application should never modify anything within the sqlite3_vfs
885 typedef struct sqlite3_vfs sqlite3_vfs;
886 struct sqlite3_vfs {
890 sqlite3_vfs *pNext; /* Next registered VFS */
893 int (*xOpen)(sqlite3_vfs*, const char *zName, sqlite3_file*,
895 int (*xDelete)(sqlite3_vfs*, const char *zName, int syncDir);
896 int (*xAccess)(sqlite3_vfs*, const char *zName, int flags, int *pResOut);
897 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);
898 void *(*xDlOpen)(sqlite3_vfs*, const char *zFilename);
899 void (*xDlError)(sqlite3_vfs*, int nByte, char *zErrMsg);
900 void (*(*xDlSym)(sqlite3_vfs*,void*, const char *zSymbol))(void);
901 void (*xDlClose)(sqlite3_vfs*, void*);
902 int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut);
903 int (*xSleep)(sqlite3_vfs*, int microseconds);
904 int (*xCurrentTime)(sqlite3_vfs*, double*);
905 int (*xGetLastError)(sqlite3_vfs*, int, char *);
910 int (*xCurrentTimeInt64)(sqlite3_vfs*, sqlite3_int64*);
922 ** the xAccess method of an [sqlite3_vfs] object. They determine
1037 ** setting up a default [sqlite3_vfs] module, or setting up
2044 ** from the xRandomness method of the default [sqlite3_vfs] object.
2046 ** internally and without recourse to the [sqlite3_vfs] xRandomness
2343 ** [sqlite3_vfs] object that defines the operating system interface that
2345 ** a NULL pointer then the default [sqlite3_vfs] object is used.
4009 ** method of the default [sqlite3_vfs] object. If the xSleep() method
4021 ** created by SQLite when using a built-in [sqlite3_vfs | VFS]
4961 ** A virtual filesystem (VFS) is an [sqlite3_vfs] object
4987 SQLITE_API sqlite3_vfs *sqlite3_vfs_find(const char *zVfsName);
4988 SQLITE_API int sqlite3_vfs_register(sqlite3_vfs*, int makeDflt);
4989 SQLITE_API int sqlite3_vfs_unregister(sqlite3_vfs*);