Searched defs:StrAccum (Results 1 – 2 of 2) sorted by relevance
7898 typedef struct StrAccum StrAccum; typedef11050 struct StrAccum { struct11051 sqlite3 *db; /* Optional database for lookaside. Can be NULL */11052 char *zBase; /* A base allocation. Not from malloc. */11053 char *zText; /* The string collected so far */11054 int nChar; /* Length of the string so far */11055 int nAlloc; /* Amount of space allocated in zText */11056 int mxAlloc; /* Maximum allowed string length */11057 u8 mallocFailed; /* Becomes true if any memory allocation fails */11058 u8 useMalloc; /* 0: none, 1: sqlite3DbMalloc, 2: sqlite3_malloc */[all …]
15197 typedef struct sqlite3_str StrAccum; /* Internal alias for sqlite3_str */ typedef