Home
last modified time | relevance | path

Searched refs:sqlite3_soft_heap_limit64 (Results 1 – 9 of 9) sorted by relevance

/sqlite-3.40.0/test/
H A Dsoftheap1.test28 # sqlite3_soft_heap_limit64() interface with the argument N, if N is
33 # sqlite3_soft_heap_limit64(-1) C-language function.
H A Dtester.tcl605 sqlite3_soft_heap_limit64 $cmdlinearg(soft-heap-limit)
1254 sqlite3_soft_heap_limit64 0
H A Dfuzzcheck.c1302 sqlite3_soft_heap_limit64(0); in runCombinedDbSqlInput()
/sqlite-3.40.0/src/
H A Dmalloc.c95 sqlite3_int64 sqlite3_soft_heap_limit64(sqlite3_int64 n){ in sqlite3_soft_heap_limit64() function
122 sqlite3_soft_heap_limit64(n); in sqlite3_soft_heap_limit()
H A Dloadext.c363 sqlite3_soft_heap_limit64,
H A Dsqlite3ext.h565 #define sqlite3_soft_heap_limit64 sqlite3_api->soft_heap_limit64 macro
H A Dpragma.c2418 sqlite3_soft_heap_limit64(N); in sqlite3Pragma()
2420 returnSingleInt(v, sqlite3_soft_heap_limit64(-1)); in sqlite3Pragma()
H A Dsqlite.h.in1858 ** <li> [sqlite3_soft_heap_limit64()]
6709 ** ^The sqlite3_soft_heap_limit64() interface sets and/or queries the
6722 ** sqlite3_soft_heap_limit64(N) except that memory allocations will fail
6725 ** ^The return value from both sqlite3_soft_heap_limit64() and
6731 ** sqlite3_soft_heap_limit64(-1) or sqlite3_hard_heap_limit(-1).
6742 ** limit is set to N. ^Invoking sqlite3_soft_heap_limit64(0) when the
6767 sqlite3_int64 sqlite3_soft_heap_limit64(sqlite3_int64 N);
6774 ** This is a deprecated version of the [sqlite3_soft_heap_limit64()]
6777 ** [sqlite3_soft_heap_limit64()] interface rather than this one.
H A Dtest1.c5804 amt = sqlite3_soft_heap_limit64(N); in test_soft_heap_limit()