Searched defs:sqlite3_io_methods (Results 1 – 3 of 3) sorted by relevance
/netbsd-src/external/public-domain/sqlite/dist/ |
H A D | sqlite3.h | 834 typedef struct sqlite3_io_methods sqlite3_io_methods; typedef 835 struct sqlite3_io_methods { struct 836 int iVersion; 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); 866 ** of the [sqlite3_io_methods] object and for the [sqlite3_file_control()] argument
|
H A D | sqlite3.c | 1147 typedef struct sqlite3_io_methods sqlite3_io_methods; typedef 1148 struct sqlite3_io_methods { struct 1149 int iVersion; 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); 1179 ** of the [sqlite3_io_methods] object and for the [sqlite3_file_control()] argument
|
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/etc/c/ |
H A D | sqlite3.d | 282 const(sqlite3_io_methods)*pMethods; /* Methods for an open file */ member
|