/external/strace/xlat/ |
netlink_types.h | 20 #if defined(NLMSG_DONE) || (defined(HAVE_DECL_NLMSG_DONE) && HAVE_DECL_NLMSG_DONE) 22 static_assert((NLMSG_DONE) == (0x3), "NLMSG_DONE != 0x3"); 25 # define NLMSG_DONE 0x3 47 XLAT(NLMSG_DONE),
|
/bionic/libc/bionic/ |
bionic_netlink.cpp | 86 if (hdr->nlmsg_type == NLMSG_DONE) return true; 96 // We only get here if recv fails before we see a NLMSG_DONE.
|
/external/libnl/include/netlink/ |
netlink-kernel.h | 71 * by NLMSG_DONE. 163 #define NLMSG_DONE 0x3
|
/external/strace/ |
netlink_netfilter.c | 51 if (nlmsghdr->nlmsg_type == NLMSG_DONE)
|
netlink_sock_diag.c | 73 if (nlmsghdr->nlmsg_type == NLMSG_DONE)
|
netlink_route.c | 132 if (nlmsghdr->nlmsg_type == NLMSG_DONE)
|
netlink.c | 583 * While most of NLMSG_DONE messages indeed have payloads 585 * so pass payloads of NLMSG_DONE messages to family-specific 592 || nlmsghdr->nlmsg_type == NLMSG_DONE) 599 if (nlmsghdr->nlmsg_type == NLMSG_DONE && len == sizeof(int)) {
|
/external/iproute2/tc/ |
tc_monitor.c | 65 n->nlmsg_type != NLMSG_DONE) {
|
/device/generic/goldfish/network/netmgr/ |
monitor.cpp | 79 while (NLMSG_OK(hdr, length) && hdr->nlmsg_type != NLMSG_DONE) {
|
/device/google/cuttlefish_common/common/libs/net/ |
netlink_client.cpp | 84 if (nh->nlmsg_type == NLMSG_DONE)
|
/external/libnl/include/linux-private/linux/ |
netlink.h | 49 #define NLM_F_MULTI 2 /* Multipart message, terminated by NLMSG_DONE */ 90 #define NLMSG_DONE 0x3 /* End of a dump */
|
/external/ltp/testcases/kernel/connectors/pec/ |
pec_listener.c | 97 nlhdr->nlmsg_type = NLMSG_DONE; 302 case NLMSG_DONE:
|
/bionic/libc/kernel/uapi/linux/ |
netlink.h | 89 #define NLMSG_DONE 0x3
|
/external/iproute2/include/uapi/linux/ |
netlink.h | 55 #define NLM_F_MULTI 0x02 /* Multipart message, terminated by NLMSG_DONE */ 104 #define NLMSG_DONE 0x3 /* End of a dump */
|
/external/kernel-headers/original/uapi/linux/ |
netlink.h | 55 #define NLM_F_MULTI 0x02 /* Multipart message, terminated by NLMSG_DONE */ 104 #define NLMSG_DONE 0x3 /* End of a dump */
|
/external/ltp/testcases/kernel/crypto/ |
crypto_user01.c | 145 if (nh->nlmsg_type == NLMSG_DONE)
|
/external/strace/tests/ |
netlink_netfilter.c | 94 TEST_NETLINK(fd, nlh0, NLMSG_DONE, NLM_F_REQUEST,
|
netlink_protocol.c | 327 /* NLMSG_DONE message without enough room for an integer payload */ 331 .nlmsg_type = NLMSG_DONE, 336 printf("sendto(%d, {{len=%u, type=NLMSG_DONE, flags=NLM_F_MULTI" 341 /* NLMSG_DONE message with enough room for an oddly short payload */ 349 printf("sendto(%d, {{len=%u, type=NLMSG_DONE, flags=NLM_F_MULTI, seq=0" 353 /* NLMSG_DONE message with enough room for an integer payload */ 357 .nlmsg_type = NLMSG_DONE, 363 printf("sendto(%d, {{len=%u, type=NLMSG_DONE, flags=NLM_F_MULTI"
|
/external/strace/tests-m32/ |
netlink_netfilter.c | 94 TEST_NETLINK(fd, nlh0, NLMSG_DONE, NLM_F_REQUEST,
|
netlink_protocol.c | 327 /* NLMSG_DONE message without enough room for an integer payload */ 331 .nlmsg_type = NLMSG_DONE, 336 printf("sendto(%d, {{len=%u, type=NLMSG_DONE, flags=NLM_F_MULTI" 341 /* NLMSG_DONE message with enough room for an oddly short payload */ 349 printf("sendto(%d, {{len=%u, type=NLMSG_DONE, flags=NLM_F_MULTI, seq=0" 353 /* NLMSG_DONE message with enough room for an integer payload */ 357 .nlmsg_type = NLMSG_DONE, 363 printf("sendto(%d, {{len=%u, type=NLMSG_DONE, flags=NLM_F_MULTI"
|
/external/strace/tests-mx32/ |
netlink_netfilter.c | 94 TEST_NETLINK(fd, nlh0, NLMSG_DONE, NLM_F_REQUEST,
|
netlink_protocol.c | 327 /* NLMSG_DONE message without enough room for an integer payload */ 331 .nlmsg_type = NLMSG_DONE, 336 printf("sendto(%d, {{len=%u, type=NLMSG_DONE, flags=NLM_F_MULTI" 341 /* NLMSG_DONE message with enough room for an oddly short payload */ 349 printf("sendto(%d, {{len=%u, type=NLMSG_DONE, flags=NLM_F_MULTI, seq=0" 353 /* NLMSG_DONE message with enough room for an integer payload */ 357 .nlmsg_type = NLMSG_DONE, 363 printf("sendto(%d, {{len=%u, type=NLMSG_DONE, flags=NLM_F_MULTI"
|
/external/iputils/ninfod/ |
ni_ifaddrs.c | 191 if (nh->nlmsg_type == NLMSG_DONE) { 402 if (nlh->nlmsg_type == NLMSG_DONE) {
|
/external/dnsmasq/src/ |
netlink.c | 164 else if (h->nlmsg_type == NLMSG_DONE) {
|
/external/libnfnetlink/src/ |
rtnl.c | 175 if (h->nlmsg_type == NLMSG_DONE) { 176 rtnl_log(LOG_NOTICE, "NLMSG_DONE");
|