• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/sqlite-3.6.22/

Lines Matching defs:sqlite3_vfs

433 ** [sqlite3_vfs] object.
519 ** [sqlite3_vfs | OS interface layer]. Individual OS interface
534 ** Every file opened by the [sqlite3_vfs] xOpen method populates an
671 ** An instance of the sqlite3_vfs object defines the interface between
678 ** of the sqlite3_vfs object changes in the transaction between
686 ** Registered sqlite3_vfs objects are kept on a linked list formed by
693 ** The pNext field is the only field in the sqlite3_vfs
696 ** The application should never modify anything within the sqlite3_vfs
797 typedef struct sqlite3_vfs sqlite3_vfs;
798 struct sqlite3_vfs {
802 sqlite3_vfs *pNext; /* Next registered VFS */
805 int (*xOpen)(sqlite3_vfs*, const char *zName, sqlite3_file*,
807 int (*xDelete)(sqlite3_vfs*, const char *zName, int syncDir);
808 int (*xAccess)(sqlite3_vfs*, const char *zName, int flags, int *pResOut);
809 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);
810 void *(*xDlOpen)(sqlite3_vfs*, const char *zFilename);
811 void (*xDlError)(sqlite3_vfs*, int nByte, char *zErrMsg);
812 void (*(*xDlSym)(sqlite3_vfs*,void*, const char *zSymbol))(void);
813 void (*xDlClose)(sqlite3_vfs*, void*);
814 int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut);
815 int (*xSleep)(sqlite3_vfs*, int microseconds);
816 int (*xCurrentTime)(sqlite3_vfs*, double*);
817 int (*xGetLastError)(sqlite3_vfs*, int, char *);
826 ** the xAccess method of an [sqlite3_vfs] object. They determine
896 ** setting up a default [sqlite3_vfs] module, or setting up
1880 ** from the xRandomness method of the default [sqlite3_vfs] object.
1882 ** internally and without recourse to the [sqlite3_vfs] xRandomness
2163 ** [sqlite3_vfs] object that defines the operating system interface that
2165 ** a NULL pointer then the default [sqlite3_vfs] object is used.
3701 ** method of the default [sqlite3_vfs] object.
3710 ** created by SQLite when using a built-in [sqlite3_vfs | VFS]
4579 ** A virtual filesystem (VFS) is an [sqlite3_vfs] object
4605 SQLITE_API sqlite3_vfs *sqlite3_vfs_find(const char *zVfsName);
4606 SQLITE_API int sqlite3_vfs_register(sqlite3_vfs*, int makeDflt);
4607 SQLITE_API int sqlite3_vfs_unregister(sqlite3_vfs*);