Lines Matching +full:- +full:1
4 * SPDX-License-Identifier: Apache-2.0
16 #pragma GCC diagnostic ignored "-Wunused-value"
28 zassert_true((sa_family_t)-1 >= 0); in ZTEST()
30 zassert_not_equal(-1, offsetof(struct sockaddr, sa_family)); in ZTEST()
34 * Fixing that is a (possibly breaking) tree-wide change. in ZTEST()
36 /* zassert_not_equal(-1, offsetof(struct sockaddr, sa_data)); */ /* not implemented */ in ZTEST()
38 zassert_not_equal(-1, offsetof(struct sockaddr_storage, ss_family)); in ZTEST()
42 zassert_not_equal(-1, offsetof(struct msghdr, msg_name)); in ZTEST()
43 zassert_not_equal(-1, offsetof(struct msghdr, msg_namelen)); in ZTEST()
44 zassert_not_equal(-1, offsetof(struct msghdr, msg_iov)); in ZTEST()
45 zassert_not_equal(-1, offsetof(struct msghdr, msg_iovlen)); in ZTEST()
46 zassert_not_equal(-1, offsetof(struct msghdr, msg_control)); in ZTEST()
47 zassert_not_equal(-1, offsetof(struct msghdr, msg_controllen)); in ZTEST()
48 zassert_not_equal(-1, offsetof(struct msghdr, msg_flags)); in ZTEST()
50 zassert_not_equal(-1, offsetof(struct cmsghdr, cmsg_len)); in ZTEST()
51 zassert_not_equal(-1, offsetof(struct cmsghdr, cmsg_level)); in ZTEST()
52 zassert_not_equal(-1, offsetof(struct cmsghdr, cmsg_type)); in ZTEST()
58 zassert_not_equal(-1, offsetof(struct linger, l_onoff)); in ZTEST()
59 zassert_not_equal(-1, offsetof(struct linger, l_linger)); in ZTEST()
61 zassert_not_equal(-1, SOCK_DGRAM); in ZTEST()
62 zassert_not_equal(-1, SOCK_RAW); in ZTEST()
63 /* zassert_not_equal(-1, SOCK_SEQPACKET); */ /* not implemented */ in ZTEST()
64 zassert_not_equal(-1, SOCK_STREAM); in ZTEST()
66 zassert_not_equal(-1, SO_ACCEPTCONN); in ZTEST()
67 zassert_not_equal(-1, SO_BROADCAST); in ZTEST()
68 zassert_not_equal(-1, SO_DEBUG); in ZTEST()
69 zassert_not_equal(-1, SO_DONTROUTE); in ZTEST()
70 zassert_not_equal(-1, SO_ERROR); in ZTEST()
71 zassert_not_equal(-1, SO_KEEPALIVE); in ZTEST()
72 zassert_not_equal(-1, SO_LINGER); in ZTEST()
73 zassert_not_equal(-1, SO_OOBINLINE); in ZTEST()
74 zassert_not_equal(-1, SO_RCVBUF); in ZTEST()
75 zassert_not_equal(-1, SO_RCVLOWAT); in ZTEST()
76 zassert_not_equal(-1, SO_RCVTIMEO); in ZTEST()
77 zassert_not_equal(-1, SO_REUSEADDR); in ZTEST()
78 zassert_not_equal(-1, SO_SNDBUF); in ZTEST()
79 zassert_not_equal(-1, SO_SNDLOWAT); in ZTEST()
80 zassert_not_equal(-1, SO_SNDTIMEO); in ZTEST()
81 zassert_not_equal(-1, SO_TYPE); in ZTEST()
83 zassert_not_equal(-1, SOMAXCONN); in ZTEST()
85 /* zassert_not_equal(-1, MSG_CTRUNC); */ /* not implemented */ in ZTEST()
86 /* zassert_not_equal(-1, MSG_DONTROUTE); */ /* not implemented */ in ZTEST()
87 /* zassert_not_equal(-1, MSG_EOR); */ /* not implemented */ in ZTEST()
88 /* zassert_not_equal(-1, MSG_OOB); */ /* not implemented */ in ZTEST()
89 /* zassert_not_equal(-1, MSG_NOSIGNAL); */ /* not implemented */ in ZTEST()
90 zassert_not_equal(-1, MSG_PEEK); in ZTEST()
91 zassert_not_equal(-1, MSG_TRUNC); in ZTEST()
92 zassert_not_equal(-1, MSG_WAITALL); in ZTEST()
94 zassert_not_equal(-1, AF_INET); in ZTEST()
95 zassert_not_equal(-1, AF_INET6); in ZTEST()
96 zassert_not_equal(-1, AF_UNIX); in ZTEST()
97 zassert_not_equal(-1, AF_UNSPEC); in ZTEST()
99 zassert_not_equal(-1, SHUT_RD); in ZTEST()
100 zassert_not_equal(-1, SHUT_RDWR); in ZTEST()
101 zassert_not_equal(-1, SHUT_WR); in ZTEST()