Home
last modified time | relevance | path

Searched defs:StrAccum (Results 1 – 1 of 1) sorted by relevance

/external/sqlite/dist/
Dsqlite3.c6549 typedef struct StrAccum StrAccum; typedef
8947 struct StrAccum { struct
8948 char *zBase; /* A base allocation. Not from malloc. */
8949 char *zText; /* The string collected so far */
8950 int nChar; /* Length of the string so far */
8951 int nAlloc; /* Amount of space allocated in zText */
8952 int mxAlloc; /* Maximum allowed string length */
8953 u8 mallocFailed; /* Becomes true if any memory allocation fails */
8954 u8 useMalloc; /* True if zText is enlargable using realloc */
8955 u8 tooBig; /* Becomes true if string size exceeds limits */