Searched refs:zone (Results 51 - 67 of 67) sorted by relevance

123

/darwin-on-arm/xnu/bsd/kern/
H A Dubc_subr.c106 struct zone *ubc_info_zone;
479 * Initialization of the zone for Unified Buffer Cache.
495 ubc_info_zone = zinit (i, 10000*i, 8192, "ubc_info zone");
553 * Notes: We call a blocking zalloc(), and the zone was created as an
554 * expandable and collectable zone, so if no memory is available,
556 * may also panic if the zone of zones is exhausted, since it's
H A Duipc_usrreq.c106 struct zone *unp_zone;
H A Duipc_socket.c128 struct zone *so_cache_zone;
307 so_cache_zone = zinit(str_size, 120000*str_size, 8192, "socache zone");
491 * Get a socket structure from our zone, and initialize it.
/darwin-on-arm/xnu/bsd/netinet/
H A Din.c174 static unsigned int inifa_size; /* size of zone element */
175 static struct zone *inifa_zone; /* zone for in_ifaddr */
177 #define INIFA_ZONE_MAX 64 /* maximum elements in zone */
178 #define INIFA_ZONE_NAME "in_ifaddr" /* zone name */
H A Din_pcb.c217 static struct zone *inp_fcezone;
H A Digmp.c302 #define IGI_ZONE_MAX 64 /* maximum elements in zone */
303 #define IGI_ZONE_NAME "igmp_ifinfo" /* zone name */
305 static unsigned int igi_size; /* size of zone element */
306 static struct zone *igi_zone; /* zone for igmp_ifinfo */
H A Dip_output.c211 static unsigned int imo_size; /* size of zone element */
212 static struct zone *imo_zone; /* zone for ip_moptions */
214 #define IMO_ZONE_MAX 64 /* maximum elements in zone */
215 #define IMO_ZONE_NAME "ip_moptions" /* zone name */
H A Dtcp_input.c279 extern struct zone *tcp_reass_zone;
/darwin-on-arm/xnu/bsd/netinet6/
H A Dnd6_nbr.c119 static unsigned int dad_size; /* size of zone element */
120 static struct zone *dad_zone; /* zone for dadq */
122 #define DAD_ZONE_MAX 64 /* maximum elements in zone */
123 #define DAD_ZONE_NAME "nd6_dad" /* zone name */
H A Din6.c228 static unsigned int in6ifa_size; /* size of zone element */
229 static struct zone *in6ifa_zone; /* zone for in6_ifaddr */
231 #define IN6IFA_ZONE_MAX 64 /* maximum elements in zone */
232 #define IN6IFA_ZONE_NAME "in6_ifaddr" /* zone name */
1513 * zone identifier.
2956 * We can never take an address that breaks the scope zone
H A Dmld6.c261 #define MLI_ZONE_MAX 64 /* maximum elements in zone */
262 #define MLI_ZONE_NAME "mld_ifinfo" /* zone name */
264 static unsigned int mli_size; /* size of zone element */
265 static struct zone *mli_zone; /* zone for mld_ifinfo */
/darwin-on-arm/xnu/bsd/net/
H A Dpfvar.h106 struct zone *pool_zone; /* pointer to backend zone */
H A Droute.c227 #define RTE_NAME "rtentry" /* name for zone and rt_lock */
229 static struct zone *rte_zone; /* special zone for rtentry */
230 #define RTE_ZONE_MAX 65536 /* maximum elements in zone */
231 #define RTE_ZONE_NAME RTE_NAME /* name of rtentry zone */
H A Dif.c185 static unsigned int ifma_size; /* size of zone element */
186 static struct zone *ifma_zone; /* zone for ifmultiaddr */
212 #define IFMA_ZONE_MAX 64 /* maximum elements in zone */
213 #define IFMA_ZONE_NAME "ifmultiaddr" /* zone name */
/darwin-on-arm/xnu/osfmk/i386/
H A Dpmap.c196 zone_t pv_hashed_list_zone; /* zone of pv_hashed_entry structures */
263 struct zone *pmap_zone; /* zone of pmap structures */
952 * Create the zone of physical maps,
960 pv_hashed_list_zone = zinit(s, 10000*s /* Expandable zone */,
/darwin-on-arm/xnu/osfmk/vm/
H A Dvm_object.c199 static zone_t vm_object_zone; /* vm backing store zone */
306 static struct zone *vm_object_hash_zone;
688 * non-zone memory.
/darwin-on-arm/xnu/bsd/dev/dtrace/
H A Ddtrace.c94 #include <sys/zone.h>
258 * unique zone. For example, dtrace_probe_t is 72 bytes in size,
263 struct zone *dtrace_probe_t_zone;
1317 * verify that the zone of the process that enabled the invoking ECB
7599 * Need to be in the same zone unless we possess the
12175 * we have sufficient permissions by virtue of being in the global zone
12176 * or in the same zone as the DTrace client. Because we can be called
12190 (void) dtrace_enabling_match(enab, NULL); /* As if always in "global" zone." */
13749 * examine the credential and the zone from probe context.
13787 * If we have all privs in whatever zone thi
[all...]

Completed in 188 milliseconds

123