Lines Matching full:new

28 	int new;  member
41 { .opt = SO_SNDBUF, .new = 8123, .expected = 8123 * 2, },
42 { .opt = SO_RCVBUF, .new = 8123, .expected = 8123 * 2, },
44 { .opt = SO_PRIORITY, .new = 0xeb9f, .expected = 0xeb9f, },
46 { .opt = SO_RCVLOWAT, .new = 8123, .expected = 8123, },
47 { .opt = SO_MARK, .new = 0xeb9f, .expected = 0xeb9f, },
48 { .opt = SO_MAX_PACING_RATE, .new = 0xeb9f, .expected = 0xeb9f, },
55 { .opt = TCP_KEEPIDLE, .new = 123, .expected = 123, .restore = 321, },
56 { .opt = TCP_KEEPINTVL, .new = 123, .expected = 123, .restore = 321, },
57 { .opt = TCP_KEEPCNT, .new = 123, .expected = 123, .restore = 124, },
58 { .opt = TCP_SYNCNT, .new = 123, .expected = 123, .restore = 124, },
59 { .opt = TCP_WINDOW_CLAMP, .new = 8123, .expected = 8123, .restore = 8124, },
62 { .opt = TCP_USER_TIMEOUT, .new = 123400, .expected = 123400, },
63 { .opt = TCP_NOTSENT_LOWAT, .new = 1314, .expected = 1314, },
68 { .opt = IP_TOS, .new = 0xe1, .expected = 0xe1, .tcp_expected = 0xe0, },
73 { .opt = IPV6_TCLASS, .new = 0xe1, .expected = 0xe1, .tcp_expected = 0xe0, },
87 int old, tmp, new, opt = t->opt; in bpf_test_sockopt_flip() local
97 new = !old; in bpf_test_sockopt_flip()
98 if (bpf_setsockopt(ctx, level, opt, &new, sizeof(new))) in bpf_test_sockopt_flip()
101 tmp != new) in bpf_test_sockopt_flip()
114 int old, tmp, new, expected, opt; in bpf_test_sockopt_int() local
117 new = t->new; in bpf_test_sockopt_int()
124 old == new) in bpf_test_sockopt_int()
127 if (bpf_setsockopt(ctx, level, opt, &new, sizeof(new))) in bpf_test_sockopt_int()