Searched refs:_libkernel_functions (Results 1 – 3 of 3) sorted by relevance
32 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 …]
81 _libkernel_functions_t _libkernel_functions; variable90 _libkernel_functions = fns; in __libkernel_init()
61 typedef const struct _libkernel_functions { struct