Home
last modified time | relevance | path

Searched refs:zCmd (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/public-domain/sqlite/dist/
H A Dshell.c18411 char *zCmd = 0; in editFunc() local
18468 zCmd = sqlite3_mprintf("%s \"%s\"", zEditor, zTempFile); in editFunc()
18469 if( zCmd==0 ){ in editFunc()
18473 rc = system(zCmd); in editFunc()
18474 sqlite3_free(zCmd); in editFunc()
23017 char *zCmd; in output_reset() local
23018 zCmd = sqlite3_mprintf("%s %s", zXdgOpenCmd, p->zTempFile); in output_reset()
23019 if( system(zCmd) ){ in output_reset()
23020 eputf("Failed: [%s]\n", zCmd); in output_reset()
23027 sqlite3_free(zCmd); in output_reset()
[all …]
H A Dsqlite3.c233940 const char *zCmd, /* Special command to parse */
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 ){
[all …]