Lines Matching refs:xOpen

1079 ** in the 4th parameter to the [sqlite3_vfs.xOpen] method.
1204 ** Every file opened by the [sqlite3_vfs.xOpen] method populates an
1210 ** If the [sqlite3_vfs.xOpen] method sets the sqlite3_file.pMethods element
1212 ** may be invoked even if the [sqlite3_vfs.xOpen] reported that it failed. The
1213 ** only way to prevent a call to xClose following a failed [sqlite3_vfs.xOpen]
1214 ** is for the [sqlite3_vfs.xOpen] to set the sqlite3_file.pMethods element
1548 ** [[sqlite3_vfs.xOpen]]
1549 ** ^SQLite guarantees that the zFilename parameter to xOpen
1560 ** If the zFilename parameter to xOpen is a NULL pointer then xOpen
1565 ** The flags argument to xOpen() includes all bits set in
1569 ** If xOpen() opens a file read-only then it sets *pOutFlags to
1572 ** ^(SQLite will also add one of the following flags to the xOpen()
1595 ** SQLite might also add one of the following flags to the xOpen method:
1618 ** argument to xOpen. The xOpen method does not have to
1620 ** the xOpen method must set the sqlite3_file.pMethods to either
1621 ** a valid [sqlite3_io_methods] object or to NULL. xOpen must do
1623 ** element will be valid after xOpen returns regardless of the success
1624 ** or failure of the xOpen call.
1679 int (*xOpen)(sqlite3_vfs*, const char *zName, sqlite3_file*,
3377 ** If F is the database filename pointer passed into the xOpen() method of
3378 ** a VFS implementation when the flags parameter to xOpen() has one or
3405 ** is not a database file pathname pointer that SQLite passed into the xOpen
5746 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
5936 ** [sqlite3_module.xOpen | xOpen] method of the module and are destroyed
10043 unsigned int openFlags; /* Flags passed to sqlite3_vfs.xOpen() */
15275 rc = pVfs->xOpen(pVfs, zPath, pFile, flags & 0x87f7f, pFlagsOut);
28559 int flags, /* Flags passed as 4th argument to xOpen() */
28635 sqlite3_vfs *pVfs, /* The VFS for which this is the xOpen method */
28829 if( isAutoProxy && (zPath!=NULL) && (!noLock) && pVfs->xOpen ){
30069 ** pFile is a file that has been opened by a prior xOpen call. dbPath
30434 unixOpen, /* xOpen */ \
35582 winOpen, /* xOpen */
39001 u32 vfsFlags; /* Flags for sqlite3_vfs.xOpen() */
41826 ** The flags passed to the VFS layer xOpen() call are those specified
42816 ** of the xOpen() method of the supplied VFS when opening files.
42831 int vfsFlags, /* flags passed through to sqlite3_vfs.xOpen() */
42973 int fout = 0; /* VFS flags returned by xOpen() */
51287 int vfsFlags /* Flags passed through to sqlite3_vfs.xOpen() */
71205 rc = u.cm.pModule->xOpen(u.cm.pVtab, &u.cm.pVtabCursor);
73252 int flags; /* xOpen flags */
116950 /* Make sure the SQLITE_OPEN_URI flag is set to indicate to the VFS xOpen
118043 ** The zFilename argument is the filename pointer passed into the xOpen()
118074 const char *zFilename, /* Filename as passed to xOpen */
118824 ** To tokenize an input buffer, the sqlite3_tokenizer_module.xOpen()
118875 int (*xOpen)(
118883 ** method exactly once for each successful call to xOpen().
119285 ** the xOpen method. Cursors are destroyed using the xClose method.
120790 ** Implementation of xOpen method.
122809 /* xOpen */ fts3OpenMethod,
124851 ** xOpen - Open a cursor.
125113 fts3auxOpenMethod, /* xOpen */
125281 rc = pModule->xOpen(pTokenizer, z, n, &pCsr);
127745 zErr = "error in xOpen()";
128435 ** xOpen - Open a cursor.
128530 rc = pTab->pMod->xOpen(pTab->pTok, pCsr->zInput, nByte, &pCsr->pCsr);
128605 fts3tokOpenMethod, /* xOpen */
137145 ** Rtree virtual table module xOpen method.
139248 rtreeOpen, /* xOpen - open a cursor */
140439 icuOpen, /* xOpen */