Home | History | Annotate | Download | only in orig

Lines Matching defs:xOpen

506 ** in the 4th parameter to the [sqlite3_vfs.xOpen] method.
636 ** Every file opened by the [sqlite3_vfs.xOpen] method populates an
642 ** If the [sqlite3_vfs.xOpen] method sets the sqlite3_file.pMethods element
644 ** may be invoked even if the [sqlite3_vfs.xOpen] reported that it failed. The
645 ** only way to prevent a call to xClose following a failed [sqlite3_vfs.xOpen]
646 ** is for the [sqlite3_vfs.xOpen] to set the sqlite3_file.pMethods element
1020 ** [[sqlite3_vfs.xOpen]]
1021 ** ^SQLite guarantees that the zFilename parameter to xOpen
1032 ** If the zFilename parameter to xOpen is a NULL pointer then xOpen
1037 ** The flags argument to xOpen() includes all bits set in
1041 ** If xOpen() opens a file read-only then it sets *pOutFlags to
1044 ** ^(SQLite will also add one of the following flags to the xOpen()
1067 ** SQLite might also add one of the following flags to the xOpen method:
1090 ** argument to xOpen. The xOpen method does not have to
1092 ** the xOpen method must set the sqlite3_file.pMethods to either
1093 ** a valid [sqlite3_io_methods] object or to NULL. xOpen must do
1095 ** element will be valid after xOpen returns regardless of the success
1096 ** or failure of the xOpen call.
1151 int (*xOpen)(sqlite3_vfs*, const char *zName, sqlite3_file*,
2883 ** If F is the database filename pointer passed into the xOpen() method of
2884 ** a VFS implementation when the flags parameter to xOpen() has one or
2911 ** is not a database file pathname pointer that SQLite passed into the xOpen
5315 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
5519 ** [sqlite3_module.xOpen | xOpen] method of the module and are destroyed