Home
last modified time | relevance | path

Searched refs:_libkernel_functions (Results 1 – 3 of 3) sorted by relevance

/xnu-10002.81.5/libsyscall/wrappers/ !
H A D_libc_funcptr.c32 extern _libkernel_functions_t _libkernel_functions;
39 if (_libkernel_functions->malloc) { in malloc()
40 return _libkernel_functions->malloc(size); in malloc()
49 if (_libkernel_functions->free) { in free()
50 _libkernel_functions->free(ptr); in free()
58 if (_libkernel_functions->realloc) { in realloc()
59 return _libkernel_functions->realloc(ptr, size); in realloc()
79 if (_libkernel_functions->version >= 5) { in malloc_type_malloc()
80 if (_libkernel_functions->malloc_type_malloc) { in malloc_type_malloc()
81 return _libkernel_functions->malloc_type_malloc(size, type_id); in malloc_type_malloc()
[all …]
H A D_libkernel_init.c81 _libkernel_functions_t _libkernel_functions; variable
90 _libkernel_functions = fns; in __libkernel_init()
H A D_libkernel_init.h61 typedef const struct _libkernel_functions { struct