Symbol: test_open_rel
tools/testing/selftests/landlock/fs_test.c
1861
test_open_rel(dirfd, "..", O_RDONLY));
tools/testing/selftests/landlock/fs_test.c
1862
ASSERT_EQ(0, test_open_rel(dirfd, ".", O_RDONLY));
tools/testing/selftests/landlock/fs_test.c
1866
ASSERT_EQ(0, test_open_rel(dirfd, "./s2d3", O_RDONLY));
tools/testing/selftests/landlock/fs_test.c
1869
ASSERT_EQ(0, test_open_rel(dirfd, "./s1d3", O_RDONLY));
tools/testing/selftests/landlock/fs_test.c
1874
ASSERT_EQ(0, test_open_rel(dirfd, "/..", O_RDONLY));
tools/testing/selftests/landlock/fs_test.c
1875
ASSERT_EQ(0, test_open_rel(dirfd, "/", O_RDONLY));
tools/testing/selftests/landlock/fs_test.c
1876
ASSERT_EQ(0, test_open_rel(dirfd, "/f1", O_RDONLY));
tools/testing/selftests/landlock/fs_test.c
1877
ASSERT_EQ(0, test_open_rel(dirfd, "/s1d3", O_RDONLY));
tools/testing/selftests/landlock/fs_test.c
1881
ASSERT_EQ(EACCES, test_open_rel(dirfd, "../../s1d1", O_RDONLY));
tools/testing/selftests/landlock/fs_test.c
1882
ASSERT_EQ(0, test_open_rel(dirfd, "../../s1d1/s1d2", O_RDONLY));
tools/testing/selftests/landlock/fs_test.c
1883
ASSERT_EQ(0, test_open_rel(dirfd, "../../s1d1/s1d2/s1d3",
tools/testing/selftests/landlock/fs_test.c
1886
ASSERT_EQ(EACCES, test_open_rel(dirfd, "../../s2d1", O_RDONLY));
tools/testing/selftests/landlock/fs_test.c
1887
ASSERT_EQ(0, test_open_rel(dirfd, "../../s2d1/s2d2", O_RDONLY));
tools/testing/selftests/landlock/fs_test.c
1888
ASSERT_EQ(0, test_open_rel(dirfd, "../../s2d1/s2d2/s2d3",
tools/testing/selftests/landlock/fs_test.c
450
return test_open_rel(AT_FDCWD, path, flags);
tools/testing/selftests/landlock/fs_test.c
5084
EXPECT_EQ(0, test_open_rel(bind_s1d3_fd, file1_name, O_RDONLY));
tools/testing/selftests/landlock/fs_test.c
5085
EXPECT_EQ(0, test_open_rel(bind_s1d3_fd, file2_name, O_RDONLY));
tools/testing/selftests/landlock/fs_test.c
5086
EXPECT_EQ(0, test_open_rel(bind_s1d3_fd, "..", O_RDONLY | O_DIRECTORY));
tools/testing/selftests/landlock/fs_test.c
5096
EXPECT_EQ(0, test_open_rel(bind_s1d3_fd, file1_name, O_RDONLY));
tools/testing/selftests/landlock/fs_test.c
5097
EXPECT_EQ(0, test_open_rel(bind_s1d3_fd, file2_name, O_RDONLY));
tools/testing/selftests/landlock/fs_test.c
5104
test_open_rel(bind_s1d3_fd, "..", O_RDONLY | O_DIRECTORY));
tools/testing/selftests/landlock/fs_test.c
5116
EXPECT_EQ(0, test_open_rel(bind_s1d3_fd, file1_name, O_RDONLY));
tools/testing/selftests/landlock/fs_test.c
5117
EXPECT_EQ(EACCES, test_open_rel(bind_s1d3_fd, file2_name, O_RDONLY));
tools/testing/selftests/landlock/fs_test.c
5128
EXPECT_EQ(0, test_open_rel(bind_s1d3_fd, file1_name, O_RDONLY));
tools/testing/selftests/landlock/fs_test.c
5129
EXPECT_EQ(EACCES, test_open_rel(bind_s1d3_fd, file2_name, O_RDONLY));
tools/testing/selftests/landlock/fs_test.c
5186
EXPECT_EQ(0, test_open_rel(bind_s1d3_fd, file1_name, O_RDONLY));
tools/testing/selftests/landlock/fs_test.c
5189
EXPECT_EQ(EACCES, test_open_rel(bind_s1d3_fd, "..", O_DIRECTORY));
tools/testing/selftests/landlock/fs_test.c
5195
EXPECT_EQ(ENOENT, test_open_rel(bind_s1d3_fd, "..", O_DIRECTORY));
tools/testing/selftests/landlock/fs_test.c
5208
EXPECT_EQ(0, test_open_rel(bind_s1d3_fd, file1_name, O_RDONLY));
tools/testing/selftests/landlock/fs_test.c
5245
EXPECT_EQ(0, test_open_rel(bind_s1d3_fd, file1_name, O_RDONLY));
tools/testing/selftests/landlock/fs_test.c
5271
EXPECT_EQ(0, test_open_rel(bind_s1d3_fd, file2_name, O_RDONLY));
tools/testing/selftests/landlock/fs_test.c
5297
EXPECT_EQ(0, test_open_rel(bind_s1d3_fd, file1_name, O_RDONLY));
tools/testing/selftests/landlock/fs_test.c
5333
EXPECT_EQ(0, test_open_rel(bind_s1d3_fd, file1_name, O_RDONLY));
tools/testing/selftests/landlock/fs_test.c
5393
EXPECT_EQ(0, test_open_rel(bind_s1d3_fd, file1_name, O_RDONLY))
tools/testing/selftests/landlock/fs_test.c
5412
EXPECT_EQ(0, test_open_rel(bind_s1d3_fd, "s4d2/f1", O_RDONLY))
tools/testing/selftests/landlock/fs_test.c
5908
EXPECT_EQ(0, test_open_rel(s1d41_bind_fd, "..", O_DIRECTORY));
tools/testing/selftests/landlock/fs_test.c
5909
EXPECT_EQ(0, test_open_rel(s1d42_bind_fd, "..", O_DIRECTORY));
tools/testing/selftests/landlock/fs_test.c
5916
EXPECT_EQ(ENOENT, test_open_rel(s1d41_bind_fd, "..", O_DIRECTORY));
tools/testing/selftests/landlock/fs_test.c
5917
EXPECT_EQ(ENOENT, test_open_rel(s1d42_bind_fd, "..", O_DIRECTORY));
tools/testing/selftests/landlock/fs_test.c
5923
test_open_rel(s1d41_bind_fd, "f1", O_RDONLY));
tools/testing/selftests/landlock/fs_test.c
6427
EXPECT_EQ(0, test_open_rel(s1d3_bind_fd, "..", O_DIRECTORY));
tools/testing/selftests/landlock/fs_test.c
6428
EXPECT_EQ(0, test_open_rel(s1d3_bind_fd, "../..", O_DIRECTORY));
tools/testing/selftests/landlock/fs_test.c
6432
EXPECT_EQ(0, test_open_rel(s1d3_bind_fd, "..", O_DIRECTORY));
tools/testing/selftests/landlock/fs_test.c
6433
EXPECT_EQ(ENOENT, test_open_rel(s1d3_bind_fd, "../..", O_DIRECTORY));
tools/testing/selftests/landlock/fs_test.c
6439
test_open_rel(s1d3_bind_fd, "s1d41/f1", O_RDONLY));