Home | History | Annotate | Download | only in tests-mx32

Lines Matching defs:fd

38 test_nlmsg_type(const int fd)
47 rc = sendto(fd, &nlh, sizeof(nlh), MSG_DONTWAIT, NULL, 0);
51 fd, nlh.nlmsg_len, (unsigned) sizeof(nlh), sprintrc(rc));
55 test_nlmsg_flags(const int fd)
64 rc = sendto(fd, &nlh, sizeof(nlh), MSG_DONTWAIT, NULL, 0);
68 fd, nlh.nlmsg_len, (unsigned) sizeof(nlh), sprintrc(rc));
72 rc = sendto(fd, &nlh, sizeof(nlh), MSG_DONTWAIT, NULL, 0);
76 fd, nlh.nlmsg_len, (unsigned) sizeof(nlh), sprintrc(rc));
80 rc = sendto(fd, &nlh, sizeof(nlh), MSG_DONTWAIT, NULL, 0);
84 fd, nlh.nlmsg_len, (unsigned) sizeof(nlh), sprintrc(rc));
88 rc = sendto(fd, &nlh, sizeof(nlh), MSG_DONTWAIT, NULL, 0);
92 fd, nlh.nlmsg_len, NLM_F_REPLACE,
98 skip_if_unavailable("/proc/self/fd/");
100 int fd = create_nl_socket(NETLINK_XFRM);
102 test_nlmsg_type(fd);
103 test_nlmsg_flags(fd);