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
6688
#define for_each_path(path_list, path_entry, i) \
tools/testing/selftests/landlock/fs_test.c
6689
for (i = 0, path_entry = *path_list[i]; path_list[i]; \
tools/testing/selftests/landlock/fs_test.c
6690
path_entry = *path_list[++i])
tools/testing/selftests/landlock/fs_test.c
6819
const char *path_entry;
tools/testing/selftests/landlock/fs_test.c
6828
for_each_path(lower_base_files, path_entry, i) {
tools/testing/selftests/landlock/fs_test.c
6829
ASSERT_EQ(0, test_open(path_entry, O_RDONLY));
tools/testing/selftests/landlock/fs_test.c
6830
ASSERT_EQ(EACCES, test_open(path_entry, O_WRONLY));
tools/testing/selftests/landlock/fs_test.c
6832
for_each_path(lower_base_directories, path_entry, i) {
tools/testing/selftests/landlock/fs_test.c
6834
test_open(path_entry, O_RDONLY | O_DIRECTORY));
tools/testing/selftests/landlock/fs_test.c
6836
for_each_path(lower_sub_files, path_entry, i) {
tools/testing/selftests/landlock/fs_test.c
6837
ASSERT_EQ(0, test_open(path_entry, O_RDONLY));
tools/testing/selftests/landlock/fs_test.c
6838
ASSERT_EQ(EACCES, test_open(path_entry, O_WRONLY));
tools/testing/selftests/landlock/fs_test.c
6841
for_each_path(upper_base_files, path_entry, i) {
tools/testing/selftests/landlock/fs_test.c
6842
ASSERT_EQ(0, test_open(path_entry, O_RDONLY));
tools/testing/selftests/landlock/fs_test.c
6843
ASSERT_EQ(EACCES, test_open(path_entry, O_WRONLY));
tools/testing/selftests/landlock/fs_test.c
6845
for_each_path(upper_base_directories, path_entry, i) {
tools/testing/selftests/landlock/fs_test.c
6847
test_open(path_entry, O_RDONLY | O_DIRECTORY));
tools/testing/selftests/landlock/fs_test.c
6849
for_each_path(upper_sub_files, path_entry, i) {
tools/testing/selftests/landlock/fs_test.c
6850
ASSERT_EQ(0, test_open(path_entry, O_RDONLY));
tools/testing/selftests/landlock/fs_test.c
6851
ASSERT_EQ(EACCES, test_open(path_entry, O_WRONLY));
tools/testing/selftests/landlock/fs_test.c
6859
for_each_path(merge_base_files, path_entry, i) {
tools/testing/selftests/landlock/fs_test.c
6860
ASSERT_EQ(0, test_open(path_entry, O_RDWR));
tools/testing/selftests/landlock/fs_test.c
6862
for_each_path(merge_base_directories, path_entry, i) {
tools/testing/selftests/landlock/fs_test.c
6863
ASSERT_EQ(0, test_open(path_entry, O_RDONLY | O_DIRECTORY));
tools/testing/selftests/landlock/fs_test.c
6865
for_each_path(merge_sub_files, path_entry, i) {
tools/testing/selftests/landlock/fs_test.c
6866
ASSERT_EQ(0, test_open(path_entry, O_RDWR));
tools/testing/selftests/landlock/fs_test.c
6873
for_each_path(merge_base_files, path_entry, i) {
tools/testing/selftests/landlock/fs_test.c
6874
ASSERT_EQ(0, test_open(path_entry, O_RDWR));
tools/testing/selftests/landlock/fs_test.c
6876
for_each_path(merge_base_directories, path_entry, i) {
tools/testing/selftests/landlock/fs_test.c
6877
ASSERT_EQ(0, test_open(path_entry, O_RDONLY | O_DIRECTORY));
tools/testing/selftests/landlock/fs_test.c
6879
for_each_path(merge_sub_files, path_entry, i) {
tools/testing/selftests/landlock/fs_test.c
6880
ASSERT_EQ(0, test_open(path_entry, O_RDWR));
tools/testing/selftests/landlock/fs_test.c
6887
for_each_path(lower_base_files, path_entry, i) {
tools/testing/selftests/landlock/fs_test.c
6888
ASSERT_EQ(EACCES, test_open(path_entry, O_RDONLY));
tools/testing/selftests/landlock/fs_test.c
6891
for_each_path(upper_base_files, path_entry, i) {
tools/testing/selftests/landlock/fs_test.c
6892
ASSERT_EQ(EACCES, test_open(path_entry, O_RDONLY));
tools/testing/selftests/landlock/fs_test.c
6895
for_each_path(merge_base_files, path_entry, i) {
tools/testing/selftests/landlock/fs_test.c
6896
ASSERT_EQ(EACCES, test_open(path_entry, O_RDWR));
tools/testing/selftests/landlock/fs_test.c
6898
for_each_path(merge_base_directories, path_entry, i) {
tools/testing/selftests/landlock/fs_test.c
6899
ASSERT_EQ(0, test_open(path_entry, O_RDONLY | O_DIRECTORY));
tools/testing/selftests/landlock/fs_test.c
6901
for_each_path(merge_sub_files, path_entry, i) {
tools/testing/selftests/landlock/fs_test.c
6902
ASSERT_EQ(0, test_open(path_entry, O_RDWR));
tools/testing/selftests/landlock/fs_test.c
6909
for_each_path(lower_sub_files, path_entry, i) {
tools/testing/selftests/landlock/fs_test.c
6910
ASSERT_EQ(0, test_open(path_entry, O_RDONLY));
tools/testing/selftests/landlock/fs_test.c
6911
ASSERT_EQ(EACCES, test_open(path_entry, O_WRONLY));
tools/testing/selftests/landlock/fs_test.c
6914
for_each_path(upper_sub_files, path_entry, i) {
tools/testing/selftests/landlock/fs_test.c
6915
ASSERT_EQ(0, test_open(path_entry, O_RDONLY));
tools/testing/selftests/landlock/fs_test.c
6916
ASSERT_EQ(EACCES, test_open(path_entry, O_WRONLY));
tools/testing/selftests/landlock/fs_test.c
6919
for_each_path(merge_base_files, path_entry, i) {
tools/testing/selftests/landlock/fs_test.c
6920
ASSERT_EQ(EACCES, test_open(path_entry, O_RDWR));
tools/testing/selftests/landlock/fs_test.c
6922
for_each_path(merge_base_directories, path_entry, i) {
tools/testing/selftests/landlock/fs_test.c
6924
test_open(path_entry, O_RDONLY | O_DIRECTORY));
tools/testing/selftests/landlock/fs_test.c
6926
for_each_path(merge_sub_files, path_entry, i) {
tools/testing/selftests/landlock/fs_test.c
6927
ASSERT_EQ(0, test_open(path_entry, O_RDWR));
tools/testing/selftests/landlock/fs_test.c
6934
for_each_path(lower_sub_files, path_entry, i) {
tools/testing/selftests/landlock/fs_test.c
6935
ASSERT_EQ(EACCES, test_open(path_entry, O_RDONLY));
tools/testing/selftests/landlock/fs_test.c
6938
for_each_path(upper_sub_files, path_entry, i) {
tools/testing/selftests/landlock/fs_test.c
6939
ASSERT_EQ(EACCES, test_open(path_entry, O_RDONLY));
tools/testing/selftests/landlock/fs_test.c
6942
for_each_path(merge_base_files, path_entry, i) {
tools/testing/selftests/landlock/fs_test.c
6943
ASSERT_EQ(EACCES, test_open(path_entry, O_RDWR));
tools/testing/selftests/landlock/fs_test.c
6945
for_each_path(merge_base_directories, path_entry, i) {
tools/testing/selftests/landlock/fs_test.c
6947
test_open(path_entry, O_RDONLY | O_DIRECTORY));
tools/testing/selftests/landlock/fs_test.c
6949
for_each_path(merge_sub_files, path_entry, i) {
tools/testing/selftests/landlock/fs_test.c
6950
ASSERT_EQ(0, test_open(path_entry, O_RDWR));