Lines Matching refs:stackAddr
430 void* stackAddr = nullptr; in hook_malloc() local
432 if (ffrt_get_current_coroutine_stack(&stackAddr, &coroutineStackSize)) { in hook_malloc()
434 stackptr = reinterpret_cast<const char*>(stackAddr); in hook_malloc()
536 void* stackAddr = nullptr; in hook_aligned_alloc() local
538 if (ffrt_get_current_coroutine_stack(&stackAddr, &coroutineStackSize)) { in hook_aligned_alloc()
540 stackptr = reinterpret_cast<const char*>(stackAddr); in hook_aligned_alloc()
642 void* stackAddr = nullptr; in hook_calloc() local
644 if (ffrt_get_current_coroutine_stack(&stackAddr, &coroutineStackSize)) { in hook_calloc()
646 stackptr = reinterpret_cast<const char*>(stackAddr); in hook_calloc()
752 void* stackAddr = nullptr; in hook_realloc() local
754 if (ffrt_get_current_coroutine_stack(&stackAddr, &coroutineStackSize)) { in hook_realloc()
756 stackptr = reinterpret_cast<const char*>(stackAddr); in hook_realloc()
895 void* stackAddr = nullptr; in hook_free() local
897 if (ffrt_get_current_coroutine_stack(&stackAddr, &coroutineStackSize)) { in hook_free()
899 stackptr = reinterpret_cast<const char*>(stackAddr); in hook_free()
1013 void* stackAddr = nullptr; in hook_mmap() local
1015 if (ffrt_get_current_coroutine_stack(&stackAddr, &coroutineStackSize)) { in hook_mmap()
1017 stackptr = reinterpret_cast<const char*>(stackAddr); in hook_mmap()
1116 void* stackAddr = nullptr; in hook_munmap() local
1118 if (ffrt_get_current_coroutine_stack(&stackAddr, &coroutineStackSize)) { in hook_munmap()
1120 stackptr = reinterpret_cast<const char*>(stackAddr); in hook_munmap()
1239 void* stackAddr = nullptr; in hook_memtrace() local
1241 if (ffrt_get_current_coroutine_stack(&stackAddr, &coroutineStackSize)) { in hook_memtrace()
1243 stackptr = reinterpret_cast<const char*>(stackAddr); in hook_memtrace()