Home
last modified time | relevance | path

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

/external/chromium_org/third_party/sqlite/src/src/
DsqliteInt.h626 typedef struct StrAccum StrAccum; typedef
2391 struct StrAccum { struct
2392 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 …]
/external/chromium_org/third_party/sqlite/amalgamation/
Dsqlite3.c7606 typedef struct StrAccum StrAccum; typedef
10736 struct StrAccum { struct
10737 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 …]
/external/sqlite/dist/
Dsqlite3.c8811 typedef struct StrAccum StrAccum; typedef
12152 struct StrAccum { struct
12153 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 */
/external/sqlite/dist/orig/
Dsqlite3.c8811 typedef struct StrAccum StrAccum; typedef
12152 struct StrAccum { struct
12153 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 */