Searched refs:pAccum (Results 1 – 1 of 1) sorted by relevance
32509 static char *printfTempBuf(sqlite3_str *pAccum, sqlite3_int64 n){ in printfTempBuf() argument32511 if( pAccum->accError ) return 0; in printfTempBuf()32512 if( n>pAccum->nAlloc && n>pAccum->mxAlloc ){ in printfTempBuf()32513 sqlite3StrAccumSetError(pAccum, SQLITE_TOOBIG); in printfTempBuf()32518 sqlite3StrAccumSetError(pAccum, SQLITE_NOMEM); in printfTempBuf()32543 sqlite3_str *pAccum, /* Accumulate results here */ in sqlite3_str_vappendf() argument32580 assert( pAccum->nChar>0 || (pAccum->printfFlags&SQLITE_PRINTF_MALLOCED)==0 ); in sqlite3_str_vappendf()32583 if( (pAccum->printfFlags & SQLITE_PRINTF_SQLFUNC)!=0 ){ in sqlite3_str_vappendf()32600 sqlite3_str_append(pAccum, bufpt, (int)(fmt - bufpt)); in sqlite3_str_vappendf()32604 sqlite3_str_append(pAccum, "%", 1); in sqlite3_str_vappendf()[all …]