HomeSort by relevance Sort by last modified time
    Searched refs:mallocFailed (Results 1 - 25 of 37) sorted by null

1 2

  /external/chromium_org/third_party/sqlite/src/src/
prepare.c 28 if( !db->mallocFailed && (db->flags & SQLITE_RecoveryMode)==0 ){
37 pData->rc = db->mallocFailed ? SQLITE_NOMEM : SQLITE_CORRUPT_BKPT;
61 if( db->mallocFailed ){
94 db->mallocFailed = 1;
339 if( db->mallocFailed ){
368 db->mallocFailed = 1;
463 db->mallocFailed = 1;
543 assert( !db->mallocFailed );
610 if( db->mallocFailed ){
617 if( db->mallocFailed ){
    [all...]
utf.c 446 if( db->mallocFailed ){
450 assert( (m.flags & MEM_Term)!=0 || db->mallocFailed );
451 assert( (m.flags & MEM_Str)!=0 || db->mallocFailed );
452 assert( (m.flags & MEM_Dyn)!=0 || db->mallocFailed );
453 assert( m.z || db->mallocFailed );
464 ** If a malloc failure occurs, NULL is returned and the db.mallocFailed
474 assert( db->mallocFailed );
malloc.c 581 ** the mallocFailed flag in the connection pointer.
593 ** the mallocFailed flag in the connection pointer.
595 ** If db!=0 and db->mallocFailed is true (indicating a prior malloc
598 ** failing, it fails consistently until mallocFailed is reset.
616 if( db->mallocFailed ){
636 if( db && db->mallocFailed ){
642 db->mallocFailed = 1;
651 ** resize fails, set the mallocFailed flag in the connection object.
657 if( db->mallocFailed==0 ){
677 db->mallocFailed = 1
    [all...]
main.c 1013 ** is returned and the mallocFailed flag cleared.
    [all...]
tokenize.c 409 db->mallocFailed = 1;
420 while( !db->mallocFailed && zSql[i]!=0 ){
474 if( db->mallocFailed ){
legacy.c 94 db->mallocFailed = 1;
vdbeblob.c 254 assert( pBlob->pStmt || db->mallocFailed );
299 if( !db->mallocFailed ){
308 if( db->mallocFailed ){
316 if( rc==SQLITE_OK && db->mallocFailed==0 ){
trigger.c 126 if( !pTableName || db->mallocFailed ){
136 if( db->mallocFailed ) goto trigger_cleanup;
315 db->mallocFailed = 1;
355 ** If an OOM error occurs, NULL is returned and db->mallocFailed is set.
393 assert(pEList != 0 || pSelect != 0 || db->mallocFailed);
485 if( db->mallocFailed ) goto drop_trigger_cleanup;
871 && db->mallocFailed==0
890 if( db->mallocFailed==0 ){
    [all...]
alter.c 413 if( NEVER(db->mallocFailed) ) goto exit_rename_table;
635 if( pParse->nErr || db->mallocFailed ) return;
692 db->mallocFailed = 1;
759 if( db->mallocFailed ) goto exit_begin_add_column;
800 db->mallocFailed = 1;
vdbeaux.c 388 return ( v->db->mallocFailed || hasAbort==mayAbort );
463 assert( aOp && !p->db->mallocFailed );
709 if( p->aOp==0 || db->mallocFailed ){
749 p->db->mallocFailed = 1;
781 assert( p->aOp==0 || p->aOp[p->nOp-1].zComment==0 || p->db->mallocFailed );
795 assert( p->aOp==0 || p->aOp[p->nOp-1].zComment==0 || p->db->mallocFailed );
838 assert( (addr>=0 && addr<p->nOp) || p->db->mallocFailed );
839 if( p->db->mallocFailed ){
1058 u8 malloc_failed = db->mallocFailed;
1089 db->mallocFailed = malloc_failed
    [all...]
resolve.c 608 return (pParse->nErr || pParse->db->mallocFailed) ? WRC_Abort : WRC_Continue;
781 if( !db->mallocFailed ){
836 if( pOrderBy==0 || pParse->db->mallocFailed ) return 0;
    [all...]
analyze.c 286 if( db->mallocFailed ){
597 ** If an OOM error occurs, this function always sets db->mallocFailed.
670 db->mallocFailed = 1;
698 db->mallocFailed = 1;
713 db->mallocFailed = 1;
btreeInt.h 633 int mallocFailed; /* A memory allocation error has occurred */
notify.c 186 assert( !db->mallocFailed );
callback.c 178 db->mallocFailed = 1;
448 db->mallocFailed = 1;
select.c 66 assert( db->mallocFailed || !pOffset || pLimit ); /* OFFSET implies LIMIT */
88 if( db->mallocFailed ) {
    [all...]
vdbeapi.c 308 pCtx->s.db->mallocFailed = 1;
376 if( db->mallocFailed ){
496 if( !db->mallocFailed ){
726 ** malloc() has failed, the threads mallocFailed flag is cleared and the result
859 assert( db->mallocFailed==0 );
862 ** is the case, clear the mallocFailed flag and return NULL.
864 if( db->mallocFailed ){
865 db->mallocFailed = 0;
    [all...]
vtab.c 49 db->mallocFailed = 1;
392 db->mallocFailed = 1;
462 if( rc==SQLITE_NOMEM ) db->mallocFailed = 1;
663 && !db->mallocFailed
936 pToplevel->db->mallocFailed = 1;
build.c 93 pToplevel->db->mallocFailed = 1;
134 if( db->mallocFailed ) return;
197 if( v && ALWAYS(pParse->nErr==0) && !db->mallocFailed ){
833 db->mallocFailed = 1;
    [all...]
attach.c 208 db->mallocFailed = 1;
337 assert( v || db->mallocFailed );
vacuum.c 187 || NEVER(db->mallocFailed)
where.c 321 ** the db->mallocFailed flag so that higher-level functions can detect it.
    [all...]
insert.c 72 db->mallocFailed = 1;
114 db->mallocFailed = 1;
481 if( pParse->nErr || db->mallocFailed ){
606 if( rc || NEVER(pParse->nErr) || db->mallocFailed ){
    [all...]
fkey.c 179 ** pParse->db->mallocFailed flag is set.
725 if( !isIgnoreErrors || db->mallocFailed ) return;
    [all...]
vdbemem.c 561 if( db->mallocFailed ){
985 || pVal->db->mallocFailed );
    [all...]

Completed in 283 milliseconds

1 2