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