Lines Matching refs:pStr
6275 sqlite3_str *pStr; in re_bytecode_func() local
6293 pStr = sqlite3_str_new(0); in re_bytecode_func()
6294 if( pStr==0 ) goto re_bytecode_func_err; in re_bytecode_func()
6296 sqlite3_str_appendf(pStr, "INIT "); in re_bytecode_func()
6298 sqlite3_str_appendf(pStr, "%02x", pRe->zInit[i]); in re_bytecode_func()
6300 sqlite3_str_appendf(pStr, "\n"); in re_bytecode_func()
6303 sqlite3_str_appendf(pStr, "%-8s %4d\n", in re_bytecode_func()
6306 n = sqlite3_str_length(pStr); in re_bytecode_func()
6307 z = sqlite3_str_finish(pStr); in re_bytecode_func()
19062 sqlite3_str *pStr = sqlite3_str_new(0); in save_err_msg() local
19063 sqlite3_str_appendf(pStr, "%s, %s", zPhase, sqlite3_errmsg(db)); in save_err_msg()
19065 sqlite3_str_appendf(pStr, " (%d)", rc); in save_err_msg()
19069 sqlite3_str_appendall(pStr, zContext); in save_err_msg()
19072 zErr = sqlite3_str_finish(pStr); in save_err_msg()
19811 sqlite3_str *pStr = sqlite3_str_new(0); in quoted_column() local
19814 sqlite3_str_append(pStr, "x'", 2); in quoted_column()
19816 sqlite3_str_appendf(pStr, "%02x", a[j]); in quoted_column()
19818 sqlite3_str_append(pStr, "'", 1); in quoted_column()
19819 return sqlite3_str_finish(pStr); in quoted_column()