Home
last modified time | relevance | path

Searched defs:sqlite3_vfs (Results 1 – 2 of 2) sorted by relevance

/third_party/sqlite/include/
Dsqlite3.h1425 typedef struct sqlite3_vfs sqlite3_vfs; typedef
1427 struct sqlite3_vfs { struct
1431 sqlite3_vfs *pNext; /* Next registered VFS */ argument
1434 int (*xOpen)(sqlite3_vfs*, const char *zName, sqlite3_file*, argument
1436 int (*xDelete)(sqlite3_vfs*, const char *zName, int syncDir); argument
1437 int (*xAccess)(sqlite3_vfs*, const char *zName, int flags, int *pResOut); argument
1438 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut); argument
1439 void *(*xDlOpen)(sqlite3_vfs*, const char *zFilename); argument
1440 void (*xDlError)(sqlite3_vfs*, int nByte, char *zErrMsg); argument
1441 void (*(*xDlSym)(sqlite3_vfs*,void*, const char *zSymbol))(void); argument
[all …]
/third_party/sqlite/src/
Dsqlite3.c1735 typedef struct sqlite3_vfs sqlite3_vfs; typedef
1737 struct sqlite3_vfs { struct
1741 sqlite3_vfs *pNext; /* Next registered VFS */ argument
1744 int (*xOpen)(sqlite3_vfs*, const char *zName, sqlite3_file*, argument
1746 int (*xDelete)(sqlite3_vfs*, const char *zName, int syncDir); argument
1747 int (*xAccess)(sqlite3_vfs*, const char *zName, int flags, int *pResOut); argument
1748 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut); argument
1749 void *(*xDlOpen)(sqlite3_vfs*, const char *zFilename); argument
1750 void (*xDlError)(sqlite3_vfs*, int nByte, char *zErrMsg); argument
1751 void (*(*xDlSym)(sqlite3_vfs*,void*, const char *zSymbol))(void); argument
[all …]