Home | History | Annotate | Download | only in orig

Lines Matching refs:xOpen

1021 ** in the 4th parameter to the [sqlite3_vfs.xOpen] method.
1145 ** Every file opened by the [sqlite3_vfs.xOpen] method populates an
1151 ** If the [sqlite3_vfs.xOpen] method sets the sqlite3_file.pMethods element
1153 ** may be invoked even if the [sqlite3_vfs.xOpen] reported that it failed. The
1154 ** only way to prevent a call to xClose following a failed [sqlite3_vfs.xOpen]
1155 ** is for the [sqlite3_vfs.xOpen] to set the sqlite3_file.pMethods element
1451 ** [[sqlite3_vfs.xOpen]]
1452 ** ^SQLite guarantees that the zFilename parameter to xOpen
1463 ** If the zFilename parameter to xOpen is a NULL pointer then xOpen
1468 ** The flags argument to xOpen() includes all bits set in
1472 ** If xOpen() opens a file read-only then it sets *pOutFlags to
1475 ** ^(SQLite will also add one of the following flags to the xOpen()
1498 ** SQLite might also add one of the following flags to the xOpen method:
1521 ** argument to xOpen. The xOpen method does not have to
1523 ** the xOpen method must set the sqlite3_file.pMethods to either
1524 xOpen must do
1526 ** element will be valid after xOpen returns regardless of the success
1527 ** or failure of the xOpen call.
1582 int (*xOpen)(sqlite3_vfs*, const char *zName, sqlite3_file*,
3220 ** If F is the database filename pointer passed into the xOpen() method of
3221 ** a VFS implementation when the flags parameter to xOpen() has one or
3248 ** is not a database file pathname pointer that SQLite passed into the xOpen
5509 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
5699 ** [sqlite3_module.xOpen | xOpen] method of the module and are destroyed
9722 unsigned int openFlags; /* Flags passed to sqlite3_vfs.xOpen() */
14829 rc = pVfs->xOpen(pVfs, zPath, pFile, flags & 0x87f7f, pFlagsOut);
24778 os2Open, /* xOpen */
29953 int flags, /* Flags passed as 4th argument to xOpen() */
30029 sqlite3_vfs *pVfs, /* The VFS for which this is the xOpen method */
30230 if( isAutoProxy && (zPath!=NULL) && (!noLock) && pVfs->xOpen ){
31465 ** pFile is a file that has been opened by a prior xOpen call. dbPath
31830 unixOpen, /* xOpen */ \
35773 winOpen, /* xOpen */
39090 u32 vfsFlags; /* Flags for sqlite3_vfs.xOpen() */
41828 ** The flags passed to the VFS layer xOpen() call are those specified
42718 ** of the xOpen() method of the supplied VFS when opening files.
42733 int vfsFlags, /* flags passed through to sqlite3_vfs.xOpen() */
42870 int fout = 0; /* VFS flags returned by xOpen() */
51069 int vfsFlags /* Flags passed through to sqlite3_vfs.xOpen() */
70679 rc = u.cl.pModule->xOpen(u.cl.pVtab, &u.cl.pVtabCursor);
72567 int flags; /* xOpen flags */
114332 /* Make sure the SQLITE_OPEN_URI flag is set to indicate to the VFS xOpen
115415 ** The zFilename argument is the filename pointer passed into the xOpen()
115446 const char *zFilename, /* Filename as passed to xOpen */
116196 ** To tokenize an input buffer, the sqlite3_tokenizer_module.xOpen()
116247 int (*xOpen)(
116255 ** method exactly once for each successful call to xOpen().
116646 ** the xOpen method. Cursors are destroyed using the xClose method.
118107 ** Implementation of xOpen method.
120094 /* xOpen */ fts3OpenMethod,
121998 ** xOpen - Open a cursor.
122260 fts3auxOpenMethod, /* xOpen */
122428 rc = pModule->xOpen(pTokenizer, z, n, &pCsr);
124624 zErr = "error in xOpen()";
130913 ** Rtree virtual table module xOpen method.
132976 rtreeOpen, /* xOpen - open a cursor */
134144 icuOpen, /* xOpen */