OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:free_hook
(Results
1 - 2
of
2
) sorted by null
/external/compiler-rt/lib/sanitizer_common/
sanitizer_common.cc
423
void (*
free_hook
)(const void *);
member in struct:__sanitizer::MallocFreeHook
438
auto hook = MFHooks[i].
free_hook
;
445
void (*
free_hook
)(const void *)) {
446
if (!malloc_hook || !
free_hook
) return 0;
450
MFHooks[i].
free_hook
=
free_hook
;
483
void (*
free_hook
)(const void *)) {
484
return InstallMallocFreeHooks(malloc_hook,
free_hook
);
/external/pdfium/third_party/base/allocator/partition_allocator/
partition_alloc.h
479
FreeHook*
free_hook
= free_hook_;
local
480
if (UNLIKELY(allocation_hook &&
free_hook
)) {
481
free_hook
(old_address);
[
all
...]
Completed in 93 milliseconds