Home
last modified time | relevance | path

Searched defs:pointer (Results 1 – 12 of 12) sorted by relevance

/bionic/libc/malloc_debug/tests/
Dmalloc_debug_unit_tests.cpp166 uint8_t* pointer = reinterpret_cast<uint8_t*>(debug_malloc(alloc_size)); in VerifyAllocCalls() local
245 uint8_t* pointer = reinterpret_cast<uint8_t*>(debug_malloc(100)); in TEST_F() local
299 uint8_t* pointer = reinterpret_cast<uint8_t*>(debug_malloc(100)); in TEST_F() local
316 uint8_t* pointer = reinterpret_cast<uint8_t*>(debug_malloc(100)); in TEST_F() local
336 uint8_t* pointer = reinterpret_cast<uint8_t*>(debug_malloc(100)); in TEST_F() local
366 void* pointer = debug_malloc(10); in TEST_F() local
404 uint8_t* pointer = reinterpret_cast<uint8_t*>(debug_malloc(100)); in TEST_F() local
454 void* pointer = debug_memalign(1024, 100); in TEST_F() local
473 uint8_t* pointer = reinterpret_cast<uint8_t*>(debug_malloc(100)); in TEST_F() local
500 uint8_t* pointer = reinterpret_cast<uint8_t*>(debug_malloc(100)); in TEST_F() local
[all …]
/bionic/libc/malloc_debug/
DRecordData.cpp55 AllocEntry::AllocEntry(void* pointer) : pointer_(pointer) {} in AllocEntry()
57 MallocEntry::MallocEntry(void* pointer, size_t size) : AllocEntry(pointer), size_(size) {} in MallocEntry()
63 FreeEntry::FreeEntry(void* pointer) : AllocEntry(pointer) {} in FreeEntry()
69 CallocEntry::CallocEntry(void* pointer, size_t nmemb, size_t size) in CallocEntry()
76 ReallocEntry::ReallocEntry(void* pointer, size_t size, void* old_pointer) in ReallocEntry()
84 MemalignEntry::MemalignEntry(void* pointer, size_t size, size_t alignment) in MemalignEntry()
Dmalloc_debug.cpp213 static void LogError(const void* pointer, const char* error_str) { in LogError()
231 static bool VerifyPointer(const void* pointer, const char* function_name) { in VerifyPointer()
257 static size_t InternalMallocUsableSize(void* pointer) { in InternalMallocUsableSize()
404 size_t debug_malloc_usable_size(void* pointer) { in debug_malloc_usable_size()
442 void* pointer; in InternalMalloc() local
477 void* pointer = InternalMalloc(size); in debug_malloc() local
486 static void InternalFree(void* pointer) { in InternalFree()
546 void debug_free(void* pointer) { in debug_free()
582 void* pointer; in debug_memalign() local
645 void* debug_realloc(void* pointer, size_t bytes) { in debug_realloc()
[all …]
DDebugData.h58 Header* GetHeader(const void* pointer) { in GetHeader()
86 std::unique_ptr<PointerData> pointer; variable
DPointerData.cpp197 uintptr_t pointer = reinterpret_cast<uintptr_t>(ptr); in Add() local
208 uintptr_t pointer = reinterpret_cast<uintptr_t>(ptr); in Remove() local
226 uintptr_t pointer = reinterpret_cast<uintptr_t>(ptr); in GetFrames() local
335 uintptr_t pointer = reinterpret_cast<uintptr_t>(ptr); in AddFreed() local
360 uintptr_t pointer = reinterpret_cast<uintptr_t>(ptr); in LogFreeBacktrace() local
552 uintptr_t pointer = reinterpret_cast<uintptr_t>(ptr); in Exists() local
DGuardData.cpp49 void GuardData::LogFailure(const Header* header, const void* pointer, const void* data) { in LogFailure()
/bionic/libc/malloc_hooks/
Dmalloc_hooks.cpp85 static void* default_realloc_hook(void* pointer, size_t bytes, const void*) { in default_realloc_hook() argument
89 static void default_free_hook(void* pointer, const void*) { in default_free_hook() argument
124 size_t hooks_malloc_usable_size(void* pointer) { in hooks_malloc_usable_size()
135 void hooks_free(void* pointer) { in hooks_free()
149 void* hooks_realloc(void* pointer, size_t bytes) { in hooks_realloc()
/bionic/linker/
Dlinker_block_allocator_test.cpp42 void* pointer; member
/bionic/libc/kernel/uapi/linux/
Dvbox_vmmdev_types.h151 } pointer; member
169 } __packed pointer; member
Dwireless.h266 void __user * pointer; member
/bionic/libc/bionic/
Dmalloc_common_dynamic.cpp449 extern "C" ssize_t malloc_backtrace(void* pointer, uintptr_t* frames, size_t frame_count) { in malloc_backtrace()
/bionic/tests/
Dmalloc_test.cpp509 void* pointer = malloc(size); in TEST() local