Home
last modified time | relevance | path

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

/third_party/sqlite/src/
Dsqlite3.c8503 typedef struct sqlite3_str sqlite3_str; typedef
19411 struct sqlite3_str { struct
19412 sqlite3 *db; /* Optional database for lookaside. Can be NULL */
19413 char *zText; /* The string collected so far */
19414 u32 nAlloc; /* Amount of space allocated in zText */
19415 u32 mxAlloc; /* Maximum allowed allocation. 0 for no malloc usage */
19416 u32 nChar; /* Length of the string so far */
19417 u8 accError; /* SQLITE_NOMEM or SQLITE_TOOBIG */
19418 u8 printfFlags; /* SQLITE_PRINTF flags below */
/third_party/sqlite/include/
Dsqlite3.h8194 typedef struct sqlite3_str sqlite3_str; typedef