Searched defs:sqlite3_io_methods (Results 1 – 8 of 8) sorted by relevance
/external/sqlite/dist/orig/ |
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
|
/external/rust/crates/libsqlite3-sys/sqlite3/ |
D | sqlite3.h | 782 typedef struct sqlite3_io_methods sqlite3_io_methods; typedef 783 struct sqlite3_io_methods { struct 784 int iVersion; 785 int (*xClose)(sqlite3_file*); 786 int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst); 787 int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst); 788 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size); 789 int (*xSync)(sqlite3_file*, int flags); 790 int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize); 814 ** of the [sqlite3_io_methods] object and for the [sqlite3_file_control()] argument
|
D | bindgen_bundled_version.rs | 538 pub struct sqlite3_io_methods { struct 539 pub iVersion: ::std::os::raw::c_int, 540 pub xClose: ::std::option::Option< 543 pub xRead: ::std::option::Option< 551 pub xWrite: ::std::option::Option< 559 pub xTruncate: ::std::option::Option< 562 pub xSync: ::std::option::Option< 568 pub xFileSize: ::std::option::Option< 574 pub xLock: ::std::option::Option< 580 pub xUnlock: ::std::option::Option< [all …]
|
/external/sqlite/dist/ |
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
|
/external/rust/crates/libsqlite3-sys/bindgen-bindings/ |
D | bindgen_3.6.8.rs | 342 pub type sqlite3_io_methods = sqlite3_file_sqlite3_io_methods; typedef
|
D | bindgen_3.6.23.rs | 370 pub type sqlite3_io_methods = sqlite3_file_sqlite3_io_methods; typedef
|
D | bindgen_3.7.7.rs | 442 pub type sqlite3_io_methods = sqlite3_file_sqlite3_io_methods; typedef
|
D | bindgen_3.7.16.rs | 476 pub type sqlite3_io_methods = sqlite3_file_sqlite3_io_methods; typedef
|