Searched refs:sqlite3_vfs (Results 1 – 4 of 4) sorted by relevance
| /freebsd-14.2/contrib/sqlite3/ |
| H A D | sqlite3.h | 1465 typedef struct sqlite3_vfs sqlite3_vfs; typedef 1467 struct sqlite3_vfs { struct 1471 sqlite3_vfs *pNext; /* Next registered VFS */ argument 1479 void *(*xDlOpen)(sqlite3_vfs*, const char *zFilename); argument 1482 void (*xDlClose)(sqlite3_vfs*, void*); argument 1483 int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut); argument 1484 int (*xSleep)(sqlite3_vfs*, int microseconds); argument 1485 int (*xCurrentTime)(sqlite3_vfs*, double*); argument 1486 int (*xGetLastError)(sqlite3_vfs*, int, char *); argument 1491 int (*xCurrentTimeInt64)(sqlite3_vfs*, sqlite3_int64*); argument [all …]
|
| H A D | sqlite3ext.h | 195 sqlite3_vfs *(*vfs_find)(const char*); 196 int (*vfs_register)(sqlite3_vfs*,int); 197 int (*vfs_unregister)(sqlite3_vfs*);
|
| H A D | shell.c | 8876 static sqlite3_vfs apnd_vfs = { 9207 sqlite3_vfs *pApndVfs, in apndOpen() 9281 sqlite3_vfs *pVfs, in apndAccess() 9289 sqlite3_vfs *pVfs, in apndFullPathname() 9324 sqlite3_vfs *pVfs, in apndSetSystemCall() 9331 sqlite3_vfs *pVfs, in apndGetSystemCall() 9354 sqlite3_vfs *pOrig; in sqlite3_appendvfs_init() 29494 sqlite3_vfs *pVfs = 0; in do_meta_command() 29507 sqlite3_vfs *pVfs; in do_meta_command() 29508 sqlite3_vfs *pCurrent = 0; in do_meta_command() [all …]
|
| H A D | sqlite3.c | 1778 typedef struct sqlite3_vfs sqlite3_vfs; typedef 1780 struct sqlite3_vfs { struct 15885 sqlite3_vfs*, 26253 sqlite3_vfs *pVfs, in sqlite3OsOpen() 26276 sqlite3_vfs *pVfs, in sqlite3OsAccess() 26285 sqlite3_vfs *pVfs, in sqlite3OsFullPathname() 26346 sqlite3_vfs *pVfs, in sqlite3OsOpenMalloc() 38278 sqlite3_vfs *pVfs, 53408 sqlite3_vfs *pVfs, 53505 sqlite3_vfs *pVfs, [all …]
|