Searched refs:itag (Results 1 – 3 of 3) sorted by relevance
| /xnu-8019.80.24/osfmk/kern/ |
| H A D | kalloc.h | 328 #define kalloc_tag(size, itag) \ argument 329 kheap_alloc_tag(KHEAP_DEFAULT, size, Z_WAITOK, itag) 331 #define kalloc_tag_bt(size, itag) \ argument 332 kheap_alloc_tag_bt(KHEAP_DEFAULT, size, Z_WAITOK, itag) 337 #define krealloc_tag_bt(elem, old_size, new_size, flags, itag) \ argument 338 kheap_realloc_tag_bt(KHEAP_DEFAULT, elem, old_size, new_size, flags, itag) 348 #define kheap_alloc_tag(kalloc_heap, size, flags, itag) \ argument 349 ({ VM_ALLOC_SITE_STATIC(0, (itag)); \ 352 #define kheap_alloc_tag_bt(kalloc_heap, size, flags, itag) \ argument 353 ({ VM_ALLOC_SITE_STATIC(VM_TAG_BT, (itag)); \ [all …]
|
| /xnu-8019.80.24/osfmk/mach/ |
| H A D | vm_types.h | 186 #define VM_ALLOC_SITE_STATIC(iflags, itag) \ argument 188 = { .refcount = 2, .tag = (itag), .flags = (iflags) };
|
| /xnu-8019.80.24/bsd/netinet6/ |
| H A D | ipsec.c | 4706 struct ipsec_tag *itag; in ipsec_addaux() local 4713 itag = (struct ipsec_tag*)(tag + 1); in ipsec_addaux() 4714 itag->socket = 0; in ipsec_addaux() 4715 itag->history_count = 0; in ipsec_addaux() 4752 struct ipsec_tag *itag) in ipsec_optaux() argument 4754 if (itag && itag->socket == NULL && itag->history_count == 0) { in ipsec_optaux() 4755 m_tag_delete(m, ((struct m_tag*)itag) - 1); in ipsec_optaux() 4783 struct ipsec_tag *itag; in ipsec_getsocket() local 4785 itag = ipsec_findaux(m); in ipsec_getsocket() 4786 if (itag) { in ipsec_getsocket() [all …]
|