Home
last modified time | relevance | path

Searched refs:SQLITE_NOMEM (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/sqlite3/
H A Dshell.c5320 if( SQLITE_NOMEM==sqlite3_errcode(sqlite3_context_db_handle(context)) ){ in base64()
5342 if( SQLITE_NOMEM==sqlite3_errcode(sqlite3_context_db_handle(context)) ){ in base64()
5700 if( SQLITE_NOMEM==sqlite3_errcode(sqlite3_context_db_handle(context)) ){ in base85()
5722 if( SQLITE_NOMEM==sqlite3_errcode(sqlite3_context_db_handle(context)) ){ in base85()
6471 if( pNew==0 ) return SQLITE_NOMEM; in seriesConnect()
6493 if( pCur==0 ) return SQLITE_NOMEM; in seriesOpen()
8307 rc = SQLITE_NOMEM; in makeDirectory()
8594 if( pNew==0 ) return SQLITE_NOMEM; in fsdirConnect()
8617 if( pCur==0 ) return SQLITE_NOMEM; in fsdirOpen()
8685 if( aNew==0 ) return SQLITE_NOMEM; in fsdirNext()
[all …]
H A Dsqlite3.c773 #define SQLITE_NOMEM 7 /* A malloc() failed */ macro
21013 # define SQLITE_NOMEM_BKPT SQLITE_NOMEM
27273 sqlite3_log(SQLITE_NOMEM, "failed to allocate %u bytes of memory", nByte); in sqlite3MemMalloc()
27286 sqlite3_log(SQLITE_NOMEM, "failed to allocate %u bytes of memory", nByte); in sqlite3MemMalloc()
27343 sqlite3_log(SQLITE_NOMEM, in sqlite3MemRealloc()
27359 sqlite3_log(SQLITE_NOMEM, in sqlite3MemRealloc()
28904 sqlite3_log(SQLITE_NOMEM, "failed to allocate %u bytes", nByte); in memsys5MallocUnsafe()
31591 pParse->rc = SQLITE_NOMEM; in sqlite3OomFault()
31620 sqlite3Error(db, SQLITE_NOMEM); in apiHandleError()
31764 assert( eError==SQLITE_NOMEM || eError==SQLITE_TOOBIG ); in sqlite3StrAccumSetError()
[all …]
H A Dsqlite3.h454 #define SQLITE_NOMEM 7 /* A malloc() failed */ macro
/freebsd/contrib/kyua/utils/sqlite/
H A Dstatement.cpp92 case SQLITE_NOMEM: in handle_bind_error()