MCPcopy Create free account
hub / github.com/apache/httpd / ap_malloc

Function ap_malloc

server/util.c:3152–3158  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3150}
3151
3152AP_DECLARE(void *) ap_malloc(size_t size)
3153{
3154 void *p = malloc(size);
3155 if (p == NULL && size != 0)
3156 ap_abort_on_oom();
3157 return p;
3158}
3159
3160AP_DECLARE(void *) ap_calloc(size_t nelem, size_t size)
3161{

Callers 12

socache_dbm_storeFunction · 0.85
ap_proxy_define_balancerFunction · 0.85
ssl_asn1_table_setFunction · 0.85
CaseFilterInFilterFunction · 0.85
ap_add_moduleFunction · 0.85
create_listener_threadFunction · 0.85
start_threadsFunction · 0.85
create_processFunction · 0.85
create_listener_threadFunction · 0.85
start_threadsFunction · 0.85

Calls 1

ap_abort_on_oomFunction · 0.85

Tested by

no test coverage detected