Searched refs:Malloc (Results 1 – 12 of 12) sorted by relevance
/bionic/libc/bionic/ |
D | malloc_common.cpp | 71 void* result = Malloc(calloc)(n_elements, elem_size); in calloc() 84 Malloc(free)(mem); in free() 93 return Malloc(mallinfo)(); in mallinfo() 101 return Malloc(malloc_info)(options, fp); in malloc_info() 120 retval = Malloc(mallopt)(param, value); in mallopt() 142 result = Malloc(malloc)(bytes); in malloc() 157 return Malloc(malloc_usable_size)(mem); in malloc_usable_size() 165 void* result = Malloc(memalign)(alignment, bytes); in memalign() 178 result = Malloc(posix_memalign)(memptr, alignment, size); in posix_memalign() 191 void* result = Malloc(aligned_alloc)(alignment, size); in aligned_alloc() [all …]
|
D | malloc_limit.cpp | 126 return IncrementLimit(Malloc(calloc)(n_elements, elem_size)); in LimitCalloc() 135 return Malloc(free)(mem); in LimitFree() 147 return IncrementLimit(Malloc(malloc)(bytes)); in LimitMalloc() 160 return IncrementLimit(Malloc(memalign)(alignment, bytes)); in LimitMemalign() 174 retval = Malloc(posix_memalign)(memptr, alignment, size); in LimitPosixMemalign() 193 return IncrementLimit(Malloc(aligned_alloc)(alignment, size)); in LimitAlignedAlloc() 212 new_ptr = Malloc(realloc)(old_mem, bytes); in LimitRealloc() 241 return IncrementLimit(Malloc(pvalloc)(bytes)); in LimitPvalloc() 253 return IncrementLimit(Malloc(valloc)(bytes)); in LimitValloc() 329 current_allocated = Malloc(mallinfo)().uordblks; in LimitEnable() [all …]
|
D | malloc_common.h | 54 #define Malloc(function) __sanitizer_ ## function macro 61 #define Malloc(function) scudo_ ## function 66 #define Malloc(function) scudo_svelte_ ## function 71 #define Malloc(function) je_ ## function
|
D | gwp_asan_wrappers.cpp | 155 Malloc(mallinfo), 158 Malloc(memalign), 159 Malloc(posix_memalign), 161 Malloc(pvalloc), 165 Malloc(valloc), 170 Malloc(mallopt), 171 Malloc(aligned_alloc), 172 Malloc(malloc_info),
|
/bionic/libc/malloc_debug/ |
D | README_marshmallow_and_earlier.md | 1 Malloc Debug 4 Malloc debug is a method of debugging native memory problems. It can help 37 Controlling Malloc Debug Behavior 39 Malloc debug is controlled by a system property that takes a numeric value
|
D | Android.bp | 181 // The clang-analyzer-unix.Malloc and other warnings in these
|
D | README_api.md | 3 Malloc debug can be used to get information on all of the live allocations
|
D | README.md | 1 Malloc Debug 4 Malloc debug is a method of debugging native memory problems. It can help 39 Controlling Malloc Debug Behavior 41 Malloc debug is controlled by individual options. Each option can be enabled
|
/bionic/libc/malloc_hooks/ |
D | Android.bp | 63 // The clang-analyzer-unix.Malloc and other warnings in these
|
D | README.md | 1 Malloc Hooks 4 Malloc hooks allows a program to intercept all allocation/free calls that
|
/bionic/libc/malloc_debug/tests/ |
D | malloc_debug_system_tests.cpp | 504 static void Malloc() { in Malloc() function 511 Malloc(); in TEST() 516 Malloc(); in TEST()
|
/bionic/docs/ |
D | native_allocator.md | 326 To generate these traces, see the [Malloc Debug documentation](https://android.googlesource.com/pla…
|