Lines Matching refs:out
83 StrAccum out; /* Accumulate the output here */ in sqlite3VdbeExpandSql() local
89 sqlite3StrAccumInit(&out, 0, 0, 0, db->aLimit[SQLITE_LIMIT_LENGTH]); in sqlite3VdbeExpandSql()
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()
132 sqlite3_str_appendf(&out, "%lld", pVar->u.i); in sqlite3VdbeExpandSql()
134 sqlite3_str_appendf(&out, "%!.15g", pVar->u.r); in sqlite3VdbeExpandSql()
144 out.accError = SQLITE_NOMEM; in sqlite3VdbeExpandSql()
145 out.nAlloc = 0; in sqlite3VdbeExpandSql()
157 sqlite3_str_appendf(&out, "'%.*q'", nOut, pVar->z); in sqlite3VdbeExpandSql()
160 sqlite3_str_appendf(&out, "/*+%d bytes*/", pVar->n-nOut); in sqlite3VdbeExpandSql()
167 sqlite3_str_appendf(&out, "zeroblob(%d)", pVar->u.nZero); in sqlite3VdbeExpandSql()
171 sqlite3_str_append(&out, "x'", 2); in sqlite3VdbeExpandSql()
177 sqlite3_str_appendf(&out, "%02x", pVar->z[i]&0xff); in sqlite3VdbeExpandSql()
179 sqlite3_str_append(&out, "'", 1); in sqlite3VdbeExpandSql()
182 sqlite3_str_appendf(&out, "/*+%d bytes*/", pVar->n-nOut); in sqlite3VdbeExpandSql()
188 if( out.accError ) sqlite3_str_reset(&out); in sqlite3VdbeExpandSql()
189 return sqlite3StrAccumFinish(&out); in sqlite3VdbeExpandSql()