Home | History | Annotate | Download | only in dist

Lines Matching defs:xOpen

621 ** in the 4th parameter to the [sqlite3_vfs.xOpen] method.
751 ** Every file opened by the [sqlite3_vfs.xOpen] method populates an
757 ** If the [sqlite3_vfs.xOpen] method sets the sqlite3_file.pMethods element
759 ** may be invoked even if the [sqlite3_vfs.xOpen] reported that it failed. The
760 ** only way to prevent a call to xClose following a failed [sqlite3_vfs.xOpen]
761 ** is for the [sqlite3_vfs.xOpen] to set the sqlite3_file.pMethods element
1135 ** [[sqlite3_vfs.xOpen]]
1136 ** ^SQLite guarantees that the zFilename parameter to xOpen
1147 ** If the zFilename parameter to xOpen is a NULL pointer then xOpen
1152 ** The flags argument to xOpen() includes all bits set in
1156 ** If xOpen() opens a file read-only then it sets *pOutFlags to
1159 ** ^(SQLite will also add one of the following flags to the xOpen()
1182 ** SQLite might also add one of the following flags to the xOpen method:
1205 ** argument to xOpen. The xOpen method does not have to
1207 ** the xOpen method must set the sqlite3_file.pMethods to either
1208 ** a valid [sqlite3_io_methods] object or to NULL. xOpen must do
1210 ** element will be valid after xOpen returns regardless of the success
1211 ** or failure of the xOpen call.
1266 int (*xOpen)(sqlite3_vfs*, const char *zName, sqlite3_file*,
2998 ** If F is the database filename pointer passed into the xOpen() method of
2999 ** a VFS implementation when the flags parameter to xOpen() has one or
3026 ** is not a database file pathname pointer that SQLite passed into the xOpen
5430 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
5634 ** [sqlite3_module.xOpen | xOpen] method of the module and are destroyed
10444 unsigned int openFlags; /* Flags passed to sqlite3_vfs.xOpen() */
15928 rc = pVfs->xOpen(pVfs, zPath, pFile, flags & 0x87f7f, pFlagsOut);
24307 ** method was called. If xOpen() is called from a different process id,
29826 int flags, /* Flags passed as 4th argument to xOpen() */
29902 sqlite3_vfs *pVfs, /* The VFS for which this is the xOpen method */
30112 if( isAutoProxy && (zPath!=NULL) && (!noLock) && pVfs->xOpen ){
31356 ** pFile is a file that has been opened by a prior xOpen call. dbPath
31721 unixOpen, /* xOpen */ \
37456 winOpen, /* xOpen */
37481 winOpen, /* xOpen */
40944 u32 vfsFlags; /* Flags for sqlite3_vfs.xOpen() */
43777 ** The flags passed to the VFS layer xOpen() call are those specified
44774 ** of the xOpen() method of the supplied VFS when opening files.
44789 int vfsFlags, /* flags passed through to sqlite3_vfs.xOpen() */
44931 int fout = 0; /* VFS flags returned by xOpen() */
53312 int vfsFlags /* Flags passed through to sqlite3_vfs.xOpen() */
74043 rc = pModule->xOpen(pVtab, &pVtabCursor);
76156 int flags; /* xOpen flags */
124398 /* Make sure the SQLITE_OPEN_URI flag is set to indicate to the VFS xOpen
125568 ** The zFilename argument is the filename pointer passed into the xOpen()
125599 const char *zFilename, /* Filename as passed to xOpen */
126349 ** To tokenize an input buffer, the sqlite3_tokenizer_module.xOpen()
126400 int (*xOpen)(
126408 ** method exactly once for each successful call to xOpen().
126829 ** the xOpen method. Cursors are destroyed using the xClose method.
128468 ** Implementation of xOpen method.
130564 /* xOpen */ fts3OpenMethod,
132883 ** xOpen - Open a cursor.
133192 fts3auxOpenMethod, /* xOpen */
133360 rc = pModule->xOpen(pTokenizer, z, n, &pCsr);
135845 zErr = "error in xOpen()";
136535 ** xOpen - Open a cursor.
136630 rc = pTab->pMod->xOpen(pTab->pTok, pCsr->zInput, nByte, &pCsr->pCsr);
136705 fts3tokOpenMethod, /* xOpen */
145523 ** Rtree virtual table module xOpen method.
147655 rtreeOpen, /* xOpen - open a cursor */
148897 icuOpen, /* xOpen */