Lines Matching refs:pStr
7069 sqlite3_str *pStr; in re_bytecode_func() local
7087 pStr = sqlite3_str_new(0); in re_bytecode_func()
7088 if( pStr==0 ) goto re_bytecode_func_err; in re_bytecode_func()
7090 sqlite3_str_appendf(pStr, "INIT "); in re_bytecode_func()
7092 sqlite3_str_appendf(pStr, "%02x", pRe->zInit[i]); in re_bytecode_func()
7094 sqlite3_str_appendf(pStr, "\n"); in re_bytecode_func()
7097 sqlite3_str_appendf(pStr, "%-8s %4d\n", in re_bytecode_func()
7100 n = sqlite3_str_length(pStr); in re_bytecode_func()
7101 z = sqlite3_str_finish(pStr); in re_bytecode_func()
21098 sqlite3_str *pStr = sqlite3_str_new(0); in save_err_msg() local
21099 sqlite3_str_appendf(pStr, "%s, %s", zPhase, sqlite3_errmsg(db)); in save_err_msg()
21101 sqlite3_str_appendf(pStr, " (%d)", rc); in save_err_msg()
21105 sqlite3_str_appendall(pStr, zContext); in save_err_msg()
21108 zErr = sqlite3_str_finish(pStr); in save_err_msg()
21835 sqlite3_str *pStr = sqlite3_str_new(0); in quoted_column() local
21838 sqlite3_str_append(pStr, "x'", 2); in quoted_column()
21840 sqlite3_str_appendf(pStr, "%02x", a[j]); in quoted_column()
21842 sqlite3_str_append(pStr, "'", 1); in quoted_column()
21843 return sqlite3_str_finish(pStr); in quoted_column()