Lines Matching defs:ret
125 bool ret = true; in UpdateThreadName() local
199 … int ret = GetParameter("persist.hiviewdfx.profiler.mem.filter", "", paramOutBuf, paramBufferLen); in ohos_malloc_hook_on_start() local
266 void* ret = nullptr; in hook_malloc() local
526 size_t ret = 0; in hook_malloc_usable_size() local
625 void* ret = nullptr; in hook_mmap() local
713 int ret = -1; in hook_munmap() local
781 int ret = -1; in hook_prctl() local
886 void* ret = hook_malloc(GetDispatch()->malloc, size); in ohos_malloc_hook_malloc() local
894 void* ret = hook_realloc(GetDispatch()->realloc, ptr, size); in ohos_malloc_hook_realloc() local
902 void* ret = hook_calloc(GetDispatch()->calloc, number, size); in ohos_malloc_hook_calloc() local
910 void* ret = hook_valloc(GetDispatch()->valloc, size); in ohos_malloc_hook_valloc() local
925 void* ret = hook_memalign(GetDispatch()->memalign, alignment, bytes); in ohos_malloc_hook_memalign() local
933 size_t ret = hook_malloc_usable_size(GetDispatch()->malloc_usable_size, mem); in ohos_malloc_hook_malloc_usable_size() local
957 void* ret = hook_mmap(GetDispatch()->mmap, addr, length, prot, flags, fd, offset); in ohos_malloc_hook_mmap() local
965 int ret = hook_munmap(GetDispatch()->munmap, addr, length); in ohos_malloc_hook_munmap() local
981 int ret = hook_prctl((GetDispatch()->prctl), option, arg2, arg3, arg4, arg5); in ohos_malloc_hook_prctl() local
986 bool ohos_set_filter_size(size_t size, void* ret) in ohos_set_filter_size()