Home | History | Annotate | Download | only in orig

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);
24300 ** method was called. If xOpen() is called from a different process id,
29806 int flags, /* Flags passed as 4th argument to xOpen() */
29882 sqlite3_vfs *pVfs, /* The VFS for which this is the xOpen method */
30092 if( isAutoProxy && (zPath!=NULL) && (!noLock) && pVfs->xOpen ){
31336 ** pFile is a file that has been opened by a prior xOpen call. dbPath
31701 unixOpen, /* xOpen */ \
37436 winOpen, /* xOpen */
37461 winOpen, /* xOpen */
40924 u32 vfsFlags; /* Flags for sqlite3_vfs.xOpen() */
43757 ** The flags passed to the VFS layer xOpen() call are those specified
44754 ** of the xOpen() method of the supplied VFS when opening files.
44769 int vfsFlags, /* flags passed through to sqlite3_vfs.xOpen() */
44911 int fout = 0; /* VFS flags returned by xOpen() */
53292 int vfsFlags /* Flags passed through to sqlite3_vfs.xOpen() */
74023 rc = pModule->xOpen(pVtab, &pVtabCursor);
76136 int flags; /* xOpen flags */
124378 /* Make sure the SQLITE_OPEN_URI flag is set to indicate to the VFS xOpen
125548 ** The zFilename argument is the filename pointer passed into the xOpen()
125579 const char *zFilename, /* Filename as passed to xOpen */
126329 ** To tokenize an input buffer, the sqlite3_tokenizer_module.xOpen()
126380 int (*xOpen)(
126388 ** method exactly once for each successful call to xOpen().
126809 ** the xOpen method. Cursors are destroyed using the xClose method.
128448 ** Implementation of xOpen method.
130544 /* xOpen */ fts3OpenMethod,
132851 ** xOpen - Open a cursor.
133160 fts3auxOpenMethod, /* xOpen */
133328 rc = pModule->xOpen(pTokenizer, z, n, &pCsr);
135813 zErr = "error in xOpen()";
136503 ** xOpen - Open a cursor.
136598 rc = pTab->pMod->xOpen(pTab->pTok, pCsr->zInput, nByte, &pCsr->pCsr);
136673 fts3tokOpenMethod, /* xOpen */
145491 ** Rtree virtual table module xOpen method.
147623 rtreeOpen, /* xOpen - open a cursor */
148865 icuOpen, /* xOpen */