Searched refs:MEM_Static (Results 1 - 10 of 10) 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
82 ((pMem->flags&MEM_Static) ? 1 : 0)
108 pMem->flags &= ~(MEM_Ephem|MEM_Static);
619 ** and flags gets srcType (either MEM_Ephem or MEM_Static).
626 if( (pFrom->flags&MEM_Static)==0 ){
627 pTo->flags &= ~(MEM_Dyn|MEM_Static|MEM_Ephem);
628 assert( srcType==MEM_Ephem || srcType==MEM_Static );
646 if( 0==(pFrom->flags&MEM_Static) ){
726 ** management (one of MEM_Dyn or MEM_Static).
748 flags |= ((xDel==SQLITE_STATIC)?MEM_Static
[all...]
H A Dtest5.c78 val.flags = MEM_Str|MEM_Term|MEM_Static;
H A DvdbeInt.h189 #define MEM_Static 0x0800 /* Mem.z points to a static string */ macro
H A Dvdbe.c352 assert( (f & (MEM_Static|MEM_Ephem))==0 );
353 }else if( f & MEM_Static ){
358 assert( (f & (MEM_Static|MEM_Dyn))==0 );
389 assert( (f & (MEM_Static|MEM_Ephem))==0 );
390 }else if( f & MEM_Static ){
395 assert( (f & (MEM_Static|MEM_Dyn))==0 );
925 pOut->flags |= MEM_Static;
947 pOut->flags = MEM_Str|MEM_Static|MEM_Term;
993 sqlite3VdbeMemShallowCopy(pOut, pVar, MEM_Static);
2337 sqlite3VdbeMemShallowCopy(pDest, pOp->p4.pMem, MEM_Static);
[all...]
H A Dutf.c322 pMem->flags &= ~(MEM_Static|MEM_Dyn|MEM_Ephem);
H A Dvdbeapi.c800 if( pOut->flags&MEM_Static ){
801 pOut->flags &= ~MEM_Static;
H A Dvdbeaux.c1212 pMem->flags = MEM_Static|MEM_Str|MEM_Term;
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c12418 #define MEM_Static 0x0800 /* Mem.z points to a static string */ macro
19996 pMem->flags &= ~(MEM_Static|MEM_Dyn|MEM_Ephem);
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c13026 #define MEM_Static 0x0800 /* Mem.z points to a static string */ macro
20805 pMem->flags &= ~(MEM_Static|MEM_Dyn|MEM_Ephem);
[all...]
/external/sqlite/dist/
H A Dsqlite3.c13026 #define MEM_Static 0x0800 /* Mem.z points to a static string */ macro
20805 pMem->flags &= ~(MEM_Static|MEM_Dyn|MEM_Ephem);
[all...]

Completed in 456 milliseconds