Searched refs:pStr (Results 1 – 2 of 2) sorted by relevance
| /src/contrib/sqlite3/ |
| H A D | sqlite3.c | 24312 SQLITE_PRIVATE void sqlite3VdbeMemPrettyPrint(Mem *pMem, StrAccum *pStr); 33907 sqlite3_str *pStr = sqlite3_str_new(0); in sqlite3TreeViewExpr() local 33909 sqlite3_str_appendf(pStr, "IN flags=0x%x", pExpr->flags); in sqlite3TreeViewExpr() 33910 if( pExpr->iTable ) sqlite3_str_appendf(pStr, " iTable=%d",pExpr->iTable); in sqlite3TreeViewExpr() 33912 sqlite3_str_appendf(pStr, " subrtn(%d,%d)", in sqlite3TreeViewExpr() 33915 z = sqlite3_str_finish(pStr); in sqlite3TreeViewExpr() 85982 DblquoteStr *pStr = sqlite3DbMallocRawNN(db, local 85983 sizeof(*pStr)+n+1-sizeof(pStr->z)); 85984 if( pStr ){ 85985 pStr->pNextStr = p->pDblStr; [all …]
|
| H A D | shell.c | 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 [all …]
|