Lines Matching refs:zCmd
235868 const char *zCmd, /* Special command to parse */
235873 int nCmd = (int)strlen(zCmd);
235874 if( sqlite3_strnicmp("prefix", zCmd, nCmd)==0 ){
235927 if( sqlite3_strnicmp("tokenize", zCmd, nCmd)==0 ){
235971 if( sqlite3_strnicmp("content", zCmd, nCmd)==0 ){
235986 if( sqlite3_strnicmp("contentless_delete", zCmd, nCmd)==0 ){
235996 if( sqlite3_strnicmp("content_rowid", zCmd, nCmd)==0 ){
236006 if( sqlite3_strnicmp("columnsize", zCmd, nCmd)==0 ){
236016 if( sqlite3_strnicmp("detail", zCmd, nCmd)==0 ){
236030 if( sqlite3_strnicmp("tokendata", zCmd, nCmd)==0 ){
236040 *pzErr = sqlite3_mprintf("unrecognized option: \"%.*s\"", nCmd, zCmd);
251139 const char *zCmd, /* Text inserted into table-name column */
251147 if( 0==sqlite3_stricmp("delete-all", zCmd) ){
251158 }else if( 0==sqlite3_stricmp("rebuild", zCmd) ){
251168 }else if( 0==sqlite3_stricmp("optimize", zCmd) ){
251170 }else if( 0==sqlite3_stricmp("merge", zCmd) ){
251173 }else if( 0==sqlite3_stricmp("integrity-check", zCmd) ){
251177 }else if( 0==sqlite3_stricmp("prefix-index", zCmd) ){
251180 }else if( 0==sqlite3_stricmp("flush", zCmd) ){
251188 rc = sqlite3Fts5ConfigSetValue(pTab->p.pConfig, zCmd, pVal, &bError);
251194 rc = sqlite3Fts5StorageConfigValue(pTab->pStorage, zCmd, pVal, 0);