Home
last modified time | relevance | path

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

/freebsd-12-stable/crypto/heimdal/lib/sqlite/
Dsqlite3.c7898 typedef struct StrAccum StrAccum; typedef
11050 struct StrAccum { struct
11051 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 …]
/freebsd-12-stable/contrib/sqlite3/
Dsqlite3.c15197 typedef struct sqlite3_str StrAccum; /* Internal alias for sqlite3_str */ typedef