Searched defs:sqlite3_io_methods (Results 1 – 2 of 2) sorted by relevance
/minix3/external/public-domain/sqlite/dist/ |
H A D | sqlite3.h | 728 typedef struct sqlite3_io_methods sqlite3_io_methods; typedef 729 struct sqlite3_io_methods { struct 730 int iVersion; 731 int (*xClose)(sqlite3_file*); 732 int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst); 733 int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst); 734 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size); 735 int (*xSync)(sqlite3_file*, int flags); 759 ** of the [sqlite3_io_methods] object and for the [sqlite3_file_control()] argument
|
H A D | sqlite3.c | 756 typedef struct sqlite3_io_methods sqlite3_io_methods; typedef 757 struct sqlite3_io_methods { struct 758 int iVersion; 759 int (*xClose)(sqlite3_file*); 760 int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst); 761 int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst); 762 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size); 763 int (*xSync)(sqlite3_file*, int flags); 787 ** of the [sqlite3_io_methods] object and for the [sqlite3_file_control()] argument
|