Searched refs:zCmd (Results 1 – 2 of 2) sorted by relevance
/freebsd/contrib/sqlite3/ |
H A D | shell.c | 19674 char *zCmd = 0; in editFunc() local 19731 zCmd = sqlite3_mprintf("%s \"%s\"", zEditor, zTempFile); in editFunc() 19732 if( zCmd==0 ){ in editFunc() 19736 rc = system(zCmd); in editFunc() 19737 sqlite3_free(zCmd); in editFunc() 24281 char *zCmd; in output_reset() local 24282 zCmd = sqlite3_mprintf("%s %s", zXdgOpenCmd, p->zTempFile); in output_reset() 24283 if( system(zCmd) ){ in output_reset() 24284 eputf("Failed: [%s]\n", zCmd); in output_reset() 24291 sqlite3_free(zCmd); in output_reset() [all …]
|
H A D | sqlite3.c | 235868 const char *zCmd, /* Special command to parse */ 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 ){ [all …]
|