Searched defs:sqlite3_io_methods (Results 1 – 2 of 2) sorted by relevance
| /third_party/sqlite/include/ |
| D | sqlite3.h | 783 typedef struct sqlite3_io_methods sqlite3_io_methods; typedef 784 struct sqlite3_io_methods { struct 785 int iVersion; 786 int (*xClose)(sqlite3_file*); 787 int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst); 788 int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst); 789 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size); 790 int (*xSync)(sqlite3_file*, int flags); 791 int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize); 815 ** of the [sqlite3_io_methods] object and for the [sqlite3_file_control()] argument
|
| /third_party/sqlite/src/ |
| D | sqlite3.c | 1875 typedef struct sqlite3_io_methods sqlite3_io_methods; typedef 1876 struct sqlite3_io_methods { struct 1877 int iVersion; 1878 int (*xClose)(sqlite3_file*); 1879 int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst); 1880 int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst); 1881 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size); 1882 int (*xSync)(sqlite3_file*, int flags); 1883 int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize); 1907 ** of the [sqlite3_io_methods] object and for the [sqlite3_file_control()] argument
|