Home
last modified time | relevance | path

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

/bionic/libc/malloc_debug/
Dexported64.map18 debug_realloc;
Dexported32.map19 debug_realloc;
Dmalloc_debug.cpp76 void* debug_realloc(void* pointer, size_t bytes);
449 void* debug_realloc(void* pointer, size_t bytes) { in debug_realloc() function
/bionic/libc/malloc_debug/tests/
Dmalloc_debug_unit_tests.cpp53 void* debug_realloc(void*, size_t);
156 pointer = reinterpret_cast<uint8_t*>(debug_realloc(nullptr, alloc_size)); in VerifyAllocCalls()
164 pointer = reinterpret_cast<uint8_t*>(debug_realloc(pointer, alloc_size * 2)); in VerifyAllocCalls()
174 pointer = reinterpret_cast<uint8_t*>(debug_realloc(pointer, alloc_size)); in VerifyAllocCalls()
180 pointer = reinterpret_cast<uint8_t*>(debug_realloc(pointer, 0)); in VerifyAllocCalls()
294 pointer = debug_realloc(nullptr, 30); in TEST_F()
297 pointer = debug_realloc(pointer, 100); in TEST_F()
340 pointer = reinterpret_cast<uint8_t*>(debug_realloc(nullptr, 100)); in TEST_F()
344 pointer = reinterpret_cast<uint8_t*>(debug_realloc(pointer, 200)); in TEST_F()
347 pointer = reinterpret_cast<uint8_t*>(debug_realloc(pointer, 0)); in TEST_F()
[all …]