Lines Matching refs:zCmd
239495 const char *zCmd, /* Special command to parse */
239500 int nCmd = (int)strlen(zCmd);
239502 if( sqlite3_strnicmp("prefix", zCmd, nCmd)==0 ){
239555 if( sqlite3_strnicmp("tokenize", zCmd, nCmd)==0 ){
239596 if( sqlite3_strnicmp("content", zCmd, nCmd)==0 ){
239611 if( sqlite3_strnicmp("contentless_delete", zCmd, nCmd)==0 ){
239621 if( sqlite3_strnicmp("contentless_unindexed", zCmd, nCmd)==0 ){
239631 if( sqlite3_strnicmp("content_rowid", zCmd, nCmd)==0 ){
239641 if( sqlite3_strnicmp("columnsize", zCmd, nCmd)==0 ){
239651 if( sqlite3_strnicmp("locale", zCmd, nCmd)==0 ){
239661 if( sqlite3_strnicmp("detail", zCmd, nCmd)==0 ){
239675 if( sqlite3_strnicmp("tokendata", zCmd, nCmd)==0 ){
239685 *pzErr = sqlite3_mprintf("unrecognized option: \"%.*s\"", nCmd, zCmd);
255453 const char *zCmd, /* Text inserted into table-name column */
255461 if( 0==sqlite3_stricmp("delete-all", zCmd) ){
255472 }else if( 0==sqlite3_stricmp("rebuild", zCmd) ){
255482 }else if( 0==sqlite3_stricmp("optimize", zCmd) ){
255484 }else if( 0==sqlite3_stricmp("merge", zCmd) ){
255487 }else if( 0==sqlite3_stricmp("integrity-check", zCmd) ){
255491 }else if( 0==sqlite3_stricmp("prefix-index", zCmd) ){
255494 }else if( 0==sqlite3_stricmp("flush", zCmd) ){
255502 rc = sqlite3Fts5ConfigSetValue(pTab->p.pConfig, zCmd, pVal, &bError);
255508 rc = sqlite3Fts5StorageConfigValue(pTab->pStorage, zCmd, pVal, 0);