Lines Matching refs:zCmd
218561 const char *zCmd, /* Special command to parse */
218566 int nCmd = (int)strlen(zCmd);
218567 if( sqlite3_strnicmp("prefix", zCmd, nCmd)==0 ){
218620 if( sqlite3_strnicmp("tokenize", zCmd, nCmd)==0 ){
218664 if( sqlite3_strnicmp("content", zCmd, nCmd)==0 ){
218679 if( sqlite3_strnicmp("content_rowid", zCmd, nCmd)==0 ){
218689 if( sqlite3_strnicmp("columnsize", zCmd, nCmd)==0 ){
218699 if( sqlite3_strnicmp("detail", zCmd, nCmd)==0 ){
218713 *pzErr = sqlite3_mprintf("unrecognized option: \"%.*s\"", nCmd, zCmd);
231259 const char *zCmd, /* Text inserted into table-name column */
231266 if( 0==sqlite3_stricmp("delete-all", zCmd) ){
231276 }else if( 0==sqlite3_stricmp("rebuild", zCmd) ){
231285 }else if( 0==sqlite3_stricmp("optimize", zCmd) ){
231287 }else if( 0==sqlite3_stricmp("merge", zCmd) ){
231290 }else if( 0==sqlite3_stricmp("integrity-check", zCmd) ){
231294 }else if( 0==sqlite3_stricmp("prefix-index", zCmd) ){
231300 rc = sqlite3Fts5ConfigSetValue(pTab->p.pConfig, zCmd, pVal, &bError);
231306 rc = sqlite3Fts5StorageConfigValue(pTab->pStorage, zCmd, pVal, 0);