Searched refs:sqlite3_file (Results 1 – 5 of 5) sorted by relevance
| /netbsd/src/external/public-domain/sqlite/dist/ |
| D | sqlite3.h | 728 typedef struct sqlite3_file sqlite3_file; typedef 729 struct sqlite3_file { struct 837 int (*xClose)(sqlite3_file*); 838 int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst); 839 int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst); 840 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size); 841 int (*xSync)(sqlite3_file*, int flags); 842 int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize); 843 int (*xLock)(sqlite3_file*, int); 844 int (*xUnlock)(sqlite3_file*, int); [all …]
|
| D | shell.c | 8713 #define ORIGFILE(p) ((sqlite3_file*)(((ApndFile*)(p))+1)) 8750 sqlite3_file base; /* Subclass. MUST BE FIRST! */ 8759 static int apndClose(sqlite3_file*); 8760 static int apndRead(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst); 8761 static int apndWrite(sqlite3_file*,const void*,int iAmt, sqlite3_int64 iOfst); 8762 static int apndTruncate(sqlite3_file*, sqlite3_int64 size); 8763 static int apndSync(sqlite3_file*, int flags); 8764 static int apndFileSize(sqlite3_file*, sqlite3_int64 *pSize); 8765 static int apndLock(sqlite3_file*, int); 8766 static int apndUnlock(sqlite3_file*, int); [all …]
|
| D | sqlite3.c | 1041 typedef struct sqlite3_file sqlite3_file; typedef 1042 struct sqlite3_file { struct 1150 int (*xClose)(sqlite3_file*); 1151 int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst); 1152 int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst); 1153 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size); 1154 int (*xSync)(sqlite3_file*, int flags); 1155 int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize); 1156 int (*xLock)(sqlite3_file*, int); 1157 int (*xUnlock)(sqlite3_file*, int); [all …]
|
| D | sqlite3ext.h | 337 sqlite3_file *(*database_file_object)(const char*);
|
| /netbsd/src/distrib/sets/lists/comp/ |
| D | mi | 10721 ./usr/share/man/cat3/sqlite3_file.0 comp-c-catman .cat 19246 ./usr/share/man/html3/sqlite3_file.html comp-c-htmlman html 27807 ./usr/share/man/man3/sqlite3_file.3 comp-c-man .man
|