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

/external/chromium_org/third_party/sqlite/src/src/
H A Dvdbemem.c45 if( !(pMem->flags&MEM_Str) || pMem->enc==desiredEnc ){
128 if( (f&(MEM_Str|MEM_Blob)) && pMem->z!=pMem->zMalloc ){
178 if( (pMem->flags & MEM_Term)!=0 || (pMem->flags & MEM_Str)==0 ){
191 ** Add MEM_Str to the set of representations for the given Mem. Numbers
210 assert( !(fg&(MEM_Str|MEM_Blob)) );
234 pMem->flags |= MEM_Str|MEM_Term;
369 }else if( flags & (MEM_Str|MEM_Blob) ){
393 }else if( pMem->flags & (MEM_Str|MEM_Blob) ){
470 assert( (pMem->flags & (MEM_Blob|MEM_Str))!=0 );
481 pMem->flags &= ~(MEM_Str|MEM_Blo
[all...]
H A Dvdbetrace.c123 }else if( pVar->flags & MEM_Str ){
H A Dtest5.c78 val.flags = MEM_Str|MEM_Term|MEM_Static;
H A Dvdbe.c96 ** or MEM_Str that has been used by a VDBE opcode. The test procedures
104 if( (p->flags & (MEM_Str|MEM_Blob))!=0 && p->n>sqlite3_max_blobsize ){
136 if(((P)->flags&(MEM_Str|MEM_Blob))==0 && sqlite3VdbeMemStringify(P,enc)) \
177 else if( flags & MEM_Str ){
255 if( (pRec->flags&MEM_Str)==0 ) return;
295 if( 0==(pRec->flags&MEM_Str) && (pRec->flags&(MEM_Real|MEM_Int)) ){
384 }else if( f & MEM_Str ){
426 }else if( (p->flags & (MEM_Int|MEM_Str))==(MEM_Int|MEM_Str) ){
947 pOut->flags = MEM_Str|MEM_Stati
[all...]
H A Dutf.c213 assert( pMem->flags&MEM_Str );
451 assert( (m.flags & MEM_Str)!=0 || db->mallocFailed );
H A DvdbeInt.h149 u16 flags; /* Some combination of MEM_Null, MEM_Str, MEM_Dyn, etc. */
166 ** If the MEM_Str flag is set then Mem.z points at a string representation.
170 ** flags may coexist with the MEM_Str flag.
173 #define MEM_Str 0x0002 /* Value is a string */ macro
H A Dvdbeaux.c911 if( pMem->flags & MEM_Str ){
1212 pMem->flags = MEM_Static|MEM_Str|MEM_Term;
1259 pMem->flags = MEM_Dyn|MEM_Str|MEM_Term;
1276 pMem->flags = MEM_Dyn|MEM_Str|MEM_Term;
1285 pMem->flags = MEM_Str|MEM_Term;
2555 assert( pMem->db->mallocFailed || flags&(MEM_Str|MEM_Blob) );
2561 return ((n*2) + 12 + ((flags&MEM_Str)!=0));
2780 pMem->flags = MEM_Str | MEM_Ephem;
H A Dvdbeapi.c142 if( p->flags & (MEM_Blob|MEM_Str) ){
144 p->flags &= ~MEM_Str;
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c12363 u16 flags; /* Some combination of MEM_Null, MEM_Str, MEM_Dyn, etc. */
12380 ** If the MEM_Str flag is set then Mem.z points at a string representation.
12384 ** flags may coexist with the MEM_Str flag.
12387 #define MEM_Str 0x0002 /* Value is a string */ macro
19872 assert( pMem->flags&MEM_Str );
20110 assert( (m.flags & MEM_Str)!=0 || db->mallocFailed );
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c14033 u16 flags; /* Some combination of MEM_Null, MEM_Str, MEM_Dyn, etc. */
14049 ** If the MEM_Str flag is set then Mem.z points at a string representation.
14053 ** flags may coexist with the MEM_Str flag.
14056 #define MEM_Str 0x0002 /* Value is a string */ macro
21917 assert( pMem->flags&MEM_Str );
22153 assert( (m.flags & MEM_Str)!=0 || db->mallocFailed );
[all...]
/external/sqlite/dist/
H A Dsqlite3.c14033 u16 flags; /* Some combination of MEM_Null, MEM_Str, MEM_Dyn, etc. */
14049 ** If the MEM_Str flag is set then Mem.z points at a string representation.
14053 ** flags may coexist with the MEM_Str flag.
14056 #define MEM_Str 0x0002 /* Value is a string */ macro
21917 assert( pMem->flags&MEM_Str );
22153 assert( (m.flags & MEM_Str)!=0 || db->mallocFailed );
[all...]

Completed in 1478 milliseconds