Lines Matching defs:sqlite3_io_methods

979 ** The xDeviceCapabilities method of the [sqlite3_io_methods]
982 ** device that holds the file that the [sqlite3_io_methods]
1013 ** of an [sqlite3_io_methods] object.
1025 ** [sqlite3_io_methods] object it uses a combination of
1047 ** [sqlite3_io_methods] object that defines methods for performing
1052 const struct sqlite3_io_methods *pMethods; /* Methods for an open file */
1065 ** to a non-NULL pointer, then the sqlite3_io_methods.xClose method
1142 typedef struct sqlite3_io_methods sqlite3_io_methods;
1143 struct sqlite3_io_methods {
1164 ** of the [sqlite3_io_methods] object and for the [sqlite3_file_control()]
1292 ** a valid [sqlite3_io_methods] object or to NULL. xOpen must do
5401 ** xFileControl method for the [sqlite3_io_methods] object associated
20229 const sqlite3_io_methods *pMethod; /* Always the first entry */
20239 ** by the sqlite3_io_methods object.
20810 static const sqlite3_io_methods os2IoMethod = {
20827 ** Here ends the I/O methods that form the sqlite3_io_methods object.
21332 ** * Definitions of sqlite3_io_methods objects for all locking
21479 sqlite3_io_methods const *pMethod; /* Always the first entry */
24742 ** This division contains definitions of sqlite3_io_methods objects that
24745 ** sqlite3_io_methods object for a particular database file. The pAppData
24749 ** Most finder functions return a pointer to a fixed sqlite3_io_methods
24769 ** * A constant sqlite3_io_methods object call METHOD that has locking
24776 static const sqlite3_io_methods METHOD = { \
24791 static const sqlite3_io_methods *FINDER##Impl(const char *z, unixFile *p){ \
24795 static const sqlite3_io_methods *(*const FINDER)(const char*,unixFile *p) \
24799 ** Here are all of the sqlite3_io_methods objects for each of the
24805 posixIoMethods, /* sqlite3_io_methods object name */
24813 nolockIoMethods, /* sqlite3_io_methods object name */
24821 dotlockIoMethods, /* sqlite3_io_methods object name */
24831 flockIoMethods, /* sqlite3_io_methods object name */
24842 semIoMethods, /* sqlite3_io_methods object name */
24853 afpIoMethods, /* sqlite3_io_methods object name */
24870 static const sqlite3_io_methods *posixWflIoFinderImpl(const char*z, unixFile*p){
24875 static const sqlite3_io_methods
24884 ** to go ahead and define the sqlite3_io_methods and finder function
24894 proxyIoMethods, /* sqlite3_io_methods object name */
24906 ** for the database file "filePath". It then returns the sqlite3_io_methods
24911 static const sqlite3_io_methods *autolockIoFinderImpl(
24917 const sqlite3_io_methods *pMethods; /* Appropriate locking method */
24965 static const sqlite3_io_methods
24973 ** for the database file "filePath". It then returns the sqlite3_io_methods
24978 static const sqlite3_io_methods *autolockIoFinderImpl(
25003 static const sqlite3_io_methods
25011 typedef const sqlite3_io_methods *(*finder_type)(const char*,unixFile*);
25033 const sqlite3_io_methods *pLockingStyle;
26049 sqlite3_io_methods const *pOldMethod; /* Original I/O methods for close */
27019 ** Most finders simply return a pointer to a fixed sqlite3_io_methods
27415 const sqlite3_io_methods *pMethod;/* Must be first */
27929 ** by the sqlite3_io_methods object.
28462 static const sqlite3_io_methods winIoMethod = {
28479 ** Here ends the I/O methods that form the sqlite3_io_methods object.
58717 sqlite3_io_methods *pMethod; /* I/O methods on journal files */
58853 static struct sqlite3_io_methods JournalFileMethods = {
58979 sqlite3_io_methods *pMethod; /* Parent class. MUST BE FIRST */
59134 static struct sqlite3_io_methods MemJournalMethods = {