HomeSort by relevance Sort by last modified time
    Searched refs:default_hooks (Results 1 - 2 of 2) sorted by null

  /external/jemalloc_new/test/include/test/
extent_hooks.h 28 static extent_hooks_t *default_hooks; variable
97 ret = default_hooks->alloc(default_hooks, new_addr, size, alignment,
119 err = default_hooks->dalloc(default_hooks, addr, size, committed, 0);
138 default_hooks->destroy(default_hooks, addr, size, committed, 0);
158 err = default_hooks->commit(default_hooks, addr, size, offset, length,
180 err = default_hooks->decommit(default_hooks, addr, size, offset, length
    [all...]
  /external/jemalloc_new/test/integration/
extent.c 189 assert_ptr_eq(old_hooks, default_hooks, "Unexpected extent_hooks error");
190 assert_ptr_eq(old_hooks->alloc, default_hooks->alloc,
192 assert_ptr_eq(old_hooks->dalloc, default_hooks->dalloc,
194 assert_ptr_eq(old_hooks->commit, default_hooks->commit,
196 assert_ptr_eq(old_hooks->decommit, default_hooks->decommit,
198 assert_ptr_eq(old_hooks->purge_lazy, default_hooks->purge_lazy,
200 assert_ptr_eq(old_hooks->purge_forced, default_hooks->purge_forced,
202 assert_ptr_eq(old_hooks->split, default_hooks->split,
204 assert_ptr_eq(old_hooks->merge, default_hooks->merge,

Completed in 1565 milliseconds