Symbol: client_socket
tools/testing/selftests/bpf/network_helpers.c
302
fd = client_socket(addr->ss_family, type, opts);
tools/testing/selftests/bpf/network_helpers.h
72
int client_socket(int family, int type,
tools/testing/selftests/bpf/prog_tests/ip_check_defrag.c
202
client_tx_fd = client_socket(family, SOCK_RAW, &tx_ops);
tools/testing/selftests/bpf/prog_tests/ip_check_defrag.c
211
client_rx_fd = client_socket(family, SOCK_DGRAM, &rx_opts);
tools/testing/selftests/bpf/prog_tests/sk_lookup.c
1197
client_fd = client_socket(AF_INET, SOCK_STREAM, NULL);
tools/testing/selftests/bpf/prog_tests/sk_lookup.c
818
client_fd = client_socket(family, t->sotype, NULL);
tools/testing/selftests/bpf/prog_tests/sk_lookup.c
946
client = client_socket(family, t->sotype, NULL);
tools/testing/selftests/landlock/scoped_abstract_unix_test.c
711
int client_socket;
tools/testing/selftests/landlock/scoped_abstract_unix_test.c
740
client_socket = socket(AF_UNIX, variant->type, 0);
tools/testing/selftests/landlock/scoped_abstract_unix_test.c
741
ASSERT_LE(0, client_socket);
tools/testing/selftests/landlock/scoped_abstract_unix_test.c
745
err = connect(client_socket, &self->address.unix_addr,
tools/testing/selftests/landlock/scoped_abstract_unix_test.c
753
EXPECT_EQ(0, close(client_socket));
tools/testing/selftests/landlock/scoped_signal_test.c
498
int client_socket;
tools/testing/selftests/landlock/scoped_signal_test.c
505
client_socket = socket(AF_UNIX, SOCK_STREAM, 0);
tools/testing/selftests/landlock/scoped_signal_test.c
506
ASSERT_LE(0, client_socket);
tools/testing/selftests/landlock/scoped_signal_test.c
510
ASSERT_EQ(0, connect(client_socket, &server_address.unix_addr,
tools/testing/selftests/landlock/scoped_signal_test.c
519
ASSERT_EQ(1, send(client_socket, ".", 1, MSG_OOB));
tools/testing/selftests/landlock/scoped_signal_test.c
520
EXPECT_EQ(0, close(client_socket));