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
652
int client_socket;
tools/testing/selftests/landlock/scoped_abstract_unix_test.c
681
client_socket = socket(AF_UNIX, variant->type, 0);
tools/testing/selftests/landlock/scoped_abstract_unix_test.c
682
ASSERT_LE(0, client_socket);
tools/testing/selftests/landlock/scoped_abstract_unix_test.c
686
err = connect(client_socket, &self->address.unix_addr,
tools/testing/selftests/landlock/scoped_abstract_unix_test.c
694
EXPECT_EQ(0, close(client_socket));
tools/testing/selftests/landlock/scoped_signal_test.c
477
int client_socket;
tools/testing/selftests/landlock/scoped_signal_test.c
484
client_socket = socket(AF_UNIX, SOCK_STREAM, 0);
tools/testing/selftests/landlock/scoped_signal_test.c
485
ASSERT_LE(0, client_socket);
tools/testing/selftests/landlock/scoped_signal_test.c
489
ASSERT_EQ(0, connect(client_socket, &server_address.unix_addr,
tools/testing/selftests/landlock/scoped_signal_test.c
498
ASSERT_EQ(1, send(client_socket, ".", 1, MSG_OOB));
tools/testing/selftests/landlock/scoped_signal_test.c
499
EXPECT_EQ(0, close(client_socket));