Lines Matching refs:pStr
7852 sqlite3_str *pStr; in re_bytecode_func() local
7870 pStr = sqlite3_str_new(0); in re_bytecode_func()
7871 if( pStr==0 ) goto re_bytecode_func_err; in re_bytecode_func()
7873 sqlite3_str_appendf(pStr, "INIT "); in re_bytecode_func()
7875 sqlite3_str_appendf(pStr, "%02x", pRe->zInit[i]); in re_bytecode_func()
7877 sqlite3_str_appendf(pStr, "\n"); in re_bytecode_func()
7880 sqlite3_str_appendf(pStr, "%-8s %4d\n", in re_bytecode_func()
7883 n = sqlite3_str_length(pStr); in re_bytecode_func()
7884 z = sqlite3_str_finish(pStr); in re_bytecode_func()
23518 sqlite3_str *pStr = sqlite3_str_new(0); in save_err_msg() local
23519 sqlite3_str_appendf(pStr, "%s, %s", zPhase, sqlite3_errmsg(db)); in save_err_msg()
23521 sqlite3_str_appendf(pStr, " (%d)", rc); in save_err_msg()
23525 sqlite3_str_appendall(pStr, zContext); in save_err_msg()
23528 zErr = sqlite3_str_finish(pStr); in save_err_msg()
24354 sqlite3_str *pStr = sqlite3_str_new(0); in quoted_column() local
24357 sqlite3_str_append(pStr, "x'", 2); in quoted_column()
24359 sqlite3_str_appendf(pStr, "%02x", a[j]); in quoted_column()
24361 sqlite3_str_append(pStr, "'", 1); in quoted_column()
24362 return sqlite3_str_finish(pStr); in quoted_column()