Home
last modified time | relevance | path

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

/PHP-7.0/ext/sqlite3/libsqlite/
H A Dsqlite3.h742 typedef struct sqlite3_io_methods sqlite3_io_methods; typedef
743 struct sqlite3_io_methods { struct
744 int iVersion;
745 int (*xClose)(sqlite3_file*);
746 int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst);
747 int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst);
748 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size);
749 int (*xSync)(sqlite3_file*, int flags);
750 int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize);
774 ** of the [sqlite3_io_methods] object and for the [sqlite3_file_control()] argument
H A Dsqlite3.c1002 typedef struct sqlite3_io_methods sqlite3_io_methods; typedef
1003 struct sqlite3_io_methods { struct
1004 int iVersion;
1005 int (*xClose)(sqlite3_file*);
1006 int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst);
1007 int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst);
1008 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size);
1009 int (*xSync)(sqlite3_file*, int flags);
1010 int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize);
1034 ** of the [sqlite3_io_methods] object and for the [sqlite3_file_control()] argument

Completed in 755 milliseconds