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

  /external/chromium_org/third_party/sqlite/src/src/
vdbemem.c 73 ** This function sets the MEM_Dyn flag and clears any xDel callback.
80 (((pMem->flags&MEM_Dyn)&&pMem->xDel) ? 1 : 0) +
100 if( pMem->flags&MEM_Dyn && pMem->xDel ){
115 ** Make the given Mem object MEM_Dyn. In other words, make it so
259 assert( 0==(pMem->flags&MEM_Dyn) && !pMem->xDel );
275 testcase( p->flags & MEM_Dyn );
278 if( p->flags&(MEM_Agg|MEM_Dyn|MEM_RowSet|MEM_Frame) ){
283 }else if( p->flags&MEM_Dyn && p->xDel ){
627 pTo->flags &= ~(MEM_Dyn|MEM_Static|MEM_Ephem);
643 pTo->flags &= ~MEM_Dyn;
    [all...]
utf.c 322 pMem->flags &= ~(MEM_Static|MEM_Dyn|MEM_Ephem);
324 pMem->flags |= (MEM_Term|MEM_Dyn);
452 assert( (m.flags & MEM_Dyn)!=0 || db->mallocFailed );
vdbeInt.h 149 u16 flags; /* Some combination of MEM_Null, MEM_Str, MEM_Dyn, etc. */
188 #define MEM_Dyn 0x0400 /* Need to call sqliteFree() on Mem.z */
vdbe.c 148 ** converts an MEM_Ephem string into an MEM_Dyn string.
350 if( f & MEM_Dyn ){
355 assert( (f & (MEM_Dyn|MEM_Ephem))==0 );
358 assert( (f & (MEM_Static|MEM_Dyn))==0 );
387 if( f & MEM_Dyn ){
392 assert( (f & (MEM_Dyn|MEM_Ephem))==0 );
395 assert( (f & (MEM_Static|MEM_Dyn))==0 );
761 assert( (pIn1->flags & MEM_Dyn)==0 );
788 assert( (pIn1->flags & MEM_Dyn)==0 );
923 assert( pOut->flags & MEM_Dyn );
    [all...]
vdbeaux.c 1080 if( p->flags&(MEM_Agg|MEM_Dyn|MEM_Frame|MEM_RowSet) ){
    [all...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c     [all...]

Completed in 134 milliseconds