Home
last modified time | relevance | path

Searched refs:MCR_SLEEP (Results 1 – 7 of 7) sorted by relevance

/xnu-8020.101.4/bsd/kern/
H A Dsubr_eventhandler.c117 sizeof(uint64_t), 0, MCR_SLEEP); in eventhandler_init()
121 sizeof(uint64_t), 0, MCR_SLEEP); in eventhandler_init()
164 new_list = mcache_alloc(el_cache, MCR_SLEEP); in eventhandler_register_internal()
216 eg = mcache_alloc(eg_cache, MCR_SLEEP); in eventhandler_register()
H A Dmcache.c207 (btp->bt_bktsize + 1) * sizeof(void *), 0, 0, MCR_SLEEP); in mcache_init()
214 0, 0, MCR_SLEEP); in mcache_init()
H A Duipc_mbuf.c990 #define MSLEEPF(f) ((!((f) & M_DONTWAIT)) ? MCR_SLEEP : MCR_NOSLEEP)
1686 AUDIT_CONTENTS_SIZE, sizeof(u_int64_t), 0, MCR_SLEEP); in mbinit()
1757 0, 0, MCR_SLEEP); in mbinit()
1795 (void *)(uintptr_t)m, flags, MCR_SLEEP); in mbinit()
3122 &con_list, needed, MCR_SLEEP);
3134 (mcache_obj_t **)&mca_list, needed, MCR_SLEEP);
/xnu-8020.101.4/bsd/net/
H A Dflowadv.c123 sizeof(uint64_t), 0, MCR_SLEEP); in flowadv_init()
140 MCR_SLEEP : MCR_NOSLEEP)) != NULL) { in flowadv_alloc_entry()
H A Dnecp_client.c1877 struct necp_client_flow *new_flow = mcache_alloc(necp_flow_cache, MCR_SLEEP); in necp_client_add_nexus_flow()
1934 struct necp_client_flow *new_flow = mcache_alloc(necp_flow_cache, MCR_SLEEP); in necp_client_add_interface_flow()
3182 …client_flow_registration *new_registration = mcache_alloc(necp_flow_registration_cache, MCR_SLEEP); in necp_client_create_flow_registration()
3230 struct necp_client_flow *new_flow = mcache_alloc(necp_flow_cache, MCR_SLEEP); in necp_client_add_socket_flow()
10395 …cp_flow_cache = mcache_create(NECP_FLOW_ZONE_NAME, necp_flow_size, sizeof(uint64_t), 0, MCR_SLEEP); in necp_client_init()
10402 …ate(NECP_FLOW_REGISTRATION_ZONE_NAME, necp_flow_registration_size, sizeof(uint64_t), 0, MCR_SLEEP); in necp_client_init()
/xnu-8020.101.4/bsd/net/classq/
H A Dclassq_fq_codel.c71 0, MCR_SLEEP); in fq_codel_init()
89 fq = mcache_alloc(flowq_cache, MCR_SLEEP); in fq_alloc()
/xnu-8020.101.4/bsd/sys/
H A Dmcache.h230 #define MCR_SLEEP 0x0000 /* same as M_WAITOK */ macro