Home
last modified time | relevance | path

Searched refs:PFKEY_ALIGN8 (Results 1 – 4 of 4) sorted by relevance

/xnu-11215/tests/
H A Dpfkey.c244 tlen += PFKEY_ALIGN8(src->sin_len); in send_pfkey_spd_add_message()
259 tlen += PFKEY_ALIGN8(dst->sin_len); in send_pfkey_spd_add_message()
505 tlen += PFKEY_ALIGN8(src->sin_len); in send_pkey_get_spi()
520 tlen += PFKEY_ALIGN8(dst->sin_len); in send_pkey_get_spi()
630 tlen += PFKEY_ALIGN8(32); in send_pkey_add_sa()
640 tlen += PFKEY_ALIGN8(32); in send_pkey_add_sa()
713 tlen += PFKEY_ALIGN8(src->sin_len); in send_pkey_update_sa()
728 tlen += PFKEY_ALIGN8(dst->sin_len); in send_pkey_update_sa()
738 tlen += PFKEY_ALIGN8(32); in send_pkey_update_sa()
748 tlen += PFKEY_ALIGN8(32); in send_pkey_update_sa()
[all …]
H A Dipsec.m105 uint16_t len = sizeof(*src_address_payload) + PFKEY_ALIGN8(src4->sin_len);
107 tlen += PFKEY_ALIGN8(src4->sin_len);
113 uint16_t len = sizeof(*src_address_payload) + PFKEY_ALIGN8(src6->sin6_len);
115 tlen += PFKEY_ALIGN8(src6->sin6_len);
130 uint16_t len = sizeof(*dst_address_payload) + PFKEY_ALIGN8(dst4->sin_len);
132 tlen += PFKEY_ALIGN8(dst4->sin_len);
140 tlen += PFKEY_ALIGN8(dst6->sin6_len);
161 uint16_t len = sizeof(*encrypt_key_payload) + PFKEY_ALIGN8(32);
168 tlen += PFKEY_ALIGN8(32);
171 len = sizeof(*auth_key_payload) + PFKEY_ALIGN8(32);
[all …]
/xnu-11215/bsd/netkey/
H A Dkey.c2233 PFKEY_ALIGN8(sizeof(*xisr) in key_sp2msg()
3588 tlen += PFKEY_ALIGN8(len); in key_getspreqmsglen()
3629 len = PFKEY_ALIGN8(sizeof(*lt)) * 2; in key_spdexpire()
5016 PFKEY_ALIGN8(saddr->sa_len); in key_setsadbaddr()
5143 len = PFKEY_ALIGN8(sizeof(*p)); in key_setsadbsession_id()
5180 len = PFKEY_ALIGN8(sizeof(*p)) + PFKEY_ALIGN8(list_len); in key_setsadbsastat()
6696 PFKEY_ALIGN8(sizeof(struct sadb_sa)); in key_getspi()
8626 off += PFKEY_ALIGN8(sizeof(*sup)); in key_register()
8641 off += PFKEY_ALIGN8(sizeof(*alg)); in key_register()
8651 off += PFKEY_ALIGN8(sizeof(*sup)); in key_register()
[all …]
/xnu-11215/bsd/net/
H A Dpfkeyv2.h511 #define PFKEY_ALIGN8(a) (1 + (((a) - 1) | (8 - 1))) macro