Home
last modified time | relevance | path

Searched refs:pStr (Results 1 – 3 of 3) sorted by relevance

/freebsd-12-stable/contrib/sqlite3/
Dsqlite3.c23567 SQLITE_PRIVATE void sqlite3VdbeMemPrettyPrint(Mem *pMem, StrAccum *pStr);
32856 sqlite3_str *pStr = sqlite3_str_new(0); in sqlite3TreeViewExpr() local
32858 sqlite3_str_appendf(pStr, "IN flags=0x%x", pExpr->flags); in sqlite3TreeViewExpr()
32859 if( pExpr->iTable ) sqlite3_str_appendf(pStr, " iTable=%d",pExpr->iTable); in sqlite3TreeViewExpr()
32861 sqlite3_str_appendf(pStr, " subrtn(%d,%d)", in sqlite3TreeViewExpr()
32864 z = sqlite3_str_finish(pStr); in sqlite3TreeViewExpr()
84011 DblquoteStr *pStr = sqlite3DbMallocRawNN(db,
84012 sizeof(*pStr)+n+1-sizeof(pStr->z));
84013 if( pStr ){
84014 pStr->pNextStr = p->pDblStr;
[all …]
Dshell.c6275 sqlite3_str *pStr; in re_bytecode_func() local
6293 pStr = sqlite3_str_new(0); in re_bytecode_func()
6294 if( pStr==0 ) goto re_bytecode_func_err; in re_bytecode_func()
6296 sqlite3_str_appendf(pStr, "INIT "); in re_bytecode_func()
6298 sqlite3_str_appendf(pStr, "%02x", pRe->zInit[i]); in re_bytecode_func()
6300 sqlite3_str_appendf(pStr, "\n"); in re_bytecode_func()
6303 sqlite3_str_appendf(pStr, "%-8s %4d\n", in re_bytecode_func()
6306 n = sqlite3_str_length(pStr); in re_bytecode_func()
6307 z = sqlite3_str_finish(pStr); in re_bytecode_func()
19062 sqlite3_str *pStr = sqlite3_str_new(0); in save_err_msg() local
[all …]
/freebsd-12-stable/crypto/heimdal/lib/sqlite/
Dsqlite3.c103971 StrAccum *pStr, /* The text expression being built */
103976 if( iTerm ) sqlite3StrAccumAppend(pStr, " AND ", 5);
103977 sqlite3StrAccumAppend(pStr, zColumn, -1);
103978 sqlite3StrAccumAppend(pStr, zOp, 1);
103979 sqlite3StrAccumAppend(pStr, "?", 1);
126011 StrBuffer *pStr, /* Buffer to append to */
126023 if( pStr->n+nAppend+1>=pStr->nAlloc ){
126024 int nAlloc = pStr->nAlloc+nAppend+100;
126025 char *zNew = sqlite3_realloc(pStr->z, nAlloc);
126029 pStr->z = zNew;
[all …]