Lines Matching defs:pStr
4547 sqlite3_str *pStr;
4564 pStr = sqlite3_str_new(0);
4565 if( pStr==0 ) goto re_bytecode_func_err;
4567 sqlite3_str_appendf(pStr, "INIT ");
4569 sqlite3_str_appendf(pStr, "%02x", pRe->zInit[i]);
4571 sqlite3_str_appendf(pStr, "\n");
4574 sqlite3_str_appendf(pStr, "%-8s %4d\n",
4577 n = sqlite3_str_length(pStr);
4578 z = sqlite3_str_finish(pStr);
17149 sqlite3_str *pStr = sqlite3_str_new(0);
17150 sqlite3_str_appendf(pStr, "%s, %s", zPhase, sqlite3_errmsg(db));
17152 sqlite3_str_appendf(pStr, " (%d)", rc);
17156 sqlite3_str_appendall(pStr, zContext);
17159 zErr = sqlite3_str_finish(pStr);
17806 sqlite3_str *pStr = sqlite3_str_new(0);
17809 sqlite3_str_append(pStr, "x'", 2);
17811 sqlite3_str_appendf(pStr, "%02x", a[j]);
17813 sqlite3_str_append(pStr, "'", 1);
17814 return sqlite3_str_finish(pStr);