Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dsqlite3.c49199 #ifndef SQLITE_WIN32_HEAP_FLAGS
49200 # define SQLITE_WIN32_HEAP_FLAGS (0) macro
50033 assert( osHeapValidate(hHeap, SQLITE_WIN32_HEAP_FLAGS, NULL) ); in sqlite3_win32_compact_heap()
50036 if( (nLargest=osHeapCompact(hHeap, SQLITE_WIN32_HEAP_FLAGS))==0 ){ in sqlite3_win32_compact_heap()
50232 assert( osHeapValidate(hHeap, SQLITE_WIN32_HEAP_FLAGS, NULL) ); in winMemMalloc()
50235 p = osHeapAlloc(hHeap, SQLITE_WIN32_HEAP_FLAGS, (SIZE_T)nBytes); in winMemMalloc()
50254 assert( osHeapValidate(hHeap, SQLITE_WIN32_HEAP_FLAGS, pPrior) ); in winMemFree()
50257 if( !osHeapFree(hHeap, SQLITE_WIN32_HEAP_FLAGS, pPrior) ){ in winMemFree()
50275 assert( osHeapValidate(hHeap, SQLITE_WIN32_HEAP_FLAGS, pPrior) ); in winMemRealloc()
50279 p = osHeapAlloc(hHeap, SQLITE_WIN32_HEAP_FLAGS, (SIZE_T)nBytes); in winMemRealloc()
[all …]