Lines Matching refs:zCmd
225643 const char *zCmd, /* Special command to parse */
225648 int nCmd = (int)strlen(zCmd);
225649 if( sqlite3_strnicmp("prefix", zCmd, nCmd)==0 ){
225702 if( sqlite3_strnicmp("tokenize", zCmd, nCmd)==0 ){
225746 if( sqlite3_strnicmp("content", zCmd, nCmd)==0 ){
225761 if( sqlite3_strnicmp("content_rowid", zCmd, nCmd)==0 ){
225771 if( sqlite3_strnicmp("columnsize", zCmd, nCmd)==0 ){
225781 if( sqlite3_strnicmp("detail", zCmd, nCmd)==0 ){
225795 *pzErr = sqlite3_mprintf("unrecognized option: \"%.*s\"", nCmd, zCmd);
238347 const char *zCmd, /* Text inserted into table-name column */
238354 if( 0==sqlite3_stricmp("delete-all", zCmd) ){
238364 }else if( 0==sqlite3_stricmp("rebuild", zCmd) ){
238373 }else if( 0==sqlite3_stricmp("optimize", zCmd) ){
238375 }else if( 0==sqlite3_stricmp("merge", zCmd) ){
238378 }else if( 0==sqlite3_stricmp("integrity-check", zCmd) ){
238382 }else if( 0==sqlite3_stricmp("prefix-index", zCmd) ){
238388 rc = sqlite3Fts5ConfigSetValue(pTab->p.pConfig, zCmd, pVal, &bError);
238394 rc = sqlite3Fts5StorageConfigValue(pTab->pStorage, zCmd, pVal, 0);