| /sqlite-3.40.0/src/ |
| H A D | vdbetrace.c | 94 sqlite3_str_append(&out, "-- ", 3); in sqlite3VdbeExpandSql() 96 sqlite3_str_append(&out, zStart, (int)(zRawSql-zStart)); in sqlite3VdbeExpandSql() 99 sqlite3_str_append(&out, zRawSql, sqlite3Strlen30(zRawSql)); in sqlite3VdbeExpandSql() 104 sqlite3_str_append(&out, zRawSql, n); in sqlite3VdbeExpandSql() 130 sqlite3_str_append(&out, "NULL", 4); in sqlite3VdbeExpandSql() 171 sqlite3_str_append(&out, "x'", 2); in sqlite3VdbeExpandSql() 179 sqlite3_str_append(&out, "'", 1); in sqlite3VdbeExpandSql()
|
| H A D | tokenize.c | 728 sqlite3_str_append(pStr, " ", 1); 769 sqlite3_str_append(pStr, " NULL", 5); 779 sqlite3_str_append(pStr, "?", 1); 788 sqlite3_str_append(pStr, "(", 1); 795 sqlite3_str_append(pStr, "?,?,?", 5); 799 sqlite3_str_append(pStr, ")", 1); 812 sqlite3_str_append(pStr, "?", 1); 819 sqlite3_str_append(pStr, zId, nId); 826 sqlite3_str_append(pStr, zSql+i, n); 841 sqlite3_str_append(pStr, zSql+i, n); [all …]
|
| H A D | printf.c | 271 sqlite3_str_append(pAccum, bufpt, (int)(fmt - bufpt)); in sqlite3_str_vappendf() 275 sqlite3_str_append(pAccum, "%", 1); in sqlite3_str_vappendf() 745 sqlite3_str_append(pAccum, buf, length); in sqlite3_str_vappendf() 865 sqlite3_str_append(pAccum, (const char*)pToken->z, pToken->n); in sqlite3_str_vappendf() 882 sqlite3_str_append(pAccum, ".", 1); in sqlite3_str_vappendf() 915 sqlite3_str_append(pAccum, bufpt, length); in sqlite3_str_vappendf() 918 sqlite3_str_append(pAccum, bufpt, length); in sqlite3_str_vappendf() 1051 void sqlite3_str_append(sqlite3_str *p, const char *z, int N){ in sqlite3_str_append() function 1069 sqlite3_str_append(p, z, sqlite3Strlen30(z)); in sqlite3_str_appendall()
|
| H A D | wherecode.c | 56 if( nTerm>1 ) sqlite3_str_append(pStr, "(", 1); in explainAppendTerm() 58 if( i ) sqlite3_str_append(pStr, ",", 1); in explainAppendTerm() 61 if( nTerm>1 ) sqlite3_str_append(pStr, ")", 1); in explainAppendTerm() 63 sqlite3_str_append(pStr, zOp, 1); in explainAppendTerm() 65 if( nTerm>1 ) sqlite3_str_append(pStr, "(", 1); in explainAppendTerm() 67 if( i ) sqlite3_str_append(pStr, ",", 1); in explainAppendTerm() 68 sqlite3_str_append(pStr, "?", 1); in explainAppendTerm() 70 if( nTerm>1 ) sqlite3_str_append(pStr, ")", 1); in explainAppendTerm() 94 sqlite3_str_append(pStr, " (", 2); in explainIndexRange() 109 sqlite3_str_append(pStr, ")", 1); in explainIndexRange() [all …]
|
| H A D | treeview.c | 65 sqlite3_str_append(&acc, p->bLine[i] ? "| " : " ", 4); in sqlite3TreeViewLine() 67 sqlite3_str_append(&acc, p->bLine[i] ? "|-- " : "'-- ", 4); in sqlite3TreeViewLine() 74 sqlite3_str_append(&acc, "\n", 1); in sqlite3TreeViewLine()
|
| H A D | date.c | 1165 if( j<i ) sqlite3_str_append(&sRes, zFmt+j, (int)(i-j)); in strftimeFunc() 1241 if( j<i ) sqlite3_str_append(&sRes, zFmt+j, (int)(i-j)); in strftimeFunc()
|
| H A D | func.c | 1110 sqlite3_str_append(pStr, "NULL", 4); in sqlite3QuoteValue() 1801 sqlite3_str_append(&pGCC->str, zSep, nSep); in groupConcatStep() 1838 if( zVal ) sqlite3_str_append(&pGCC->str, zVal, nVal); in groupConcatStep()
|
| H A D | loadext.c | 447 sqlite3_str_append,
|
| H A D | sqlite3ext.h | 640 #define sqlite3_str_append sqlite3_api->str_append macro
|
| H A D | vdbeaux.c | 1735 sqlite3_str_append(p, ",", 1); in displayP4Expr() 1738 sqlite3_str_append(p, ")", 1); in displayP4Expr() 1769 sqlite3_str_append(&x, ")", 1); in sqlite3VdbeDisplayP4() 1839 sqlite3_str_append(&x, "]", 1); in sqlite3VdbeDisplayP4()
|
| H A D | build.c | 5355 if( j ) sqlite3_str_append(&errMsg, ", ", 2); in sqlite3UniqueConstraint() 5357 sqlite3_str_append(&errMsg, ".", 1); in sqlite3UniqueConstraint()
|
| H A D | pragma.c | 2595 sqlite3_str_append(&acc, ")", 1); in pragmaVtabConnect()
|
| H A D | btree.c | 10164 sqlite3_str_append(&pCheck->errMsg, "\n", 1); in checkAppendMsg()
|
| H A D | shell.c.in | 3405 sqlite3_str_append(pStr, "x'", 2); 3409 sqlite3_str_append(pStr, "'", 1);
|
| H A D | sqlite.h.in | 8198 ** ^The [sqlite3_str_append(X,S,N)] method appends exactly N bytes from string S 8220 void sqlite3_str_append(sqlite3_str*, const char *zIn, int N);
|
| /sqlite-3.40.0/ext/misc/ |
| H A D | qpvtab.c | 308 sqlite3_str_append(pStr, "'", 1); in qpvtabStrAppendValue() 312 sqlite3_str_append(pStr, &c, 1); in qpvtabStrAppendValue() 313 if( c=='\'' ) sqlite3_str_append(pStr, &c, 1); in qpvtabStrAppendValue() 315 sqlite3_str_append(pStr, "'", 1); in qpvtabStrAppendValue() 322 sqlite3_str_append(pStr, "x'", 2); in qpvtabStrAppendValue() 326 sqlite3_str_append(pStr, "'", 1); in qpvtabStrAppendValue() 375 sqlite3_str_append(pStr, "\n", 1); in qpvtabBestIndex()
|
| /sqlite-3.40.0/test/ |
| H A D | fuzzinvariants.c | 266 sqlite3_str_append(pTest, zIn, (int)nIn); in fuzz_invariant_sql() 267 sqlite3_str_append(pTest, ")", 1); in fuzz_invariant_sql()
|
| /sqlite-3.40.0/ext/rtree/ |
| H A D | rtree.c | 3609 if( ii ) sqlite3_str_append(p, ",", 1); in rtreeSqlInit() 3891 if( ii>0 ) sqlite3_str_append(pOut, " ", 1); in rtreenode() 3900 sqlite3_str_append(pOut, "}", 1); in rtreenode()
|
| H A D | geopoly.c | 388 sqlite3_str_append(x, "[", 1); in geopolyJsonFunc()
|