OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MEM_Null
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/third_party/sqlite/src/src/
vdbemem.c
106
pMem->flags =
MEM_Null
;
197
** A
MEM_Null
value will never be passed to this function. This function is
251
assert( (pMem->flags &
MEM_Null
)!=0 || pFunc==pMem->u.pDef );
254
ctx.s.flags =
MEM_Null
;
469
if( (pMem->flags & (MEM_Int|MEM_Real|
MEM_Null
))==0 ){
480
assert( (pMem->flags & (MEM_Int|MEM_Real|
MEM_Null
))!=0 );
497
MemSetTypeFlag(pMem,
MEM_Null
);
562
pMem->flags =
MEM_Null
;
668
pFrom->flags =
MEM_Null
;
791
if( combined_flags&
MEM_Null
){
[
all
...]
vdbe.c
168
if( flags &
MEM_Null
){
424
if( p->flags &
MEM_Null
){
805
if( (pIn3->flags &
MEM_Null
)==0 ) break;
960
pOut->flags =
MEM_Null
;
[
all
...]
vdbetrace.c
117
if( pVar->flags &
MEM_Null
){
vdbeapi.c
126
p->aVar[i].flags =
MEM_Null
;
289
if( pCtx->s.flags &
MEM_Null
){
569
pMem->flags =
MEM_Null
;
707
= {0, "", (double)0, {0}, 0,
MEM_Null
, SQLITE_NULL, 0,
1001
pVar->flags =
MEM_Null
;
[
all
...]
vdbeaux.c
910
assert( (pMem->flags &
MEM_Null
)==0 );
1087
p->flags =
MEM_Null
;
[
all
...]
vdbeInt.h
149
u16 flags; /* Some combination of
MEM_Null
, MEM_Str, MEM_Dyn, etc. */
163
** If the
MEM_Null
flag is set, then the value is an SQL NULL value.
172
#define
MEM_Null
0x0001 /* Value is NULL */
/external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c
[
all
...]
Completed in 151 milliseconds