Searched refs:zCmd (Results 1 – 4 of 4) sorted by relevance
/external/sqlite/dist/orig/ |
D | shell.c | 8095 char *zCmd = 0; in editFunc() local 8146 zCmd = sqlite3_mprintf("%s \"%s\"", zEditor, zTempFile); in editFunc() 8147 if( zCmd==0 ){ in editFunc() 8151 rc = system(zCmd); in editFunc() 8152 sqlite3_free(zCmd); in editFunc() 11015 char *zCmd; in output_reset() local 11016 zCmd = sqlite3_mprintf("%s %s", zXdgOpenCmd, p->zTempFile); in output_reset() 11017 if( system(zCmd) ){ in output_reset() 11018 utf8_printf(stderr, "Failed: [%s]\n", zCmd); in output_reset() 11020 sqlite3_free(zCmd); in output_reset() [all …]
|
D | sqlite3.c | 190158 const char *zCmd, /* Special command to parse */ 190163 int nCmd = (int)strlen(zCmd); 190164 if( sqlite3_strnicmp("prefix", zCmd, nCmd)==0 ){ 190217 if( sqlite3_strnicmp("tokenize", zCmd, nCmd)==0 ){ 190261 if( sqlite3_strnicmp("content", zCmd, nCmd)==0 ){ 190276 if( sqlite3_strnicmp("content_rowid", zCmd, nCmd)==0 ){ 190286 if( sqlite3_strnicmp("columnsize", zCmd, nCmd)==0 ){ 190296 if( sqlite3_strnicmp("detail", zCmd, nCmd)==0 ){ 190310 *pzErr = sqlite3_mprintf("unrecognized option: \"%.*s\"", nCmd, zCmd); 202143 const char *zCmd, /* Text inserted into table-name column */ [all …]
|
/external/sqlite/dist/ |
D | shell.c | 8101 char *zCmd = 0; in editFunc() local 8152 zCmd = sqlite3_mprintf("%s \"%s\"", zEditor, zTempFile); in editFunc() 8153 if( zCmd==0 ){ in editFunc() 8157 rc = system(zCmd); in editFunc() 8158 sqlite3_free(zCmd); in editFunc() 11038 char *zCmd; in output_reset() local 11039 zCmd = sqlite3_mprintf("%s %s", zXdgOpenCmd, p->zTempFile); in output_reset() 11040 if( system(zCmd) ){ in output_reset() 11041 utf8_printf(stderr, "Failed: [%s]\n", zCmd); in output_reset() 11043 sqlite3_free(zCmd); in output_reset() [all …]
|
D | sqlite3.c | 190186 const char *zCmd, /* Special command to parse */ 190191 int nCmd = (int)strlen(zCmd); 190192 if( sqlite3_strnicmp("prefix", zCmd, nCmd)==0 ){ 190245 if( sqlite3_strnicmp("tokenize", zCmd, nCmd)==0 ){ 190289 if( sqlite3_strnicmp("content", zCmd, nCmd)==0 ){ 190304 if( sqlite3_strnicmp("content_rowid", zCmd, nCmd)==0 ){ 190314 if( sqlite3_strnicmp("columnsize", zCmd, nCmd)==0 ){ 190324 if( sqlite3_strnicmp("detail", zCmd, nCmd)==0 ){ 190338 *pzErr = sqlite3_mprintf("unrecognized option: \"%.*s\"", nCmd, zCmd); 202171 const char *zCmd, /* Text inserted into table-name column */ [all …]
|