Searched defs:sqlite3_io_methods (Results 1 – 2 of 2) sorted by relevance
/freebsd/contrib/sqlite3/ |
H A D | sqlite3.h | 845 typedef struct sqlite3_io_methods sqlite3_io_methods; typedef 846 struct sqlite3_io_methods { struct 847 int iVersion; 848 int (*xClose)(sqlite3_file*); 849 int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst); 850 int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst); 851 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size); 852 int (*xSync)(sqlite3_file*, int flags); 853 int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize); 877 ** of the [sqlite3_io_methods] object and for the [sqlite3_file_control()] argument
|
H A D | sqlite3.c | 1164 typedef struct sqlite3_io_methods sqlite3_io_methods; typedef 1165 struct sqlite3_io_methods { struct 1166 int iVersion; 1167 int (*xClose)(sqlite3_file*); 1168 int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst); 1169 int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst); 1170 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size); 1171 int (*xSync)(sqlite3_file*, int flags); 1172 int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize); 1196 ** of the [sqlite3_io_methods] object and for the [sqlite3_file_control()] argument
|