Searched refs:appendText (Results 1 – 2 of 2) sorted by relevance
/freebsd/contrib/sqlite3/ |
H A D | shell.c | 1486 static void appendText(ShellText *p, const char *zAppend, char quote){ in appendText() function 1565 appendText(&s, zSchema, cQuote); in shellFakeSchema() 1566 appendText(&s, ".", 0); in shellFakeSchema() 1569 appendText(&s, zName, cQuote); in shellFakeSchema() 1573 appendText(&s, zDiv, 0); in shellFakeSchema() 1577 appendText(&s, zCol, cQuote); in shellFakeSchema() 1579 appendText(&s, ")", 0); in shellFakeSchema() 23322 if( p->n ) appendText(p, "|", 0); in captureOutputCallback() 23324 if( i ) appendText(p, ",", 0); in captureOutputCallback() 23325 if( azArg[i] ) appendText(p, azArg[i], 0); in captureOutputCallback() [all …]
|
H A D | sqlite3.c | 187337 static char *appendText(char *p, const char *z){ 187370 p = appendText(p, zDatabase); 187372 p = appendText(p, azParam[i]); 187375 p = appendText(p, zJournal); 187376 p = appendText(p, zWal);
|