Searched defs:StrAccum (Results 1 – 4 of 4) sorted by relevance
626 typedef struct StrAccum StrAccum; typedef2391 struct StrAccum { struct2392 sqlite3 *db; /* Optional database for lookaside. Can be NULL */2393 char *zBase; /* A base allocation. Not from malloc. */2394 char *zText; /* The string collected so far */2395 int nChar; /* Length of the string so far */2396 int nAlloc; /* Amount of space allocated in zText */2397 int mxAlloc; /* Maximum allowed string length */2398 u8 mallocFailed; /* Becomes true if any memory allocation fails */2399 u8 useMalloc; /* 0: none, 1: sqlite3DbMalloc, 2: sqlite3_malloc */[all …]
7606 typedef struct StrAccum StrAccum; typedef10736 struct StrAccum { struct10737 sqlite3 *db; /* Optional database for lookaside. Can be NULL */10738 char *zBase; /* A base allocation. Not from malloc. */10739 char *zText; /* The string collected so far */10740 int nChar; /* Length of the string so far */10741 int nAlloc; /* Amount of space allocated in zText */10742 int mxAlloc; /* Maximum allowed string length */10743 u8 mallocFailed; /* Becomes true if any memory allocation fails */10744 u8 useMalloc; /* 0: none, 1: sqlite3DbMalloc, 2: sqlite3_malloc */[all …]
8811 typedef struct StrAccum StrAccum; typedef12152 struct StrAccum { struct12153 sqlite3 *db; /* Optional database for lookaside. Can be NULL */12154 char *zBase; /* A base allocation. Not from malloc. */12155 char *zText; /* The string collected so far */12156 int nChar; /* Length of the string so far */12157 int nAlloc; /* Amount of space allocated in zText */12158 int mxAlloc; /* Maximum allowed string length */12159 u8 useMalloc; /* 0: none, 1: sqlite3DbMalloc, 2: sqlite3_malloc */12160 u8 accError; /* STRACCUM_NOMEM or STRACCUM_TOOBIG */