HomeSort by relevance Sort by last modified time
    Searched refs:MEM_Ephem (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/third_party/sqlite/src/src/
vdbemem.c 74 ** 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...]
vdbeInt.h 190 #define MEM_Ephem 0x1000 /* Mem.z points to an ephemeral string */
vdbe.c 140 ** 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 ){
    [all...]
utf.c 322 pMem->flags &= ~(MEM_Static|MEM_Dyn|MEM_Ephem);
vdbeapi.c 802 pOut->flags |= MEM_Ephem;
    [all...]
vdbeaux.c     [all...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c     [all...]

Completed in 55 milliseconds