Searched defs:nlmsghdr (Results 1 - 8 of 8) sorted by relevance

/external/strace/
H A Dnetlink.c49 * Fetch a struct nlmsghdr from the given address.
52 fetch_nlmsghdr(struct tcb *const tcp, struct nlmsghdr *const nlmsghdr, argument
55 if (len < sizeof(struct nlmsghdr)) {
60 if (umove_or_printaddr(tcp, addr, nlmsghdr))
247 const struct nlmsghdr *const nlmsghdr)
251 tprintf("{len=%u, type=", nlmsghdr->nlmsg_len);
253 const int hdr_family = (nlmsghdr->nlmsg_type < NLMSG_MIN_TYPE
254 && nlmsghdr
244 print_nlmsghdr(struct tcb *tcp, const int fd, int family, const struct nlmsghdr *const nlmsghdr) argument
322 decode_payload(struct tcb *const tcp, const int fd, const int family, const struct nlmsghdr *const nlmsghdr, const kernel_ulong_t addr, const kernel_ulong_t len) argument
352 decode_nlmsghdr_with_payload(struct tcb *const tcp, const int fd, int family, const struct nlmsghdr *const nlmsghdr, const kernel_ulong_t addr, const kernel_ulong_t len) argument
381 struct nlmsghdr nlmsghdr; local
[all...]
H A Dnetlink_sock_diag.c85 const struct nlmsghdr *const nlmsghdr,
226 const struct nlmsghdr *const nlmsghdr,
265 const struct nlmsghdr *const nlmsghdr,
380 const struct nlmsghdr *const nlmsghdr,
424 const struct nlmsghdr *const nlmsghdr,
84 decode_unix_diag_req(struct tcb *const tcp, const struct nlmsghdr *const nlmsghdr, const uint8_t family, const kernel_ulong_t addr, const kernel_ulong_t len) argument
225 decode_unix_diag_msg(struct tcb *const tcp, const struct nlmsghdr *const nlmsghdr, const uint8_t family, const kernel_ulong_t addr, const kernel_ulong_t len) argument
264 decode_netlink_diag_req(struct tcb *const tcp, const struct nlmsghdr *const nlmsghdr, const uint8_t family, const kernel_ulong_t addr, const kernel_ulong_t len) argument
379 decode_netlink_diag_msg(struct tcb *const tcp, const struct nlmsghdr *const nlmsghdr, const uint8_t family, const kernel_ulong_t addr, const kernel_ulong_t len) argument
423 decode_packet_diag_req(struct tcb *const tcp, const struct nlmsghdr *const nlmsghdr, const uint8_t family, const kernel_ulong_t addr, const kernel_ulong_t len) argument
451 decode_packet_diag_msg(struct tcb *const tcp, const struct nlmsghdr *const nlmsghdr, const uint8_t family, const kernel_ulong_t addr, const kernel_ulong_t len) argument
509 decode_inet_diag_req_compat(struct tcb *const tcp, const struct nlmsghdr *const nlmsghdr, const uint8_t family, const kernel_ulong_t addr, const kernel_ulong_t len) argument
551 decode_inet_diag_req_v2(struct tcb *const tcp, const struct nlmsghdr *const nlmsghdr, const uint8_t family, const kernel_ulong_t addr, const kernel_ulong_t len) argument
592 decode_inet_diag_req(struct tcb *const tcp, const struct nlmsghdr *const nlmsghdr, const uint8_t family, const kernel_ulong_t addr, const kernel_ulong_t len) argument
717 decode_inet_diag_msg(struct tcb *const tcp, const struct nlmsghdr *const nlmsghdr, const uint8_t family, const kernel_ulong_t addr, const kernel_ulong_t len) argument
762 decode_smc_diag_req(struct tcb *const tcp, const struct nlmsghdr *const nlmsghdr, const uint8_t family, const kernel_ulong_t addr, const kernel_ulong_t len) argument
793 decode_smc_diag_msg(struct tcb *const tcp, const struct nlmsghdr *const nlmsghdr, const uint8_t family, const kernel_ulong_t addr, const kernel_ulong_t len) argument
857 decode_netlink_sock_diag(struct tcb *const tcp, const struct nlmsghdr *const nlmsghdr, const kernel_ulong_t addr, const kernel_ulong_t len) argument
[all...]
/external/wpa_supplicant_8/hostapd/src/drivers/
H A Dpriv_netlink.h50 #define NLMSG_HDRLEN ((int) NLMSG_ALIGN(sizeof(struct nlmsghdr)))
51 #define NLMSG_LENGTH(len) ((len) + NLMSG_ALIGN(sizeof(struct nlmsghdr)))
55 (struct nlmsghdr *) \
57 #define NLMSG_OK(nlh,len) ((len) >= (int) sizeof(struct nlmsghdr) && \
58 (nlh)->nlmsg_len >= sizeof(struct nlmsghdr) && \
84 struct nlmsghdr struct
/external/wpa_supplicant_8/src/drivers/
H A Dpriv_netlink.h50 #define NLMSG_HDRLEN ((int) NLMSG_ALIGN(sizeof(struct nlmsghdr)))
51 #define NLMSG_LENGTH(len) ((len) + NLMSG_ALIGN(sizeof(struct nlmsghdr)))
55 (struct nlmsghdr *) \
57 #define NLMSG_OK(nlh,len) ((len) >= (int) sizeof(struct nlmsghdr) && \
58 (nlh)->nlmsg_len >= sizeof(struct nlmsghdr) && \
84 struct nlmsghdr struct
/external/wpa_supplicant_8/wpa_supplicant/src/drivers/
H A Dpriv_netlink.h50 #define NLMSG_HDRLEN ((int) NLMSG_ALIGN(sizeof(struct nlmsghdr)))
51 #define NLMSG_LENGTH(len) ((len) + NLMSG_ALIGN(sizeof(struct nlmsghdr)))
55 (struct nlmsghdr *) \
57 #define NLMSG_OK(nlh,len) ((len) >= (int) sizeof(struct nlmsghdr) && \
58 (nlh)->nlmsg_len >= sizeof(struct nlmsghdr) && \
84 struct nlmsghdr struct
/external/libnl/include/linux-private/linux/
H A Dnetlink.h38 struct nlmsghdr { struct
77 #define NLMSG_HDRLEN ((int) NLMSG_ALIGN(sizeof(struct nlmsghdr)))
82 (struct nlmsghdr*)(((char*)(nlh)) + NLMSG_ALIGN((nlh)->nlmsg_len)))
83 #define NLMSG_OK(nlh,len) ((len) >= (int)sizeof(struct nlmsghdr) && \
84 (nlh)->nlmsg_len >= sizeof(struct nlmsghdr) && \
97 struct nlmsghdr msg;
/external/iproute2/include/linux/
H A Dnetlink.h42 struct nlmsghdr { struct
82 #define NLMSG_HDRLEN ((int) NLMSG_ALIGN(sizeof(struct nlmsghdr)))
87 (struct nlmsghdr*)(((char*)(nlh)) + NLMSG_ALIGN((nlh)->nlmsg_len)))
88 #define NLMSG_OK(nlh,len) ((len) >= (int)sizeof(struct nlmsghdr) && \
89 (nlh)->nlmsg_len >= sizeof(struct nlmsghdr) && \
102 struct nlmsghdr msg;
/external/kernel-headers/original/uapi/linux/
H A Dnetlink.h42 struct nlmsghdr { struct
82 #define NLMSG_HDRLEN ((int) NLMSG_ALIGN(sizeof(struct nlmsghdr)))
87 (struct nlmsghdr*)(((char*)(nlh)) + NLMSG_ALIGN((nlh)->nlmsg_len)))
88 #define NLMSG_OK(nlh,len) ((len) >= (int)sizeof(struct nlmsghdr) && \
89 (nlh)->nlmsg_len >= sizeof(struct nlmsghdr) && \
102 struct nlmsghdr msg;

Completed in 2032 milliseconds