Searched refs:nCmd (Results 1 – 2 of 2) sorted by relevance
| /netbsd/src/external/public-domain/sqlite/dist/ |
| D | shell.c | 26890 int nCmd = nArg - 1; in do_meta_command() local 26901 nCmd--; in do_meta_command() 26913 if( nCmd!=2 ) goto session_syntax_error; in do_meta_command() 26935 if( nCmd!=2 ) goto session_syntax_error; in do_meta_command() 26966 if( nCmd!=1 ) goto session_syntax_error; in do_meta_command() 26978 if( nCmd>2 ) goto session_syntax_error; in do_meta_command() 26979 ii = nCmd==1 ? -1 : booleanValue(azCmd[1]); in do_meta_command() 26991 if( nCmd<2 ) goto session_syntax_error; in do_meta_command() 26997 nByte = sizeof(pSession->azFilter[0])*(nCmd-1); in do_meta_command() 27000 for(ii=1; ii<nCmd; ii++){ in do_meta_command() [all …]
|
| D | sqlite3.c | 233945 int nCmd = (int)strlen(zCmd); 233946 if( sqlite3_strnicmp("prefix", zCmd, nCmd)==0 ){ 233999 if( sqlite3_strnicmp("tokenize", zCmd, nCmd)==0 ){ 234043 if( sqlite3_strnicmp("content", zCmd, nCmd)==0 ){ 234058 if( sqlite3_strnicmp("contentless_delete", zCmd, nCmd)==0 ){ 234068 if( sqlite3_strnicmp("content_rowid", zCmd, nCmd)==0 ){ 234078 if( sqlite3_strnicmp("columnsize", zCmd, nCmd)==0 ){ 234088 if( sqlite3_strnicmp("detail", zCmd, nCmd)==0 ){ 234102 if( sqlite3_strnicmp("tokendata", zCmd, nCmd)==0 ){ 234112 *pzErr = sqlite3_mprintf("unrecognized option: \"%.*s\"", nCmd, zCmd);
|