Symbol: path_entry
drivers/scsi/aic7xxx/aicasm/aicasm.h
58
SLIST_ENTRY(path_entry) links;
drivers/scsi/aic7xxx/aicasm/aicasm.h
67
SLIST_HEAD(path_list, path_entry);
tools/testing/selftests/landlock/fs_test.c
6498
#define for_each_path(path_list, path_entry, i) \
tools/testing/selftests/landlock/fs_test.c
6499
for (i = 0, path_entry = *path_list[i]; path_list[i]; \
tools/testing/selftests/landlock/fs_test.c
6500
path_entry = *path_list[++i])
tools/testing/selftests/landlock/fs_test.c
6630
const char *path_entry;
tools/testing/selftests/landlock/fs_test.c
6642
for_each_path(lower_base_files, path_entry, i) {
tools/testing/selftests/landlock/fs_test.c
6643
ASSERT_EQ(0, test_open(path_entry, O_RDONLY));
tools/testing/selftests/landlock/fs_test.c
6644
ASSERT_EQ(EACCES, test_open(path_entry, O_WRONLY));
tools/testing/selftests/landlock/fs_test.c
6646
for_each_path(lower_base_directories, path_entry, i) {
tools/testing/selftests/landlock/fs_test.c
6648
test_open(path_entry, O_RDONLY | O_DIRECTORY));
tools/testing/selftests/landlock/fs_test.c
6650
for_each_path(lower_sub_files, path_entry, i) {
tools/testing/selftests/landlock/fs_test.c
6651
ASSERT_EQ(0, test_open(path_entry, O_RDONLY));
tools/testing/selftests/landlock/fs_test.c
6652
ASSERT_EQ(EACCES, test_open(path_entry, O_WRONLY));
tools/testing/selftests/landlock/fs_test.c
6655
for_each_path(upper_base_files, path_entry, i) {
tools/testing/selftests/landlock/fs_test.c
6656
ASSERT_EQ(0, test_open(path_entry, O_RDONLY));
tools/testing/selftests/landlock/fs_test.c
6657
ASSERT_EQ(EACCES, test_open(path_entry, O_WRONLY));
tools/testing/selftests/landlock/fs_test.c
6659
for_each_path(upper_base_directories, path_entry, i) {
tools/testing/selftests/landlock/fs_test.c
6661
test_open(path_entry, O_RDONLY | O_DIRECTORY));
tools/testing/selftests/landlock/fs_test.c
6663
for_each_path(upper_sub_files, path_entry, i) {
tools/testing/selftests/landlock/fs_test.c
6664
ASSERT_EQ(0, test_open(path_entry, O_RDONLY));
tools/testing/selftests/landlock/fs_test.c
6665
ASSERT_EQ(EACCES, test_open(path_entry, O_WRONLY));
tools/testing/selftests/landlock/fs_test.c
6673
for_each_path(merge_base_files, path_entry, i) {
tools/testing/selftests/landlock/fs_test.c
6674
ASSERT_EQ(0, test_open(path_entry, O_RDWR));
tools/testing/selftests/landlock/fs_test.c
6676
for_each_path(merge_base_directories, path_entry, i) {
tools/testing/selftests/landlock/fs_test.c
6677
ASSERT_EQ(0, test_open(path_entry, O_RDONLY | O_DIRECTORY));
tools/testing/selftests/landlock/fs_test.c
6679
for_each_path(merge_sub_files, path_entry, i) {
tools/testing/selftests/landlock/fs_test.c
6680
ASSERT_EQ(0, test_open(path_entry, O_RDWR));
tools/testing/selftests/landlock/fs_test.c
6690
for_each_path(merge_base_files, path_entry, i) {
tools/testing/selftests/landlock/fs_test.c
6691
ASSERT_EQ(0, test_open(path_entry, O_RDWR));
tools/testing/selftests/landlock/fs_test.c
6693
for_each_path(merge_base_directories, path_entry, i) {
tools/testing/selftests/landlock/fs_test.c
6694
ASSERT_EQ(0, test_open(path_entry, O_RDONLY | O_DIRECTORY));
tools/testing/selftests/landlock/fs_test.c
6696
for_each_path(merge_sub_files, path_entry, i) {
tools/testing/selftests/landlock/fs_test.c
6697
ASSERT_EQ(0, test_open(path_entry, O_RDWR));
tools/testing/selftests/landlock/fs_test.c
6707
for_each_path(lower_base_files, path_entry, i) {
tools/testing/selftests/landlock/fs_test.c
6708
ASSERT_EQ(EACCES, test_open(path_entry, O_RDONLY));
tools/testing/selftests/landlock/fs_test.c
6711
for_each_path(upper_base_files, path_entry, i) {
tools/testing/selftests/landlock/fs_test.c
6712
ASSERT_EQ(EACCES, test_open(path_entry, O_RDONLY));
tools/testing/selftests/landlock/fs_test.c
6715
for_each_path(merge_base_files, path_entry, i) {
tools/testing/selftests/landlock/fs_test.c
6716
ASSERT_EQ(EACCES, test_open(path_entry, O_RDWR));
tools/testing/selftests/landlock/fs_test.c
6718
for_each_path(merge_base_directories, path_entry, i) {
tools/testing/selftests/landlock/fs_test.c
6719
ASSERT_EQ(0, test_open(path_entry, O_RDONLY | O_DIRECTORY));
tools/testing/selftests/landlock/fs_test.c
6721
for_each_path(merge_sub_files, path_entry, i) {
tools/testing/selftests/landlock/fs_test.c
6722
ASSERT_EQ(0, test_open(path_entry, O_RDWR));
tools/testing/selftests/landlock/fs_test.c
6732
for_each_path(lower_sub_files, path_entry, i) {
tools/testing/selftests/landlock/fs_test.c
6733
ASSERT_EQ(0, test_open(path_entry, O_RDONLY));
tools/testing/selftests/landlock/fs_test.c
6734
ASSERT_EQ(EACCES, test_open(path_entry, O_WRONLY));
tools/testing/selftests/landlock/fs_test.c
6737
for_each_path(upper_sub_files, path_entry, i) {
tools/testing/selftests/landlock/fs_test.c
6738
ASSERT_EQ(0, test_open(path_entry, O_RDONLY));
tools/testing/selftests/landlock/fs_test.c
6739
ASSERT_EQ(EACCES, test_open(path_entry, O_WRONLY));
tools/testing/selftests/landlock/fs_test.c
6742
for_each_path(merge_base_files, path_entry, i) {
tools/testing/selftests/landlock/fs_test.c
6743
ASSERT_EQ(EACCES, test_open(path_entry, O_RDWR));
tools/testing/selftests/landlock/fs_test.c
6745
for_each_path(merge_base_directories, path_entry, i) {
tools/testing/selftests/landlock/fs_test.c
6747
test_open(path_entry, O_RDONLY | O_DIRECTORY));
tools/testing/selftests/landlock/fs_test.c
6749
for_each_path(merge_sub_files, path_entry, i) {
tools/testing/selftests/landlock/fs_test.c
6750
ASSERT_EQ(0, test_open(path_entry, O_RDWR));
tools/testing/selftests/landlock/fs_test.c
6760
for_each_path(lower_sub_files, path_entry, i) {
tools/testing/selftests/landlock/fs_test.c
6761
ASSERT_EQ(EACCES, test_open(path_entry, O_RDONLY));
tools/testing/selftests/landlock/fs_test.c
6764
for_each_path(upper_sub_files, path_entry, i) {
tools/testing/selftests/landlock/fs_test.c
6765
ASSERT_EQ(EACCES, test_open(path_entry, O_RDONLY));
tools/testing/selftests/landlock/fs_test.c
6768
for_each_path(merge_base_files, path_entry, i) {
tools/testing/selftests/landlock/fs_test.c
6769
ASSERT_EQ(EACCES, test_open(path_entry, O_RDWR));
tools/testing/selftests/landlock/fs_test.c
6771
for_each_path(merge_base_directories, path_entry, i) {
tools/testing/selftests/landlock/fs_test.c
6773
test_open(path_entry, O_RDONLY | O_DIRECTORY));
tools/testing/selftests/landlock/fs_test.c
6775
for_each_path(merge_sub_files, path_entry, i) {
tools/testing/selftests/landlock/fs_test.c
6776
ASSERT_EQ(0, test_open(path_entry, O_RDWR));