Searched refs:xOpen (Results 1 - 25 of 29) sorted by relevance

12

/external/chromium_org/third_party/sqlite/src/ext/fts1/
H A Dfts1_tokenizer.h48 ** Tokenize a particular input. Call xOpen() to prepare to
51 ** xOpen() must exist until the cursor is closed. The ppToken
59 int (*xOpen)(sqlite3_tokenizer *pTokenizer, member in struct:sqlite3_tokenizer_module
H A Dtokenizer.h48 ** Tokenize a particular input. Call xOpen() to prepare to
51 ** xOpen() must exist until the cursor is closed. The ppToken
59 int (*xOpen)(sqlite3_tokenizer *pTokenizer, member in struct:sqlite3_tokenizer_module
H A Dfulltext.c1144 int rc = pModule->xOpen(pTokenizer, zQuery, -1, &pCursor);
1295 int rc = pTokenizer->pModule->xOpen(pTokenizer, zText, -1, &pCursor);
H A Dfts1.c1102 ** call to xOpen. This structure is an instance of a cursor. It
2242 rc = pTModule->xOpen(pTokenizer, zDoc, nDoc, &pTCursor);
2683 int rc = pModule->xOpen(pTokenizer, pSegment, nSegment, &pCursor);
2979 rc = pTokenizer->pModule->xOpen(pTokenizer, zText, -1, &pCursor);
3315 /* xOpen */ fulltextOpen,
/external/chromium_org/third_party/sqlite/src/ext/fts2/
H A Dfts2_tokenizer.h42 ** To tokenize an input buffer, the sqlite3_tokenizer_module.xOpen()
93 int (*xOpen)( member in struct:sqlite3_tokenizer_module
101 ** method exactly once for each successful call to xOpen().
H A Dfts2_tokenizer.c190 if( SQLITE_OK!=p->xOpen(pTokenizer, zInput, nInput, &pCsr) ){
191 zErr = "error in xOpen()";
/external/chromium_org/third_party/sqlite/src/ext/fts3/
H A Dfts3_tokenizer.h42 ** To tokenize an input buffer, the sqlite3_tokenizer_module.xOpen()
93 int (*xOpen)( member in struct:sqlite3_tokenizer_module
101 ** method exactly once for each successful call to xOpen().
H A Dfts3_expr.c147 rc = pModule->xOpen(pTokenizer, z, n, &pCursor);
227 rc = pModule->xOpen(pTokenizer, zInput, nInput, &pCursor);
H A Dfts3_snippet.c621 rc = pMod->xOpen(pTab->pTokenizer, zDoc, nDoc, &pC);
685 rc = pMod->xOpen(pTab->pTokenizer, zDoc, nDoc, &pC);
1518 rc = pMod->xOpen(pTab->pTokenizer, zDoc, nDoc, &pC);
H A Dfts3_write.c545 rc = pModule->xOpen(pTokenizer, zText, -1, &pCsr);
2566 rc = pModule->xOpen(pT, zText, -1, &pTC);
/external/chromium_org/third_party/sqlite/src/src/
H A Dtest8.c48 ** xBestIndex xOpen xFilter xNext
549 ** Echo virtual table module xOpen method.
553 if( simulateVtabError((echo_vtab *)pVTab, "xOpen") ){
1246 echoOpen, /* xOpen - open a cursor */
H A Dtest_osinst.c25 ** Additionally, calls to the xAccess(), xOpen(), and xDelete()
63 ** event TEXT, // "xOpen", "xRead" etc.
181 vfslogOpen, /* xOpen */
490 rc = REALVFS(pVfs)->xOpen(REALVFS(pVfs), zName, p->pReal, flags, pOutFlags);
693 if( !pVfs || pVfs->xOpen!=vfslogOpen ){
736 rc = pParent->xOpen(pParent, zFile, p->pLog, flags, &flags);
752 if( !pVfs || pVfs->xOpen!=vfslogOpen ){
776 case OS_OPEN: zEvent = "xOpen"; break;
862 int flags; /* flags passed to pVfs->xOpen() */
888 rc = pVfs->xOpen(pVf
[all...]
H A Dtest_quota.c281 ** This is the xOpen method used for the "quota" VFS.
302 ** normal xOpen method.
305 return pOrigVfs->xOpen(pOrigVfs, zName, pConn, flags, pOutFlags);
309 ** use the normal xOpen method.
314 rc = pOrigVfs->xOpen(pOrigVfs, zName, pConn, flags, pOutFlags);
320 rc = pOrigVfs->xOpen(pOrigVfs, zName, pSubOpen, flags, pOutFlags);
588 gQuota.sThisVfs.xOpen = quotaOpen;
H A Dos.c139 rc = pVfs->xOpen(pVfs, zPath, pFile, flags & 0x87f3f, pFlagsOut);
H A Dsqlite.h.in459 ** in the 4th parameter to the xOpen method of the
578 ** Every file opened by the [sqlite3_vfs] xOpen method populates an
584 ** If the xOpen method sets the sqlite3_file.pMethods element
586 ** may be invoked even if the xOpen reported that it failed. The
587 ** only way to prevent a call to xClose following a failed xOpen
588 ** is for the xOpen to set the sqlite3_file.pMethods element to NULL.
789 ** ^SQLite guarantees that the zFilename parameter to xOpen
800 ** If the zFilename parameter to xOpen is a NULL pointer then xOpen
805 ** The flags argument to xOpen() include
[all...]
H A Dtest_multiplex.c212 *rc = pOrigVfs->xOpen(pOrigVfs, gMultiplex.zName, pSubOpen, pGroup->flags, pOutFlags);
285 ** This is the xOpen method used for the "multiplex" VFS.
921 gMultiplex.sThisVfs.xOpen = multiplexOpen;
H A Dtest_vfstrace.c496 rc = pRoot->xOpen(pRoot, zName, p->pReal, flags, pOutFlags);
497 vfstrace_printf(pInfo, "%s.xOpen(%s,flags=0x%x)",
741 pNew->xOpen = vfstraceOpen;
H A Dtest_onefile.c191 fsOpen, /* xOpen */
629 rc = pParent->xOpen(pParent, zName, pReal->pFile, real_flags, pOutFlags);
H A Dos_unix.c4817 int flags, /* Flags passed as 4th argument to xOpen() */
4947 sqlite3_vfs *pVfs, /* The VFS for which this is the xOpen method */
5105 if( isAutoProxy && (zPath!=NULL) && (!noLock) && pVfs->xOpen ){
6334 ** pFile is a file that has been opened by a prior xOpen call. dbPath
6699 unixOpen, /* xOpen */ \
H A Dvdbe.c5522 rc = pModule->xOpen(pVtab, &pVtabCursor);
/external/chromium_org/third_party/sqlite/src/tool/
H A Dspeedtest8inst1.c90 rc = pVfs->xOpen(pVfs, zFile, p, flags, &flags);
/external/chromium_org/third_party/sqlite/src/ext/async/
H A Dsqlite3async.c94 ** xOpen
994 ** passed to this modules xOpen() method. This function returns true
1079 rc = pVfs->xOpen(pVfs, pData->zName, pData->pBaseRead, flags, &flagsout);
1084 rc = pVfs->xOpen(pVfs, pData->zName, pData->pBaseWrite, flags, 0);
1102 rc = pVfs->xOpen(pVfs, pData->zName, pLock->pFile, flags, 0);
1305 asyncOpen, /* xOpen */
1517 rc = pVfs->xOpen(pVfs, pData->zName, pData->pBaseRead, flags, 0);
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.h464 ** in the 4th parameter to the xOpen method of the
583 ** Every file opened by the [sqlite3_vfs] xOpen method populates an
589 ** If the xOpen method sets the sqlite3_file.pMethods element
591 ** may be invoked even if the xOpen reported that it failed. The
592 ** only way to prevent a call to xClose following a failed xOpen
593 ** is for the xOpen to set the sqlite3_file.pMethods element to NULL.
794 ** ^SQLite guarantees that the zFilename parameter to xOpen
805 ** If the zFilename parameter to xOpen is a NULL pointer then xOpen
810 ** The flags argument to xOpen() include
923 int (*xOpen)(sqlite3_vfs*, const char *zName, sqlite3_file*, member in struct:sqlite3_vfs
4596 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor); member in struct:sqlite3_module
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.h506 ** in the 4th parameter to the [sqlite3_vfs.xOpen] method.
636 ** Every file opened by the [sqlite3_vfs.xOpen] method populates an
642 ** If the [sqlite3_vfs.xOpen] method sets the sqlite3_file.pMethods element
644 ** may be invoked even if the [sqlite3_vfs.xOpen] reported that it failed. The
645 ** only way to prevent a call to xClose following a failed [sqlite3_vfs.xOpen]
646 ** is for the [sqlite3_vfs.xOpen] to set the sqlite3_file.pMethods element
1020 ** [[sqlite3_vfs.xOpen]]
1021 ** ^SQLite guarantees that the zFilename parameter to xOpen
1032 ** If the zFilename parameter to xOpen is a NULL pointer then xOpen
1151 int (*xOpen)(sqlite3_vfs*, const char *zName, sqlite3_file*, member in struct:sqlite3_vfs
5315 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor); member in struct:sqlite3_module
[all...]
/external/sqlite/dist/
H A Dsqlite3.h506 ** in the 4th parameter to the [sqlite3_vfs.xOpen] method.
636 ** Every file opened by the [sqlite3_vfs.xOpen] method populates an
642 ** If the [sqlite3_vfs.xOpen] method sets the sqlite3_file.pMethods element
644 ** may be invoked even if the [sqlite3_vfs.xOpen] reported that it failed. The
645 ** only way to prevent a call to xClose following a failed [sqlite3_vfs.xOpen]
646 ** is for the [sqlite3_vfs.xOpen] to set the sqlite3_file.pMethods element
1020 ** [[sqlite3_vfs.xOpen]]
1021 ** ^SQLite guarantees that the zFilename parameter to xOpen
1032 ** If the zFilename parameter to xOpen is a NULL pointer then xOpen
1151 int (*xOpen)(sqlite3_vfs*, const char *zName, sqlite3_file*, member in struct:sqlite3_vfs
5315 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor); member in struct:sqlite3_module
[all...]

Completed in 1297 milliseconds

12