Searched refs:MEM_Str (Results 1 - 2 of 2) sorted by relevance

/external/sqlite/dist/orig/
H A Dsqlite3.c15422 u16 flags; /* Some combination of MEM_Null, MEM_Str, MEM_Dyn, etc. */
15428 char *zMalloc; /* Space to hold MEM_Str or MEM_Blob if szMalloc>0 */
15451 ** If the MEM_Str flag is set then Mem.z points at a string representation.
15455 ** flags may coexist with the MEM_Str flag.
15458 #define MEM_Str 0x0002 /* Value is a string */ macro
24256 assert( pMem->flags&MEM_Str );
24364 pMem->flags = MEM_Str|MEM_Term|(c&MEM_AffMask);
24493 assert( (m.flags & MEM_Str)!=0 || db->mallocFailed );
[all...]
/external/sqlite/dist/
H A Dsqlite3.c15422 u16 flags; /* Some combination of MEM_Null, MEM_Str, MEM_Dyn, etc. */
15428 char *zMalloc; /* Space to hold MEM_Str or MEM_Blob if szMalloc>0 */
15451 ** If the MEM_Str flag is set then Mem.z points at a string representation.
15455 ** flags may coexist with the MEM_Str flag.
15458 #define MEM_Str 0x0002 /* Value is a string */ macro
24256 assert( pMem->flags&MEM_Str );
24364 pMem->flags = MEM_Str|MEM_Term|(c&MEM_AffMask);
24493 assert( (m.flags & MEM_Str)!=0 || db->mallocFailed );
[all...]

Completed in 1123 milliseconds