OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MEM_Static
(Results
1 - 8
of
8
) 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
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
:MEM_Dyn)
[
all
...]
test5.c
78
val.flags = MEM_Str|MEM_Term|
MEM_Static
;
vdbeInt.h
189
#define
MEM_Static
0x0800 /* Mem.z points to a static string */
vdbe.c
352
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
);
[
all
...]
utf.c
322
pMem->flags &= ~(
MEM_Static
|MEM_Dyn|MEM_Ephem);
vdbeapi.c
800
if( pOut->flags&
MEM_Static
){
801
pOut->flags &= ~
MEM_Static
;
[
all
...]
vdbeaux.c
[
all
...]
/external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c
[
all
...]
Completed in 55 milliseconds