Searched defs:sqlite3_io_methods (Results 1 – 4 of 4) sorted by relevance
| /external/sqlite/dist/ |
| D | sqlite3.h | 751 typedef struct sqlite3_io_methods sqlite3_io_methods; typedef 752 struct sqlite3_io_methods { struct 753 int iVersion; 754 int (*xClose)(sqlite3_file*); 755 int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst); 756 int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst); 757 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size); 758 int (*xSync)(sqlite3_file*, int flags); 759 int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize); 783 ** of the [sqlite3_io_methods] object and for the [sqlite3_file_control()] argument
|
| D | sqlite3.c | 1028 typedef struct sqlite3_io_methods sqlite3_io_methods; typedef 1029 struct sqlite3_io_methods { struct 1030 int iVersion; 1031 int (*xClose)(sqlite3_file*); 1032 int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst); 1033 int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst); 1034 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size); 1035 int (*xSync)(sqlite3_file*, int flags); 1036 int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize); 1060 ** of the [sqlite3_io_methods] object and for the [sqlite3_file_control()] argument
|
| /external/sqlite/dist/orig/ |
| D | sqlite3.h | 751 typedef struct sqlite3_io_methods sqlite3_io_methods; typedef 752 struct sqlite3_io_methods { struct 753 int iVersion; 754 int (*xClose)(sqlite3_file*); 755 int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst); 756 int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst); 757 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size); 758 int (*xSync)(sqlite3_file*, int flags); 759 int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize); 783 ** of the [sqlite3_io_methods] object and for the [sqlite3_file_control()] argument
|
| D | sqlite3.c | 1028 typedef struct sqlite3_io_methods sqlite3_io_methods; typedef 1029 struct sqlite3_io_methods { struct 1030 int iVersion; 1031 int (*xClose)(sqlite3_file*); 1032 int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst); 1033 int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst); 1034 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size); 1035 int (*xSync)(sqlite3_file*, int flags); 1036 int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize); 1060 ** of the [sqlite3_io_methods] object and for the [sqlite3_file_control()] argument
|