Searched refs:nCmd (Results 1 – 2 of 2) sorted by relevance
/freebsd/contrib/sqlite3/ |
H A D | shell.c | 28260 int nCmd = nArg - 1; in do_meta_command() local 28271 nCmd--; in do_meta_command() 28283 if( nCmd!=2 ) goto session_syntax_error; in do_meta_command() 28305 if( nCmd!=2 ) goto session_syntax_error; in do_meta_command() 28336 if( nCmd!=1 ) goto session_syntax_error; in do_meta_command() 28348 if( nCmd>2 ) goto session_syntax_error; in do_meta_command() 28349 ii = nCmd==1 ? -1 : booleanValue(azCmd[1]); in do_meta_command() 28361 if( nCmd<2 ) goto session_syntax_error; in do_meta_command() 28367 nByte = sizeof(pSession->azFilter[0])*(nCmd-1); in do_meta_command() 28370 for(ii=1; ii<nCmd; ii++){ in do_meta_command() [all …]
|
H A D | sqlite3.c | 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);
|