Searched refs:sqlite3_file (Results 1 – 6 of 6) sorted by relevance
| /netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/etc/c/ |
| H A D | sqlite3.d | 280 struct sqlite3_file struct 292 int function (sqlite3_file*) xClose; argument 293 int function (sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst) xRead; 294 int function (sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst) xWrite; 295 int function (sqlite3_file*, sqlite3_int64 size) xTruncate; 296 int function (sqlite3_file*, int flags) xSync; 297 int function (sqlite3_file*, sqlite3_int64 *pSize) xFileSize; 298 int function (sqlite3_file*, int) xLock; 299 int function (sqlite3_file*, int) xUnlock; 300 int function (sqlite3_file*, int *pResOut) xCheckReservedLock; [all …]
|
| /netbsd-src/external/public-domain/sqlite/dist/ |
| H A 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 …]
|
| H A 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 …]
|
| H A 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 …]
|
| H A D | sqlite3ext.h | 337 sqlite3_file *(*database_file_object)(const char*);
|
| /netbsd-src/external/public-domain/sqlite/man/ |
| H A D | Makefile | 115 sqlite3_file.3 \
|