Searched defs:sqlite3_io_methods (Results 1 – 2 of 2) sorted by relevance
| /third_party/sqlite/include/ |
| D | sqlite3.h | 832 typedef struct sqlite3_io_methods sqlite3_io_methods; typedef 833 struct sqlite3_io_methods { struct 834 int iVersion; 835 int (*xClose)(sqlite3_file*); 836 int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst); 837 int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst); 838 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size); 839 int (*xSync)(sqlite3_file*, int flags); 840 int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize); 864 ** of the [sqlite3_io_methods] object and for the [sqlite3_file_control()] argument
|
| /third_party/sqlite/src/ |
| D | sqlite3.c | 1143 typedef struct sqlite3_io_methods sqlite3_io_methods; typedef 1144 struct sqlite3_io_methods { struct 1145 int iVersion; 1146 int (*xClose)(sqlite3_file*); 1147 int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst); 1148 int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst); 1149 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size); 1150 int (*xSync)(sqlite3_file*, int flags); 1151 int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize); 1175 ** of the [sqlite3_io_methods] object and for the [sqlite3_file_control()] argument
|