Searched refs:sqlite3_file (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/sqlite3/ |
H A D | sqlite3.h | 730 typedef struct sqlite3_file sqlite3_file; typedef 731 struct sqlite3_file { struct 839 int (*xClose)(sqlite3_file*); 840 int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst); 841 int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst); 842 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size); 843 int (*xSync)(sqlite3_file*, int flags); 844 int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize); 845 int (*xLock)(sqlite3_file*, int); 846 int (*xUnlock)(sqlite3_file*, int); [all …]
|
H A D | shell.c | 8791 #define ORIGFILE(p) ((sqlite3_file*)(((ApndFile*)(p))+1)) 8828 sqlite3_file base; /* Subclass. MUST BE FIRST! */ 8837 static int apndClose(sqlite3_file*); 8838 static int apndRead(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst); 8839 static int apndWrite(sqlite3_file*,const void*,int iAmt, sqlite3_int64 iOfst); 8840 static int apndTruncate(sqlite3_file*, sqlite3_int64 size); 8841 static int apndSync(sqlite3_file*, int flags); 8842 static int apndFileSize(sqlite3_file*, sqlite3_int64 *pSize); 8843 static int apndLock(sqlite3_file*, int); 8844 static int apndUnlock(sqlite3_file*, int); [all …]
|
H A D | sqlite3.c | 1043 typedef struct sqlite3_file sqlite3_file; typedef 1044 struct sqlite3_file { struct 1152 int (*xClose)(sqlite3_file*); 1153 int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst); 1154 int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst); 1155 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size); 1156 int (*xSync)(sqlite3_file*, int flags); 1157 int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize); 1158 int (*xLock)(sqlite3_file*, int); 1159 int (*xUnlock)(sqlite3_file*, int); [all …]
|
H A D | sqlite3ext.h | 337 sqlite3_file *(*database_file_object)(const char*);
|