Home
last modified time | relevance | path

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

/PHP-5.5/ext/sqlite3/libsqlite/
H A Dsqlite3.h730 typedef struct sqlite3_io_methods sqlite3_io_methods; typedef
731 struct sqlite3_io_methods { struct
732 int iVersion;
733 int (*xClose)(sqlite3_file*);
734 int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst);
735 int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst);
736 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size);
737 int (*xSync)(sqlite3_file*, int flags);
738 int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize);
762 ** of the [sqlite3_io_methods] object and for the [sqlite3_file_control()] argument
H A Dsqlite3.c937 typedef struct sqlite3_io_methods sqlite3_io_methods; typedef
938 struct sqlite3_io_methods { struct
939 int iVersion;
940 int (*xClose)(sqlite3_file*);
941 int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst);
942 int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst);
943 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size);
944 int (*xSync)(sqlite3_file*, int flags);
945 int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize);
969 ** of the [sqlite3_io_methods] object and for the [sqlite3_file_control()] argument

Completed in 345 milliseconds