Home
last modified time | relevance | path

Searched refs:SQLITE_IOERR_NOMEM (Results 1 – 3 of 3) sorted by relevance

/src/contrib/sqlite3/
H A Dsqlite3.h511 #define SQLITE_IOERR_NOMEM (SQLITE_IOERR | (12<<8)) macro
H A Dsqlite3.c830 #define SQLITE_IOERR_NOMEM (SQLITE_IOERR | (12<<8)) macro
21014 # define SQLITE_IOERR_NOMEM_BKPT SQLITE_IOERR_NOMEM
31618 if( db->mallocFailed || rc==SQLITE_IOERR_NOMEM ){ in apiHandleError()
35667 if( rc==SQLITE_IOERR_NOMEM ) return; in sqlite3SystemError()
38468 return SQLITE_IOERR_NOMEM; in kvvfsWriteJrnl()
38558 return SQLITE_IOERR_NOMEM; in kvvfsSyncJrnl()
54099 if( pNew==0 ) return SQLITE_IOERR_NOMEM;
64677 if( (rc&0xFF)==SQLITE_IOERR && rc!=SQLITE_IOERR_NOMEM ){
82184 if( rc==SQLITE_NOMEM || rc==SQLITE_IOERR_NOMEM ) checkOom(pCheck);
82381 if( rc==SQLITE_IOERR_NOMEM ) pCheck->rc = SQLITE_NOMEM;
[all …]
H A Dshell.c16515 case SQLITE_IOERR_NOMEM: zVal = "SQLITE_IOERR_NOMEM"; break; in vfstrace_errcode_name()