OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:nlhdr
(Results
1 - 3
of
3
) sorted by null
/external/ltp/testcases/kernel/connectors/pec/
pec_listener.c
68
struct nlmsghdr *
nlhdr
;
variable in typeref:struct:nlmsghdr
93
memset(
nlhdr
, 0, NLMSG_SPACE(MAX_MSG_SIZE));
95
nlhdr
->nlmsg_seq = seq++;
96
nlhdr
->nlmsg_pid = getpid();
97
nlhdr
->nlmsg_type = NLMSG_DONE;
98
nlhdr
->nlmsg_len = NLMSG_LENGTH(sizeof(*cnmsg) + cnmsg->len);
99
nlhdr
->nlmsg_flags = 0;
100
memcpy(NLMSG_DATA(
nlhdr
), cnmsg, sizeof(*cnmsg) + cnmsg->len);
103
iov.iov_base = (void *)
nlhdr
;
104
iov.iov_len =
nlhdr
->nlmsg_len
[
all
...]
/system/netd/server/
NFLogListener.cpp
65
nlmsghdr
nlhdr
;
member in struct:android::net::__anon3200::__anon3201
71
msg.
nlhdr
.nlmsg_len = sizeof(msg);
72
msg.
nlhdr
.nlmsg_type = kNFLogConfigMsgType;
73
msg.
nlhdr
.nlmsg_flags = NLM_F_REQUEST;
86
nlmsghdr
nlhdr
;
member in struct:android::net::__anon3200::__anon3202
92
msg.
nlhdr
.nlmsg_len = sizeof(msg);
93
msg.
nlhdr
.nlmsg_type = kNFLogConfigMsgType;
94
msg.
nlhdr
.nlmsg_flags = NLM_F_REQUEST;
107
nlmsghdr
nlhdr
;
member in struct:android::net::__anon3200::__anon3203
113
msg.
nlhdr
.nlmsg_len = sizeof(msg)
127
nlmsghdr
nlhdr
;
member in struct:android::net::__anon3200::__anon3204
[
all
...]
/external/ltp/testcases/lib/
tst_net_iface_prefix.c
63
struct nlmsghdr
nlhdr
;
member in struct:__anon28549
72
msg.
nlhdr
.nlmsg_len = NLMSG_LENGTH(sizeof(struct ifaddrmsg));
73
msg.
nlhdr
.nlmsg_flags = NLM_F_REQUEST | NLM_F_ROOT;
74
msg.
nlhdr
.nlmsg_type = RTM_GETADDR;
77
SAFE_SEND(1, sock, &msg, msg.
nlhdr
.nlmsg_len, 0);
Completed in 233 milliseconds