Home
last modified time | relevance | path

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

/freebsd/sys/security/mac/
H A Dmac_syscalls.h22 int mac_label_copyin(const struct mac *const u_mac, struct mac *const mac,
29 int mac_label_copyin32(const struct mac32 *const u_mac,
H A Dmac_syscalls.c98 mac_label_copyin_impl(const void *const u_mac, struct mac *const mac, in mac_label_copyin_impl() argument
108 error = copyin(u_mac, &mac32, sizeof(mac32)); in mac_label_copyin_impl()
117 error = copyin(u_mac, mac, sizeof(*mac)); in mac_label_copyin_impl()
142 mac_label_copyin(const struct mac *const u_mac, struct mac *const mac, in mac_label_copyin() argument
145 return (mac_label_copyin_impl(u_mac, mac, u_string, false)); in mac_label_copyin()
156 mac_label_copyin32(const struct mac32 *const u_mac, in mac_label_copyin32() argument
159 return (mac_label_copyin_impl(u_mac, mac, u_string, true)); in mac_label_copyin32()