Searched refs:sqlite3_file (Results 1 – 4 of 4) sorted by relevance
| /freebsd/contrib/sqlite3/ |
| H A D | sqlite3.h | 746 typedef struct sqlite3_file sqlite3_file; typedef 747 struct sqlite3_file { struct 856 int (*xClose)(sqlite3_file*); 857 int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst); 858 int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst); 859 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size); 860 int (*xSync)(sqlite3_file*, int flags); 861 int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize); 862 int (*xLock)(sqlite3_file*, int); 863 int (*xUnlock)(sqlite3_file*, int); [all …]
|
| H A D | shell.c | 11545 #define ORIGFILE(p) ((sqlite3_file*)(((ApndFile*)(p))+1)) 11582 sqlite3_file base; /* Subclass. MUST BE FIRST! */ 11591 static int apndClose(sqlite3_file*); 11592 static int apndRead(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst); 11593 static int apndWrite(sqlite3_file*,const void*,int iAmt, sqlite3_int64 iOfst); 11594 static int apndTruncate(sqlite3_file*, sqlite3_int64 size); 11595 static int apndSync(sqlite3_file*, int flags); 11596 static int apndFileSize(sqlite3_file*, sqlite3_int64 *pSize); 11597 static int apndLock(sqlite3_file*, int); 11598 static int apndUnlock(sqlite3_file*, int); [all …]
|
| H A D | sqlite3.c | 1067 typedef struct sqlite3_file sqlite3_file; typedef 1068 struct sqlite3_file { struct 1177 int (*xClose)(sqlite3_file*); 1178 int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst); 1179 int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst); 1180 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size); 1181 int (*xSync)(sqlite3_file*, int flags); 1182 int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize); 1183 int (*xLock)(sqlite3_file*, int); 1184 int (*xUnlock)(sqlite3_file*, int); [all …]
|
| H A D | sqlite3ext.h | 337 sqlite3_file *(*database_file_object)(const char*);
|