Searched defs:sqlite3_vfs (Results 1 – 2 of 2) 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 1474 int (*xOpen)(sqlite3_vfs*, sqlite3_filename zName, sqlite3_file*, 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 [all …]
|
| H A D | sqlite3.c | 1778 typedef struct sqlite3_vfs sqlite3_vfs; typedef 1780 struct sqlite3_vfs { struct 1784 sqlite3_vfs *pNext; /* Next registered VFS */ argument 1787 int (*xOpen)(sqlite3_vfs*, sqlite3_filename zName, sqlite3_file*, argument 1792 void *(*xDlOpen)(sqlite3_vfs*, const char *zFilename); argument 1795 void (*xDlClose)(sqlite3_vfs*, void*); argument 1796 int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut); argument 1797 int (*xSleep)(sqlite3_vfs*, int microseconds); argument 1798 int (*xCurrentTime)(sqlite3_vfs*, double*); argument 1799 int (*xGetLastError)(sqlite3_vfs*, int, char *); argument [all …]
|