Home
last modified time | relevance | path

Searched refs:zOpen (Results 1 – 4 of 4) sorted by relevance

/sqlite-3.40.0/ext/fts5/
H A Dfts5_aux.c117 const char *zOpen; /* Opening highlight */ member
173 fts5HighlightAppend(&rc, p, p->zOpen, -1); in fts5HighlightCb()
179 fts5HighlightAppend(&rc, p, p->zOpen, -1); in fts5HighlightCb()
222 ctx.zOpen = (const char*)sqlite3_value_text(apVal[1]); in fts5HighlightFunction()
407 ctx.zOpen = fts5ValueToText(apVal[1]); in fts5SnippetFunction()
/sqlite-3.40.0/ext/rbu/
H A Dsqlite3rbu.c5055 const char *zOpen = zName; in rbuVfsOpen() local
5078 zOpen = sqlite3_db_filename(pDb->pRbu->dbRbu, "main"); in rbuVfsOpen()
5079 zOpen = sqlite3_filename_wal(zOpen); in rbuVfsOpen()
5081 nOpen = strlen(zOpen); in rbuVfsOpen()
5082 ((char*)zOpen)[nOpen-3] = 'o'; in rbuVfsOpen()
5098 zOpen = 0; in rbuVfsOpen()
5102 rc = pRealVfs->xOpen(pRealVfs, zOpen, pFd->pReal, oflags, pOutFlags); in rbuVfsOpen()
/sqlite-3.40.0/src/
H A Dmain.c3171 char *zOpen = 0; /* Filename argument to pass to BtreeOpen() */ in openDatabase() local
3390 rc = sqlite3ParseUri(zVfs, zFilename, &flags, &db->pVfs, &zOpen, &zErrMsg); in openDatabase()
3406 rc = sqlite3BtreeOpen(db->pVfs, zOpen, db, &db->aDb[0].pBt, 0, in openDatabase()
3508 sqlite3_free_filename(zOpen); in openDatabase()
/sqlite-3.40.0/ext/fts3/
H A Dfts3_snippet.c724 const char *zOpen, /* String inserted before highlighted term */ in fts3SnippetText() argument
821 if( rc==SQLITE_OK && isHighlight ) rc = fts3StringAppend(pOut, zOpen, -1); in fts3SnippetText()