Searched defs:sqlite3_io_methods (Results 1 – 2 of 2) sorted by relevance
| /freebsd-13.1/contrib/sqlite3/ |
| H A 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
|
| H A D | sqlite3.c | 1127 typedef struct sqlite3_io_methods sqlite3_io_methods; typedef 1128 struct sqlite3_io_methods { struct 1129 int iVersion; 1130 int (*xClose)(sqlite3_file*); 1131 int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst); 1132 int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst); 1133 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size); 1134 int (*xSync)(sqlite3_file*, int flags); 1135 int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize); 1159 ** of the [sqlite3_io_methods] object and for the [sqlite3_file_control()] argument
|