Searched refs:MEM_Ephem (Results 1 - 9 of 9) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
H A Dvdbemem.c74 ** It also clears MEM_Ephem and MEM_Static. If the preserve flag is
81 ((pMem->flags&MEM_Ephem) ? 1 : 0) +
108 pMem->flags &= ~(MEM_Ephem|MEM_Static);
619 ** and flags gets srcType (either MEM_Ephem or MEM_Static).
627 pTo->flags &= ~(MEM_Dyn|MEM_Static|MEM_Ephem);
628 assert( srcType==MEM_Ephem || srcType==MEM_Static );
647 pTo->flags |= MEM_Ephem;
863 sqlite3VdbeMemShallowCopy(&c1, pMem1, MEM_Ephem);
864 sqlite3VdbeMemShallowCopy(&c2, pMem2, MEM_Ephem);
926 pMem->flags = MEM_Blob|MEM_Ephem;
[all...]
H A DvdbeInt.h190 #define MEM_Ephem 0x1000 /* Mem.z points to an ephemeral string */ macro
H A Dvdbe.c140 ** An ephemeral string value (signified by the MEM_Ephem flag) contains
148 ** converts an MEM_Ephem string into an MEM_Dyn string.
151 if( ((P)->flags&MEM_Ephem)!=0 \
352 assert( (f & (MEM_Static|MEM_Ephem))==0 );
355 assert( (f & (MEM_Dyn|MEM_Ephem))==0 );
356 }else if( f & MEM_Ephem ){
389 assert( (f & (MEM_Static|MEM_Ephem))==0 );
392 assert( (f & (MEM_Dyn|MEM_Ephem))==0 );
393 }else if( f & MEM_Ephem ){
1046 sqlite3VdbeMemShallowCopy(pOut, pIn1, MEM_Ephem);
[all...]
H A Dutf.c322 pMem->flags &= ~(MEM_Static|MEM_Dyn|MEM_Ephem);
H A Dvdbeapi.c802 pOut->flags |= MEM_Ephem;
H A Dvdbeaux.c2780 pMem->flags = MEM_Str | MEM_Ephem;
2782 pMem->flags = MEM_Blob | MEM_Ephem;
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c12404 #define MEM_Ephem 0x1000 /* Mem.z points to an ephemeral string */ macro
19981 pMem->flags &= ~(MEM_Static|MEM_Dyn|MEM_Ephem);
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c14076 #define MEM_Ephem 0x1000 /* Mem.z points to an ephemeral string */ macro
22024 pMem->flags &= ~(MEM_Static|MEM_Dyn|MEM_Ephem);
[all...]
/external/sqlite/dist/
H A Dsqlite3.c14076 #define MEM_Ephem 0x1000 /* Mem.z points to an ephemeral string */ macro
22024 pMem->flags &= ~(MEM_Static|MEM_Dyn|MEM_Ephem);
[all...]

Completed in 599 milliseconds