Home | History | Annotate | Download | only in dist

Lines Matching refs:xOpen

471 ** in the 4th parameter to the [sqlite3_vfs.xOpen] method.
595 ** Every file opened by the [sqlite3_vfs.xOpen] method populates an
601 ** If the [sqlite3_vfs.xOpen] method sets the sqlite3_file.pMethods element
603 ** may be invoked even if the [sqlite3_vfs.xOpen] reported that it failed. The
604 ** only way to prevent a call to xClose following a failed [sqlite3_vfs.xOpen]
605 ** is for the [sqlite3_vfs.xOpen] to set the sqlite3_file.pMethods element
901 ** [[sqlite3_vfs.xOpen]]
902 ** ^SQLite guarantees that the zFilename parameter to xOpen
913 ** If the zFilename parameter to xOpen is a NULL pointer then xOpen
918 ** The flags argument to xOpen() includes all bits set in
922 ** If xOpen() opens a file read-only then it sets *pOutFlags to
925 ** ^(SQLite will also add one of the following flags to the xOpen()
948 ** SQLite might also add one of the following flags to the xOpen method:
971 ** argument to xOpen. The xOpen method does not have to
973 ** the xOpen method must set the sqlite3_file.pMethods to either
974 ** a valid [sqlite3_io_methods] object or to NULL. xOpen must do
976 ** element will be valid after xOpen returns regardless of the success
977 ** or failure of the xOpen call.
1032 int (*xOpen)(sqlite3_vfs*, const char *zName, sqlite3_file*,
2670 ** If F is the database filename pointer passed into the xOpen() method of
2671 ** a VFS implementation when the flags parameter to xOpen() has one or
2698 ** is not a database file pathname pointer that SQLite passed into the xOpen
4959 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
5149 ** [sqlite3_module.xOpen | xOpen] method of the module and are destroyed