Searched refs:sqlite3_file (Results 1 – 4 of 4) sorted by relevance
| /freebsd/contrib/sqlite3/ |
| H A D | sqlite3.h | 738 typedef struct sqlite3_file sqlite3_file; typedef 739 struct sqlite3_file { struct 848 int (*xClose)(sqlite3_file*); 849 int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst); 850 int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst); 851 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size); 852 int (*xSync)(sqlite3_file*, int flags); 853 int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize); 854 int (*xLock)(sqlite3_file*, int); 855 int (*xUnlock)(sqlite3_file*, int); [all …]
|
| H A D | shell.c | 9620 #define ORIGFILE(p) ((sqlite3_file*)(((ApndFile*)(p))+1)) 9657 sqlite3_file base; /* Subclass. MUST BE FIRST! */ 9666 static int apndClose(sqlite3_file*); 9667 static int apndRead(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst); 9668 static int apndWrite(sqlite3_file*,const void*,int iAmt, sqlite3_int64 iOfst); 9669 static int apndTruncate(sqlite3_file*, sqlite3_int64 size); 9670 static int apndSync(sqlite3_file*, int flags); 9671 static int apndFileSize(sqlite3_file*, sqlite3_int64 *pSize); 9672 static int apndLock(sqlite3_file*, int); 9673 static int apndUnlock(sqlite3_file*, int); [all …]
|
| H A D | sqlite3.c | 1057 typedef struct sqlite3_file sqlite3_file; typedef 1058 struct sqlite3_file { struct 1167 int (*xClose)(sqlite3_file*); 1168 int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst); 1169 int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst); 1170 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size); 1171 int (*xSync)(sqlite3_file*, int flags); 1172 int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize); 1173 int (*xLock)(sqlite3_file*, int); 1174 int (*xUnlock)(sqlite3_file*, int); [all …]
|
| H A D | sqlite3ext.h | 337 sqlite3_file *(*database_file_object)(const char*);
|