Searched refs:sqlite3_file (Results 1 – 4 of 4) sorted by relevance
| /freebsd-13.1/contrib/sqlite3/ |
| H A D | sqlite3.h | 722 typedef struct sqlite3_file sqlite3_file; typedef 723 struct sqlite3_file { struct 824 int (*xClose)(sqlite3_file*); 827 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size); 828 int (*xSync)(sqlite3_file*, int flags); 830 int (*xLock)(sqlite3_file*, int); 831 int (*xUnlock)(sqlite3_file*, int); 834 int (*xSectorSize)(sqlite3_file*); 835 int (*xDeviceCharacteristics)(sqlite3_file*); 839 void (*xShmBarrier)(sqlite3_file*); [all …]
|
| H A D | shell.c | 3825 static int apndClose(sqlite3_file*); 3831 static int apndLock(sqlite3_file*, int); 3832 static int apndUnlock(sqlite3_file*, int); 3835 static int apndSectorSize(sqlite3_file*); 3839 static void apndShmBarrier(sqlite3_file*); 3923 sqlite3_file *pFile, in apndRead() 3940 sqlite3_file *pFile, in apndWriteMark() 3965 sqlite3_file *pFile, in apndWrite() 4069 sqlite3_file *pFile, in apndShmMap() 4099 sqlite3_file *pFile, in apndFetch() [all …]
|
| H A D | sqlite3.c | 1028 typedef struct sqlite3_file sqlite3_file; typedef 1029 struct sqlite3_file { struct 24131 sqlite3_file *pFile, 24228 sqlite3_file *pFile; 37573 sqlite3_file *id, 37704 sqlite3_file *id, 49027 sqlite3_file *pFd, 97000 sqlite3_file **ppFd 99035 sqlite3_file *pReal = (sqlite3_file*)p; 206423 sqlite3_file *pFd = (sqlite3_file*)pRbu->pRbuFd; [all …]
|
| H A D | sqlite3ext.h | 337 sqlite3_file *(*database_file_object)(const char*);
|