Searched defs:sqlite3_io_methods (Results 1 – 2 of 2) sorted by relevance
| /third_party/sqlite/include/ |
| D | sqlite3.h | 821 typedef struct sqlite3_io_methods sqlite3_io_methods; typedef 822 struct sqlite3_io_methods { struct 823 int iVersion; 824 int (*xClose)(sqlite3_file*); 825 int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst); 826 int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst); 827 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size); 828 int (*xSync)(sqlite3_file*, int flags); 829 int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize); 853 ** of the [sqlite3_io_methods] object and for the [sqlite3_file_control()] argument
|
| /third_party/sqlite/src/ |
| D | sqlite3.c | 1131 typedef struct sqlite3_io_methods sqlite3_io_methods; typedef 1132 struct sqlite3_io_methods { struct 1133 int iVersion; 1134 int (*xClose)(sqlite3_file*); 1135 int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst); 1136 int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst); 1137 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size); 1138 int (*xSync)(sqlite3_file*, int flags); 1139 int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize); 1163 ** of the [sqlite3_io_methods] object and for the [sqlite3_file_control()] argument
|