Searched refs:appendText (Results 1 – 2 of 2) sorted by relevance
/freebsd/contrib/sqlite3/ |
H A D | shell.c | 1934 static void appendText(ShellText *p, const char *zAppend, char quote){ in appendText() function 2013 appendText(&s, zSchema, cQuote); in shellFakeSchema() 2014 appendText(&s, ".", 0); in shellFakeSchema() 2017 appendText(&s, zName, cQuote); in shellFakeSchema() 2021 appendText(&s, zDiv, 0); in shellFakeSchema() 2025 appendText(&s, zCol, cQuote); in shellFakeSchema() 2027 appendText(&s, ")", 0); in shellFakeSchema() 20903 if( p->n ) appendText(p, "|", 0); in captureOutputCallback() 20905 if( i ) appendText(p, ",", 0); in captureOutputCallback() 20906 if( azArg[i] ) appendText(p, azArg[i], 0); in captureOutputCallback() [all …]
|
H A D | sqlite3.c | 184476 static char *appendText(char *p, const char *z){ 184509 p = appendText(p, zDatabase); 184511 p = appendText(p, azParam[i]); 184514 p = appendText(p, zJournal); 184515 p = appendText(p, zWal);
|