Searched defs:sqlite3_io_methods (Results 1 – 2 of 2) sorted by relevance
| /freebsd/contrib/sqlite3/ |
| H A D | sqlite3.h | 853 typedef struct sqlite3_io_methods sqlite3_io_methods; typedef 854 struct sqlite3_io_methods { struct 855 int iVersion; 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); 885 ** of the [sqlite3_io_methods] object and for the [sqlite3_file_control()] argument
|
| H A D | sqlite3.c | 1174 typedef struct sqlite3_io_methods sqlite3_io_methods; typedef 1175 struct sqlite3_io_methods { struct 1176 int iVersion; 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); 1206 ** of the [sqlite3_io_methods] object and for the [sqlite3_file_control()] argument
|