Home
last modified time | relevance | path

Searched refs:S_IXGRP (Results 1 - 25 of 127) sorted by relevance

123456

/third_party/musl/libc-test/src/functionalext/supplement/process/
H A Dposix_spawn_file_actions_addopen.c36 int ret = posix_spawn_file_actions_addopen(&fa, fd, "/data", O_RDWR | O_CREAT, S_IXGRP); in posix_spawn_file_actions_addopen_0100()
43 EXPECT_EQ("posix_spawn_file_actions_addopen_0100", ptr->mode, S_IXGRP); in posix_spawn_file_actions_addopen_0100()
61 int ret = posix_spawn_file_actions_addopen(&fa, fd, "/data", O_RDONLY | O_CREAT, S_IXGRP | S_IROTH | S_IWOTH); in posix_spawn_file_actions_addopen_0200()
68 EXPECT_EQ("posix_spawn_file_actions_addopen_0200", ptr->mode, S_IXGRP | S_IROTH | S_IWOTH); in posix_spawn_file_actions_addopen_0200()
86 int ret = posix_spawn_file_actions_addopen(&fa, fd, "/data", O_WRONLY | O_CREAT, S_IXGRP | S_IROTH | S_IWOTH); in posix_spawn_file_actions_addopen_0300()
93 EXPECT_EQ("posix_spawn_file_actions_addopen_0300", ptr->mode, S_IXGRP | S_IROTH | S_IWOTH); in posix_spawn_file_actions_addopen_0300()
/third_party/libsnd/src/
H A Dsf_unistd.h77 #ifndef S_IXGRP
78 #define S_IXGRP 0 /* execute/search permission, group */ macro
/third_party/ltp/testcases/kernel/syscalls/openat/
H A Dopenat04.c12 * with umask S_IXGRP and also check file mode whether has filtered S_IXGRP.
69 TEST(openat(dirfd, ".", O_TMPFILE | O_RDWR, S_IXGRP | S_ISGID)); in open_tmpfile_supported()
131 if (buf.st_mode & S_IXGRP) in file_test()
132 tst_res(TFAIL, "%s: S_IXGRP bit is set", path); in file_test()
134 tst_res(TPASS, "%s: S_IXGRP bit is not set", path); in file_test()
141 umask(S_IXGRP); in run()
/third_party/python/Lib/
H A Dstat.py106 S_IXGRP = 0o0010 # execute by group variable
145 ((S_IXGRP|S_ISGID, "s"),
147 (S_IXGRP, "x")),
/third_party/python/Modules/
H A D_stat.c181 #ifndef S_IXGRP
182 # define S_IXGRP 00010 macro
383 buf[5] = mode & S_IXGRP ? 's' : 'S'; in fileperm()
385 buf[5] = mode & S_IXGRP ? 'x' : '-'; in fileperm()
461 S_IXGRP: execute by group\n\
537 ADD_INT_MACRO(module, S_IXGRP); in stat_exec()
/third_party/musl/libc-test/src/functionalext/supplement/stat/
H A Dchmod.c30 S_IRUSR | S_ISGID | S_ISVTX | S_IWUSR | S_IROTH | S_IWUSR | S_IXUSR | S_IRGRP | S_IWGRP | S_IXGRP | S_IROTH | in chmod_0100()
63 S_ISUID | S_ISGID | S_ISVTX | S_IRUSR | S_IWUSR | S_IXUSR | S_IRGRP | S_IWGRP | S_IXGRP | S_IROTH | S_IWOTH | in chmod_0300()
H A Dfchmodat.c39 S_ISUID | S_ISGID | S_ISVTX | S_IRUSR | S_IWUSR | S_IXUSR | S_IRGRP | S_IWGRP | S_IXGRP | S_IROTH | S_IWOTH | in fchmodat_0100()
/third_party/ltp/testcases/kernel/device-drivers/nls/
H A DuserBlockNLS.c90 S_IRGRP | S_IXGRP | in open_block_device()
105 | S_IXGRP | S_IROTH | in open_block_device()
/third_party/ltp/testcases/kernel/device-drivers/usb/user_usb/
H A Duser_tusb.c45 S_IRGRP | S_IXGRP | in tusbopen()
58 S_IRGRP | S_IXGRP | in tusbopen()
/third_party/ltp/testcases/kernel/device-drivers/dev_sim_framework/user_space/
H A Duser_tmod.c64 S_IRGRP | S_IXGRP | in tmodopen()
77 S_IRGRP | S_IXGRP | in tmodopen()
/third_party/ltp/testcases/kernel/device-drivers/include/
H A DuserBlockInclude.c93 S_IXGRP | S_IROTH | S_IXOTH)); in open_block_device()
105 | S_IXGRP | S_IROTH | in open_block_device()
/third_party/ltp/testcases/kernel/device-drivers/base/user_base/
H A Duser_tbase.c60 S_IRGRP | S_IXGRP | in tbaseopen()
73 S_IRGRP | S_IXGRP | in tbaseopen()
/third_party/ltp/testcases/kernel/device-drivers/agp/user_space/
H A Duser_tagp.c60 S_IRGRP | S_IXGRP | in tagpopen()
73 S_IRGRP | S_IXGRP | in tagpopen()
/third_party/ltp/testcases/kernel/syscalls/link/
H A Dlink04.c24 #define MODE_TO1 S_IRUSR|S_IWUSR|S_IXUSR|S_IRGRP|S_IXGRP|S_IXOTH|S_IROTH
25 #define MODE_TO2 S_IRUSR|S_IWUSR|S_IXUSR|S_IRGRP|S_IWGRP|S_IXGRP|S_IXOTH|S_IROTH|S_IWOTH
H A Dlink08.c25 S_IXGRP|S_IROTH|S_IXOTH)
/third_party/ltp/testcases/kernel/syscalls/nftw/
H A Dtools.c123 S_IXGRP | S_IWOTH | S_IXOTH) == -1) { in setup_path()
139 S_IWGRP | S_IXGRP | S_IWOTH | S_IXOTH) == -1) { in setup_path()
H A Dtools64.c122 S_IXGRP | S_IWOTH | S_IXOTH) == -1) { in setup_path()
138 S_IWGRP | S_IXGRP | S_IWOTH | S_IXOTH) == -1) { in setup_path()
/third_party/FreeBSD/sys/compat/linuxkpi/common/include/linux/
H A Dfs.h43 #define S_IXUGO (S_IXUSR | S_IXGRP | S_IXOTH)
H A Dstat.h51 #define COMPAT_S_IXUGO (S_IXUSR | S_IXGRP | S_IXOTH)
/third_party/ltp/testcases/kernel/syscalls/prctl/
H A Dprctl06.h24 #define SUID_MODE (S_ISUID|S_ISGID|S_IXUSR|S_IXGRP|S_IXOTH)
/third_party/ltp/testcases/kernel/device-drivers/drm/user_space/
H A Duser_tdrm.c58 S_IRGRP | S_IXGRP | in tdrmopen()
71 S_IRGRP | S_IXGRP | in tdrmopen()
/third_party/python/Mac/BuildScript/resources/
H A Dinstall_certificates.command19 | stat.S_IRGRP | stat.S_IWGRP | stat.S_IXGRP
/third_party/ltp/testcases/kernel/syscalls/mkdirat/
H A Dmkdirat02.c19 S_IXGRP|S_IROTH|S_IXOTH)
/third_party/ltp/testcases/kernel/syscalls/fchown/
H A Dfchown04.c31 #define DIR_MODE (S_IRUSR|S_IWUSR|S_IXUSR|S_IRGRP|S_IXGRP|S_IROTH|S_IXOTH)
/third_party/ltp/testcases/kernel/syscalls/mount/
H A Dmount01.c36 #define DIR_MODE (S_IRWXU | S_IRUSR | S_IXUSR | S_IRGRP | S_IXGRP)

Completed in 9 milliseconds

123456