Searched refs:appendText (Results 1 – 2 of 2) sorted by relevance
| /freebsd/contrib/sqlite3/ |
| H A D | shell.c | 24512 static void appendText(ShellText *p, const char *zAppend, char quote){ in appendText() function 24594 appendText(&s, zSchema, cQuote); in shellFakeSchema() 24595 appendText(&s, ".", 0); in shellFakeSchema() 24598 appendText(&s, zName, cQuote); in shellFakeSchema() 24602 appendText(&s, zDiv, 0); in shellFakeSchema() 24606 appendText(&s, zCol, cQuote); in shellFakeSchema() 24608 appendText(&s, ")", 0); in shellFakeSchema() 25861 if( p->n ) appendText(p, "|", 0); in captureOutputCallback() 25863 if( i ) appendText(p, ",", 0); in captureOutputCallback() 25864 if( azArg[i] ) appendText(p, azArg[i], 0); in captureOutputCallback() [all …]
|
| H A D | sqlite3.c | 192208 static char *appendText(char *p, const char *z){ function 192241 p = appendText(p, zDatabase); 192243 p = appendText(p, azParam[i]); 192246 p = appendText(p, zJournal); 192247 p = appendText(p, zWal);
|