Home
last modified time | relevance | path

Searched defs:sqlite3_io_methods (Results 1 – 15 of 15) sorted by relevance

/external/sqlite/dist/sqlite-autoconf-3420000/
Dsqlite3.h833 typedef struct sqlite3_io_methods sqlite3_io_methods; typedef
834 struct sqlite3_io_methods { struct
835 int iVersion;
836 int (*xClose)(sqlite3_file*);
837 int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst);
838 int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst);
839 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size);
840 int (*xSync)(sqlite3_file*, int flags);
841 int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize);
865 ** of the [sqlite3_io_methods] object and for the [sqlite3_file_control()] argument
Dsqlite3.c1143 typedef struct sqlite3_io_methods sqlite3_io_methods; typedef
1144 struct sqlite3_io_methods { struct
1145 int iVersion;
1146 int (*xClose)(sqlite3_file*);
1147 int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst);
1148 int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst);
1149 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size);
1150 int (*xSync)(sqlite3_file*, int flags);
1151 int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize);
1175 ** of the [sqlite3_io_methods] object and for the [sqlite3_file_control()] argument
/external/sqlite/dist/sqlite-autoconf-3440300/orig/
Dsqlite3.h834 typedef struct sqlite3_io_methods sqlite3_io_methods; typedef
835 struct sqlite3_io_methods { struct
836 int iVersion;
837 int (*xClose)(sqlite3_file*);
838 int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst);
839 int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst);
840 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size);
841 int (*xSync)(sqlite3_file*, int flags);
842 int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize);
866 ** of the [sqlite3_io_methods] object and for the [sqlite3_file_control()] argument
Dsqlite3.c1147 typedef struct sqlite3_io_methods sqlite3_io_methods; typedef
1148 struct sqlite3_io_methods { struct
1149 int iVersion;
1150 int (*xClose)(sqlite3_file*);
1151 int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst);
1152 int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst);
1153 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size);
1154 int (*xSync)(sqlite3_file*, int flags);
1155 int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize);
1179 ** of the [sqlite3_io_methods] object and for the [sqlite3_file_control()] argument
/external/rust/crates/libsqlite3-sys/sqlite3/
Dsqlite3.h783 typedef struct sqlite3_io_methods sqlite3_io_methods; typedef
784 struct sqlite3_io_methods { struct
785 int iVersion;
786 int (*xClose)(sqlite3_file*);
787 int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst);
788 int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst);
789 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size);
790 int (*xSync)(sqlite3_file*, int flags);
791 int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize);
815 ** of the [sqlite3_io_methods] object and for the [sqlite3_file_control()] argument
Dbindgen_bundled_version.rs544 pub struct sqlite3_io_methods { struct
545 pub iVersion: ::std::os::raw::c_int,
546 pub xClose: ::std::option::Option<
549 pub xRead: ::std::option::Option<
557 pub xWrite: ::std::option::Option<
565 pub xTruncate: ::std::option::Option<
568 pub xSync: ::std::option::Option<
574 pub xFileSize: ::std::option::Option<
580 pub xLock: ::std::option::Option<
586 pub xUnlock: ::std::option::Option<
[all …]
Dsqlite3.c1846 typedef struct sqlite3_io_methods sqlite3_io_methods; typedef
1847 struct sqlite3_io_methods { struct
1848 int iVersion;
1849 int (*xClose)(sqlite3_file*);
1850 int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst);
1851 int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst);
1852 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size);
1853 int (*xSync)(sqlite3_file*, int flags);
1854 int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize);
1878 ** of the [sqlite3_io_methods] object and for the [sqlite3_file_control()] argument
/external/sqlite/dist/sqlite-autoconf-3440300/
Dsqlite3.h834 typedef struct sqlite3_io_methods sqlite3_io_methods; typedef
835 struct sqlite3_io_methods { struct
836 int iVersion;
837 int (*xClose)(sqlite3_file*);
838 int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst);
839 int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst);
840 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size);
841 int (*xSync)(sqlite3_file*, int flags);
842 int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize);
866 ** of the [sqlite3_io_methods] object and for the [sqlite3_file_control()] argument
Dsqlite3.c1147 typedef struct sqlite3_io_methods sqlite3_io_methods; typedef
1148 struct sqlite3_io_methods { struct
1149 int iVersion;
1150 int (*xClose)(sqlite3_file*);
1151 int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst);
1152 int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst);
1153 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size);
1154 int (*xSync)(sqlite3_file*, int flags);
1155 int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize);
1179 ** of the [sqlite3_io_methods] object and for the [sqlite3_file_control()] argument
/external/sqlite/dist/sqlite-autoconf-3420000/orig/
Dsqlite3.h833 typedef struct sqlite3_io_methods sqlite3_io_methods; typedef
834 struct sqlite3_io_methods { struct
835 int iVersion;
836 int (*xClose)(sqlite3_file*);
837 int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst);
838 int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst);
839 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size);
840 int (*xSync)(sqlite3_file*, int flags);
841 int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize);
865 ** of the [sqlite3_io_methods] object and for the [sqlite3_file_control()] argument
Dsqlite3.c1143 typedef struct sqlite3_io_methods sqlite3_io_methods; typedef
1144 struct sqlite3_io_methods { struct
1145 int iVersion;
1146 int (*xClose)(sqlite3_file*);
1147 int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst);
1148 int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst);
1149 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size);
1150 int (*xSync)(sqlite3_file*, int flags);
1151 int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize);
1175 ** of the [sqlite3_io_methods] object and for the [sqlite3_file_control()] argument
/external/rust/crates/libsqlite3-sys/bindgen-bindings/
Dbindgen_3.6.8.rs342 pub type sqlite3_io_methods = sqlite3_file_sqlite3_io_methods; typedef
Dbindgen_3.6.23.rs370 pub type sqlite3_io_methods = sqlite3_file_sqlite3_io_methods; typedef
Dbindgen_3.7.7.rs442 pub type sqlite3_io_methods = sqlite3_file_sqlite3_io_methods; typedef
Dbindgen_3.7.16.rs476 pub type sqlite3_io_methods = sqlite3_file_sqlite3_io_methods; typedef