Home
last modified time | relevance | path

Searched defs:nlh (Results 1 – 25 of 40) sorted by relevance

12

/external/libnl/lib/netfilter/
Dnfnl.c131 uint8_t nfnlmsg_subsys(struct nlmsghdr *nlh) in nfnlmsg_subsys()
140 uint8_t nfnlmsg_subtype(struct nlmsghdr *nlh) in nfnlmsg_subtype()
149 uint8_t nfnlmsg_family(struct nlmsghdr *nlh) in nfnlmsg_family()
160 uint16_t nfnlmsg_res_id(struct nlmsghdr *nlh) in nfnlmsg_res_id()
234 struct nlmsghdr *nlh; in nfnlmsg_put() local
Dlog.c74 int nfnl_log_pf_bind(struct nl_sock *nlh, uint8_t pf) in nfnl_log_pf_bind()
90 int nfnl_log_pf_unbind(struct nl_sock *nlh, uint8_t pf) in nfnl_log_pf_unbind()
182 int nfnl_log_create(struct nl_sock *nlh, const struct nfnl_log *log) in nfnl_log_create()
199 int nfnl_log_change(struct nl_sock *nlh, const struct nfnl_log *log) in nfnl_log_change()
220 int nfnl_log_delete(struct nl_sock *nlh, const struct nfnl_log *log) in nfnl_log_delete()
Dqueue.c84 int nfnl_queue_pf_bind(struct nl_sock *nlh, uint8_t pf) in nfnl_queue_pf_bind()
100 int nfnl_queue_pf_unbind(struct nl_sock *nlh, uint8_t pf) in nfnl_queue_pf_unbind()
182 int nfnl_queue_create(struct nl_sock *nlh, const struct nfnl_queue *queue) in nfnl_queue_create()
199 int nfnl_queue_change(struct nl_sock *nlh, const struct nfnl_queue *queue) in nfnl_queue_change()
220 int nfnl_queue_delete(struct nl_sock *nlh, const struct nfnl_queue *queue) in nfnl_queue_delete()
Dqueue_msg.c62 int nfnlmsg_queue_msg_parse(struct nlmsghdr *nlh, in nfnlmsg_queue_msg_parse()
149 struct nlmsghdr *nlh, struct nl_parser_param *pp) in queue_msg_parser()
199 int nfnl_queue_msg_send_verdict(struct nl_sock *nlh, in nfnl_queue_msg_send_verdict()
224 int nfnl_queue_msg_send_verdict_payload(struct nl_sock *nlh, in nfnl_queue_msg_send_verdict_payload()
Dlog_msg.c65 int nfnlmsg_log_msg_parse(struct nlmsghdr *nlh, struct nfnl_log_msg **result) in nfnlmsg_log_msg_parse()
170 struct nlmsghdr *nlh, struct nl_parser_param *pp) in log_msg_parser()
Dct.c275 int nfnlmsg_ct_group(struct nlmsghdr *nlh) in nfnlmsg_ct_group()
290 int nfnlmsg_ct_parse(struct nlmsghdr *nlh, struct nfnl_ct **result) in nfnlmsg_ct_parse()
358 struct nlmsghdr *nlh, struct nl_parser_param *pp) in ct_msg_parser()
/external/libnl/lib/
Dmsg.c218 void *nlmsg_data(const struct nlmsghdr *nlh) in nlmsg_data()
223 void *nlmsg_tail(const struct nlmsghdr *nlh) in nlmsg_tail()
232 int nlmsg_len(const struct nlmsghdr *nlh) in nlmsg_len()
249 struct nlattr *nlmsg_attrdata(const struct nlmsghdr *nlh, int hdrlen) in nlmsg_attrdata()
260 int nlmsg_attrlen(const struct nlmsghdr *nlh, int hdrlen) in nlmsg_attrlen()
272 int nlmsg_valid_hdr(const struct nlmsghdr *nlh, int hdrlen) in nlmsg_valid_hdr()
285 int nlmsg_ok(const struct nlmsghdr *nlh, int remaining) in nlmsg_ok()
300 struct nlmsghdr *nlmsg_next(struct nlmsghdr *nlh, int *remaining) in nlmsg_next()
319 int nlmsg_parse(struct nlmsghdr *nlh, int hdrlen, struct nlattr *tb[], in nlmsg_parse()
337 struct nlattr *nlmsg_find_attr(struct nlmsghdr *nlh, int hdrlen, int attrtype) in nlmsg_find_attr()
[all …]
/external/libnl/lib/genl/
Dgenl.c146 int genlmsg_valid_hdr(struct nlmsghdr *nlh, int hdrlen) in genlmsg_valid_hdr()
160 int genlmsg_validate(struct nlmsghdr *nlh, int hdrlen, int maxtype, in genlmsg_validate()
173 int genlmsg_parse(struct nlmsghdr *nlh, int hdrlen, struct nlattr *tb[], in genlmsg_parse()
201 struct nlmsghdr *nlh = (struct nlmsghdr *)((unsigned char *)gnlh - in genlmsg_len() local
249 struct nlmsghdr *nlh; in genlmsg_put() local
Dmngt.c94 struct nlmsghdr *nlh, struct nl_parser_param *pp) in genl_msg_parser()
/external/wpa_supplicant_8/src/drivers/
Dpriv_netlink.h53 #define NLMSG_DATA(nlh) ((void*) (((char*) nlh) + NLMSG_LENGTH(0))) argument
54 #define NLMSG_NEXT(nlh,len) ((len) -= NLMSG_ALIGN((nlh)->nlmsg_len), \ argument
57 #define NLMSG_OK(nlh,len) ((len) >= (int) sizeof(struct nlmsghdr) && \ argument
60 #define NLMSG_PAYLOAD(nlh,len) ((nlh)->nlmsg_len - NLMSG_SPACE((len))) argument
/external/iproute2/include/linux/
Dnetlink.h83 #define NLMSG_DATA(nlh) ((void*)(((char*)nlh) + NLMSG_LENGTH(0))) argument
84 #define NLMSG_NEXT(nlh,len) ((len) -= NLMSG_ALIGN((nlh)->nlmsg_len), \ argument
86 #define NLMSG_OK(nlh,len) ((len) >= (int)sizeof(struct nlmsghdr) && \ argument
89 #define NLMSG_PAYLOAD(nlh,len) ((nlh)->nlmsg_len - NLMSG_SPACE((len))) argument
/external/libnl/include/linux/
Dnetlink.h80 #define NLMSG_DATA(nlh) ((void*)(((char*)nlh) + NLMSG_LENGTH(0))) argument
81 #define NLMSG_NEXT(nlh,len) ((len) -= NLMSG_ALIGN((nlh)->nlmsg_len), \ argument
83 #define NLMSG_OK(nlh,len) ((len) >= (int)sizeof(struct nlmsghdr) && \ argument
86 #define NLMSG_PAYLOAD(nlh,len) ((nlh)->nlmsg_len - NLMSG_SPACE((len))) argument
/external/libselinux/src/
Davc_internal.c105 struct nlmsghdr *nlh = (struct nlmsghdr *)buf; in avc_netlink_receive() local
161 struct nlmsghdr *nlh = (struct nlmsghdr *)buf; in avc_netlink_process() local
/external/selinux/libselinux/src/
Davc_internal.c105 struct nlmsghdr *nlh = (struct nlmsghdr *)buf; in avc_netlink_receive() local
161 struct nlmsghdr *nlh = (struct nlmsghdr *)buf; in avc_netlink_process() local
/external/iptables/libipq/
Dlibipq.c129 struct nlmsghdr *nlh; in ipq_netlink_recvfrom() local
272 struct nlmsghdr nlh; in ipq_set_mode() member
321 struct nlmsghdr nlh; in ipq_set_verdict() local
/external/libnl/include/netlink/
Dmsg.h122 #define nlmsg_for_each_attr(pos, nlh, hdrlen, rem) \ argument
/external/kernel-headers/original/uapi/linux/
Dnetlink.h84 #define NLMSG_DATA(nlh) ((void*)(((char*)nlh) + NLMSG_LENGTH(0))) argument
85 #define NLMSG_NEXT(nlh,len) ((len) -= NLMSG_ALIGN((nlh)->nlmsg_len), \ argument
87 #define NLMSG_OK(nlh,len) ((len) >= (int)sizeof(struct nlmsghdr) && \ argument
90 #define NLMSG_PAYLOAD(nlh,len) ((nlh)->nlmsg_len - NLMSG_SPACE((len))) argument
/external/libnl/src/
Dnl-fib-lookup.c28 struct nl_sock *nlh; in main() local
Ddisabled-nl-qdisc-add.c128 struct nl_sock *nlh; in main() local
/external/iputils/ninfod/
Dni_ifaddrs.c96 struct nlmsghdr *nlh; member
220 struct nlmsghdr *nlh = NULL; in nl_getlist() local
353 struct nlmsghdr *nlh, *nlh0; in ni_ifaddrs() local
/external/strace/tests/
Dnetlink_inet_diag.c16 struct nlmsghdr nlh; in send_query() member
Dnetlink_unix_diag.c23 struct nlmsghdr nlh; in send_query() member
/external/iproute2/genl/
Dctrl.c45 struct nlmsghdr *nlh; in genl_ctrl_resolve_family() local
287 struct nlmsghdr *nlh; in ctrl_list() local
/external/strace/
Dsocketutils.c27 struct nlmsghdr nlh; in inet_send_query() member
173 struct nlmsghdr nlh; in unix_send_query() member
/external/libnl/include/netlink/genl/
Dmngt.h28 struct nlmsghdr * nlh; member

12