Home
last modified time | relevance | path

Searched refs:azDequote (Results 1 – 2 of 2) sorted by relevance

/sqlite-3.40.0/ext/fts3/
H A Dfts3_tokenize_vtab.c119 char **azDequote; in fts3tokDequoteArray() local
125 *pazDequote = azDequote = sqlite3_malloc64(sizeof(char *)*argc + nByte); in fts3tokDequoteArray()
126 if( azDequote==0 ){ in fts3tokDequoteArray()
129 char *pSpace = (char *)&azDequote[argc]; in fts3tokDequoteArray()
132 azDequote[i] = pSpace; in fts3tokDequoteArray()
170 char **azDequote = 0; in fts3tokConnectMethod() local
177 rc = fts3tokDequoteArray(nDequote, &argv[3], &azDequote); in fts3tokConnectMethod()
184 zModule = azDequote[0]; in fts3tokConnectMethod()
192 if( nDequote>1 ) azArg = (const char * const *)&azDequote[1]; in fts3tokConnectMethod()
214 sqlite3_free(azDequote); in fts3tokConnectMethod()
/sqlite-3.40.0/ext/fts5/
H A Dfts5_test_tok.c134 char **azDequote; in fts5tokDequoteArray() local
140 *pazDequote = azDequote = sqlite3_malloc64(sizeof(char *)*argc + nByte); in fts5tokDequoteArray()
141 if( azDequote==0 ){ in fts5tokDequoteArray()
144 char *pSpace = (char *)&azDequote[argc]; in fts5tokDequoteArray()
147 azDequote[i] = pSpace; in fts5tokDequoteArray()
184 char **azDequote = 0; in fts5tokConnectMethod() local
193 rc = fts5tokDequoteArray(nDequote, &argv[3], &azDequote); in fts5tokConnectMethod()
209 zModule = azDequote[0]; in fts5tokConnectMethod()
214 const char **azArg = (nDequote>1 ? (const char **)&azDequote[1] : 0); in fts5tokConnectMethod()
226 sqlite3_free(azDequote); in fts5tokConnectMethod()