• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/sqlite/

Lines Matching refs:sqlite3_vfs

465 ** [sqlite3_vfs] object.
554 ** [sqlite3_vfs | OS interface layer]. Individual OS interface
569 ** Every file opened by the [sqlite3_vfs] xOpen method populates an
729 ** An instance of the sqlite3_vfs object defines the interface between
736 ** of the sqlite3_vfs object changes in the transaction between
744 ** Registered sqlite3_vfs objects are kept on a linked list formed by
751 ** The pNext field is the only field in the sqlite3_vfs
754 ** The application should never modify anything within the sqlite3_vfs
862 typedef struct sqlite3_vfs sqlite3_vfs;
863 struct sqlite3_vfs {
867 sqlite3_vfs *pNext; /* Next registered VFS */
870 int (*xOpen)(sqlite3_vfs*, const char *zName, sqlite3_file*,
872 int (*xDelete)(sqlite3_vfs*, const char *zName, int syncDir);
873 int (*xAccess)(sqlite3_vfs*, const char *zName, int flags, int *pResOut);
874 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);
875 void *(*xDlOpen)(sqlite3_vfs*, const char *zFilename);
876 void (*xDlError)(sqlite3_vfs*, int nByte, char *zErrMsg);
877 void (*(*xDlSym)(sqlite3_vfs*,void*, const char *zSymbol))(void);
878 void (*xDlClose)(sqlite3_vfs*, void*);
879 int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut);
880 int (*xSleep)(sqlite3_vfs*, int microseconds);
881 int (*xCurrentTime)(sqlite3_vfs*, double*);
882 int (*xGetLastError)(sqlite3_vfs*, int, char *);
887 int (*xCurrentTimeInt64)(sqlite3_vfs*, sqlite3_int64*);
899 ** the xAccess method of an [sqlite3_vfs] object. They determine
1014 ** setting up a default [sqlite3_vfs] module, or setting up
2012 ** from the xRandomness method of the default [sqlite3_vfs] object.
2014 ** internally and without recourse to the [sqlite3_vfs] xRandomness
2300 ** [sqlite3_vfs] object that defines the operating system interface that
2302 ** a NULL pointer then the default [sqlite3_vfs] object is used.
3866 ** method of the default [sqlite3_vfs] object.
3875 ** created by SQLite when using a built-in [sqlite3_vfs | VFS]
4743 ** A virtual filesystem (VFS) is an [sqlite3_vfs] object
4769 SQLITE_API sqlite3_vfs *sqlite3_vfs_find(const char *zVfsName);
4770 SQLITE_API int sqlite3_vfs_register(sqlite3_vfs*, int makeDflt);
4771 SQLITE_API int sqlite3_vfs_unregister(sqlite3_vfs*);