HomeSort by relevance Sort by last modified time
    Searched refs:xOpen (Results 1 - 25 of 25) sorted by null

  /external/chromium_org/third_party/sqlite/src/ext/fts1/
fts1_tokenizer.h 48 ** 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,
tokenizer.h 48 ** 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,
fulltext.c     [all...]
fts1.c     [all...]
  /external/chromium_org/third_party/sqlite/src/ext/fts2/
fts2_tokenizer.h 42 ** To tokenize an input buffer, the sqlite3_tokenizer_module.xOpen()
93 int (*xOpen)(
101 ** method exactly once for each successful call to xOpen().
fts2_tokenizer.c 190 if( SQLITE_OK!=p->xOpen(pTokenizer, zInput, nInput, &pCsr) ){
191 zErr = "error in xOpen()";
fts2.c     [all...]
  /external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3_tokenizer.h 42 ** To tokenize an input buffer, the sqlite3_tokenizer_module.xOpen()
93 int (*xOpen)(
101 ** method exactly once for each successful call to xOpen().
fts3_expr.c 147 rc = pModule->xOpen(pTokenizer, z, n, &pCursor);
227 rc = pModule->xOpen(pTokenizer, zInput, nInput, &pCursor);
fts3_snippet.c 621 rc = pMod->xOpen(pTab->pTokenizer, zDoc, nDoc, &pC);
685 rc = pMod->xOpen(pTab->pTokenizer, zDoc, nDoc, &pC);
    [all...]
fts3_write.c 545 rc = pModule->xOpen(pTokenizer, zText, -1, &pCsr);
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
test8.c 48 ** xBestIndex xOpen xFilter xNext
549 ** Echo virtual table module xOpen method.
553 if( simulateVtabError((echo_vtab *)pVTab, "xOpen") ){
    [all...]
test_osinst.c 25 ** 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(pVfs, p->zFile, p->pFd, flags, &flags)
    [all...]
test_quota.c 281 ** 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;
os.c 139 rc = pVfs->xOpen(pVfs, zPath, pFile, flags & 0x87f3f, pFlagsOut);
sqlite.h.in 459 ** 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.
    [all...]
test_multiplex.c 212 *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;
    [all...]
test_vfstrace.c 496 rc = pRoot->xOpen(pRoot, zName, p->pReal, flags, pOutFlags);
497 vfstrace_printf(pInfo, "%s.xOpen(%s,flags=0x%x)",
741 pNew->xOpen = vfstraceOpen;
test_onefile.c 191 fsOpen, /* xOpen */
629 rc = pParent->xOpen(pParent, zName, pReal->pFile, real_flags, pOutFlags);
os_unix.c     [all...]
vdbe.c     [all...]
  /external/chromium_org/third_party/sqlite/src/tool/
speedtest8inst1.c 90 rc = pVfs->xOpen(pVfs, zFile, p, flags, &flags);
  /external/chromium_org/third_party/sqlite/src/ext/async/
sqlite3async.c 94 ** xOpen
994 ** passed to this modules xOpen() method. This function returns true
    [all...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.h 464 ** 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.
    [all...]
sqlite3.c     [all...]

Completed in 509 milliseconds