Searched defs:sqlite3_io_methods (Results 1 – 4 of 4) sorted by relevance
| /freebsd-12.1/crypto/heimdal/lib/sqlite/ |
| H A D | sqlite3.h | 676 typedef struct sqlite3_io_methods sqlite3_io_methods; typedef 677 struct sqlite3_io_methods { struct 678 int iVersion; 679 int (*xClose)(sqlite3_file*); 680 int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst); 704 ** of the [sqlite3_io_methods] object and for the [sqlite3_file_control()] argument
|
| H A D | sqlite3.c | 1229 typedef struct sqlite3_io_methods sqlite3_io_methods; typedef 1230 struct sqlite3_io_methods { struct 1231 int iVersion; 1232 int (*xClose)(sqlite3_file*); 1233 int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst); 1257 ** of the [sqlite3_io_methods] object and for the [sqlite3_file_control()] argument
|
| /freebsd-12.1/contrib/sqlite3/ |
| H A D | sqlite3.h | 779 typedef struct sqlite3_io_methods sqlite3_io_methods; typedef 780 struct sqlite3_io_methods { struct 781 int iVersion; 782 int (*xClose)(sqlite3_file*); 783 int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst); 784 int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst); 785 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size); 786 int (*xSync)(sqlite3_file*, int flags); 787 int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize); 811 ** of the [sqlite3_io_methods] object and for the [sqlite3_file_control()] argument
|
| H A D | sqlite3.c | 1818 typedef struct sqlite3_io_methods sqlite3_io_methods; typedef 1819 struct sqlite3_io_methods { struct 1820 int iVersion; 1821 int (*xClose)(sqlite3_file*); 1822 int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst); 1823 int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst); 1824 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size); 1825 int (*xSync)(sqlite3_file*, int flags); 1826 int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize); 1850 ** of the [sqlite3_io_methods] object and for the [sqlite3_file_control()] argument
|