Home
last modified time | relevance | path

Searched refs:mac64 (Results 1 – 2 of 2) sorted by relevance

/xnu-8020.140.41/security/
H A Dmac_base.c1153 struct user64_mac mac64; in user_mac_copyin() local
1154 if ((error = copyin(mac_p, &mac64, sizeof(mac64)))) { in user_mac_copyin()
1158 mac->m_buflen = mac64.m_buflen; in user_mac_copyin()
1159 mac->m_string = mac64.m_string; in user_mac_copyin()
/xnu-8020.140.41/bsd/vfs/
H A Dvfs_syscalls.c562 struct user64_mac mac64; in __mac_mount() local
563 error = copyin(uap->mac_p, &mac64, sizeof(mac64)); in __mac_mount()
564 mac.m_buflen = (user_size_t)mac64.m_buflen; in __mac_mount()
565 mac.m_string = (user_addr_t)mac64.m_string; in __mac_mount()