• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/sqlite-3.6.22/

Lines Matching refs:xOpen

956 ** in the 4th parameter to the xOpen method of the
1058 ** Every file opened by the [sqlite3_vfs] xOpen method populates an
1064 ** If the xOpen method sets the sqlite3_file.pMethods element
1066 ** may be invoked even if the xOpen reported that it failed. The
1067 ** only way to prevent a call to xClose following a failed xOpen
1068 ** is for the xOpen to set the sqlite3_file.pMethods element to NULL.
1226 ** SQLite will guarantee that the zFilename parameter to xOpen
1233 ** If the zFilename parameter is xOpen is a NULL pointer then xOpen
1238 ** The flags argument to xOpen() includes all bits set in
1242 ** If xOpen() opens a file read-only then it sets *pOutFlags to
1245 ** SQLite will also add one of the following flags to the xOpen()
1267 ** SQLite might also add one of the following flags to the xOpen method:
1289 ** argument to xOpen. The xOpen method does not have to
1291 ** the xOpen method must set the sqlite3_file.pMethods to either
1292 ** a valid [sqlite3_io_methods] object or to NULL. xOpen must do
1294 ** element will be valid after xOpen returns regardless of the success
1295 ** or failure of the xOpen call.
1329 int (*xOpen)(sqlite3_vfs*, const char *zName, sqlite3_file*,
4684 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
4859 ** [sqlite3_module.xOpen | xOpen] method of the module and are destroyed
8293 int openFlags; /* Flags passed to sqlite3_vfs.xOpen() */
12144 rc = pVfs->xOpen(pVfs, zPath, pFile, flags & 0x7f1f, pFlagsOut);
21238 os2Open, /* xOpen */
25331 sqlite3_vfs *pVfs, /* The VFS for which this is the xOpen method */
25484 if( zPath!=NULL && !noLock && pVfs->xOpen ){
26218 ** It is important that the xOpen member of the VFS object passed to
26223 dummyVfs.xOpen = 0;
26492 ** pFile is a file that has been opened by a prior xOpen call. dbPath
26819 unixOpen, /* xOpen */ \
29007 winOpen, /* xOpen */
31514 u32 vfsFlags; /* Flags for sqlite3_vfs.xOpen() */
33453 ** The flags passed to the VFS layer xOpen() call are those specified
34310 ** of the xOpen() method of the supplied VFS when opening files.
34325 int vfsFlags, /* flags passed through to sqlite3_vfs.xOpen() */
34444 int fout = 0; /* VFS flags returned by xOpen() */
39244 int vfsFlags /* Flags passed through to sqlite3_vfs.xOpen() */
57535 rc = u.cf.pModule->xOpen(u.cf.pVtab, &u.cf.pVtabCursor);
58450 int flags; /* xOpen flags */
98210 ** To tokenize an input buffer, the sqlite3_tokenizer_module.xOpen()
98261 int (*xOpen)(
98269 ** method exactly once for each successful call to xOpen().
98554 ** the xOpen method. Cursors are destroyed using the xClose method.
99206 ** Implementation of xOpen method.
100777 /* xOpen */ fts3OpenMethod,
101037 rc = pModule->xOpen(pTokenizer, z, n, &pCursor);
101118 rc = pModule->xOpen(pTokenizer, zInput, nInput, &pCursor);
103151 if( SQLITE_OK!=p->xOpen(pTokenizer, zInput, nInput, &pCsr) ){
103152 zErr = "error in xOpen()";
104024 rc = pModule->xOpen(pTokenizer, zText, -1, &pCsr);
106162 rc = pTModule->xOpen(pTokenizer, zDoc, nDoc, &pTCursor);
106982 rc = pMod->xOpen(pTab->pTokenizer, zDoc, nDoc, &pC);
107937 ** Rtree virtual table module xOpen method.
109772 rtreeOpen, /* xOpen - open a cursor */
110843 icuOpen, /* xOpen */