Home
last modified time | relevance | path

Searched refs:S_IXGRP (Results 1 – 25 of 57) sorted by relevance

123

/dragonfly/usr.bin/biff/
H A Dbiff.c74 sb.st_mode & S_IXGRP ? "b" : "n"); in main()
75 return(sb.st_mode & (S_IXUSR | S_IXGRP) ? 0 : 1); in main()
80 if (chmod(name, sb.st_mode & ~(S_IXUSR | S_IXGRP)) < 0) in main()
84 if (chmod(name, (sb.st_mode & ~(S_IXUSR | S_IXGRP)) | S_IXUSR) < 0) in main()
88 if (chmod(name, (sb.st_mode & ~(S_IXUSR | S_IXGRP)) | S_IXGRP) < 0) in main()
94 return(sb.st_mode & (S_IXUSR | S_IXGRP) ? 0 : 1); in main()
/dragonfly/lib/libc/string/
H A Dstrmode.c107 switch (mode & (S_IXGRP | S_ISGID)) { in strmode()
111 case S_IXGRP: in strmode()
117 case S_IXGRP | S_ISGID: in strmode()
/dragonfly/contrib/cvs-1.12/lib/
H A Dstat-macros.h225 # if !S_IXGRP
226 # define S_IXGRP (S_IXUSR >> 3) macro
236 # define S_IRWXG (S_IRGRP | S_IWGRP | S_IXGRP)
244 # define S_IXUGO (S_IXUSR | S_IXGRP | S_IXOTH)
/dragonfly/contrib/gdb-7/readline/
H A Dposixstat.h125 # define S_IXGRP (S_IEXEC >> 3) /* execute, group */ macro
133 # define S_IRWXG (S_IRGRP | S_IWGRP | S_IXGRP)
140 #define S_IXUGO (S_IXUSR | S_IXGRP | S_IXOTH)
/dragonfly/contrib/binutils-2.34/binutils/
H A Dfilemode.c86 #ifndef S_IXGRP
87 #define S_IXGRP 0010 macro
115 str[6] = (mode & S_IXGRP) != 0 ? 'x' : '-'; in mode_string()
/dragonfly/contrib/binutils-2.27/binutils/
H A Dfilemode.c86 #ifndef S_IXGRP
87 #define S_IXGRP 0010 macro
115 str[6] = (mode & S_IXGRP) != 0 ? 'x' : '-'; in mode_string()
/dragonfly/libexec/comsat/
H A Dcomsat.c167 if (stat(tty, &stb) == -1 || !(stb.st_mode & (S_IXUSR | S_IXGRP))) { in notify()
187 switch (stb.st_mode & (S_IXUSR | S_IXGRP)) { in notify()
189 case (S_IXUSR | S_IXGRP): in notify()
197 case S_IXGRP: in notify()
/dragonfly/contrib/tcsh-6/
H A Dtc.os.h304 #ifndef S_IXGRP
305 # define S_IXGRP (S_IEXEC >> 3) macro
329 # define S_IRWXG (S_IRGRP | S_IWGRP | S_IXGRP)
/dragonfly/sys/sys/
H A Dfcntl.h302 #ifndef S_IXGRP
303 #define S_IXGRP 0000010 /* X for group */ macro
H A Dstat.h174 #ifndef S_IXGRP
175 #define S_IXGRP 0000010 /* X for group */ macro
/dragonfly/lib/libc/gen/
H A Dsetmode.c134 if (omode & (S_IFDIR|S_IXUSR|S_IXGRP|S_IXOTH)) in getmode()
269 permXbits = S_IXUSR|S_IXGRP|S_IXOTH; in setmode()
272 perm |= S_IXUSR|S_IXGRP|S_IXOTH; in setmode()
/dragonfly/contrib/smbfs/mount_smbfs/
H A Dmount_smbfs.c231 mdata.dir_mode |= S_IXGRP; in main()
242 if (mdata.dir_mode & S_IXGRP) in main()
/dragonfly/gnu/usr.bin/grep/libgreputils/sys/
H A Dstat.h597 #if !S_IXGRP
598 # define S_IXGRP (S_IXUSR >> 3) macro
608 # define S_IRWXG (S_IRGRP | S_IWGRP | S_IXGRP)
616 # define S_IXUGO (S_IXUSR | S_IXGRP | S_IXOTH)
/dragonfly/gnu/usr.bin/diff/libdiffutils/sys/
H A Dstat.h828 #if !S_IXGRP
829 # define S_IXGRP (S_IXUSR >> 3) macro
839 # define S_IRWXG (S_IRGRP | S_IWGRP | S_IXGRP)
847 # define S_IXUGO (S_IXUSR | S_IXGRP | S_IXOTH)
/dragonfly/sys/kern/
H A Dvfs_helper.c143 mask |= S_IXGRP; in vop_helper_access()
153 mask |= S_IXGRP; in vop_helper_access()
/dragonfly/usr.bin/which/
H A Dwhich.c111 (fin.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH)) != 0)) { in is_there()
/dragonfly/sbin/udevd/
H A Dudevd_socket.c155 msk = umask(S_IXUSR|S_IXGRP|S_IXOTH); in init_local_server()
/dragonfly/contrib/gdb-7/gdb/
H A Dremote-fileio.c181 #ifdef S_IXGRP in remote_fileio_mode_to_host()
183 hmode |= S_IXGRP; in remote_fileio_mode_to_host()
223 #ifdef S_IXGRP in remote_fileio_mode_to_target()
224 if (mode & S_IXGRP) in remote_fileio_mode_to_target()
/dragonfly/contrib/binutils-2.27/bfd/
H A Dbfdio.c32 #ifndef S_IXGRP
33 #define S_IXGRP 0010 /* Execute by group. */ macro
/dragonfly/contrib/gdb-7/bfd/
H A Dbfdio.c34 #ifndef S_IXGRP
35 #define S_IXGRP 0010 /* Execute by group. */ macro
H A Dopncls.c34 #ifndef S_IXGRP
35 #define S_IXGRP 0010 /* Execute by group. */ macro
682 & (buf.st_mode | ((S_IXUSR | S_IXGRP | S_IXOTH) &~ mask)))); in _maybe_make_executable()
/dragonfly/contrib/cvs-1.12/src/
H A Dfilesubr.c230 if (!(mode & X_OK) || (sb.st_mode & (S_IXUSR|S_IXGRP|S_IXOTH))) in isaccessible()
252 gmask |= S_IXGRP; in isaccessible()
/dragonfly/contrib/binutils-2.34/bfd/
H A Dbfdio.c32 #ifndef S_IXGRP
33 #define S_IXGRP 0010 /* Execute by group. */ macro
/dragonfly/usr.sbin/installer/libaura/
H A Dfspred.c140 (sb.st_gid == gid && sb.st_mode & S_IXGRP) || in is_program()
/dragonfly/usr.bin/chpass/
H A Dfield.c247 if ((sbuf.st_mode & (S_IXOTH | S_IXGRP | S_IXUSR)) == 0) { in p_shell()

123