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

123

/illumos-gate/usr/src/lib/libast/common/string/
H A Dfmtperm.c57 if ((perm & (S_ISGID|S_IXGRP)) == S_ISGID)
67 if ((perm & (S_ISGID|S_IXGRP)) == (S_ISGID|S_IXGRP))
73 if (perm & S_IXGRP)
H A Dmodedata.c65 S_IXGRP, X_IXGRP,
H A Dstrperm.c113 if (!S_ISDIR(perm) && !(perm & (S_IXUSR|S_IXGRP|S_IXOTH)))
117 typ |= S_IXUSR|S_IXGRP|S_IXOTH;
126 if (perm & S_IXGRP)
190 perm |= who & (S_IXUSR|S_IXGRP);
195 if (typ & S_IXGRP)
206 if ((typ |= perm) & (S_IXUSR|S_IXGRP|S_IXOTH))
211 perm |= who & S_IXGRP;
H A Dfmtls.c107 else if (st->st_mode & (S_IXUSR|S_IXGRP|S_IXOTH))
/illumos-gate/usr/src/head/rpcsvc/
H A Ddaemon_utils.h49 #define DAEMON_DIR_MODE (S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH)
/illumos-gate/usr/src/lib/libast/common/comp/
H A Deaccess.c76 if (!S_ISREG(st.st_mode) || !(flags & X_OK) || (st.st_mode & (S_IXUSR|S_IXGRP|S_IXOTH)))
99 mode |= S_IXGRP;
/illumos-gate/usr/src/lib/libast/common/features/
H A Dmode.c163 #ifndef S_IXGRP
164 printf("#define S_IXGRP 0%04o\n", X_IXGRP);
166 if (S_IXGRP != X_IXGRP) idperm = 0;
187 printf("#define S_IRWXG (S_IRGRP|S_IWGRP|S_IXGRP)\n");
/illumos-gate/usr/src/lib/libbc/inc/include/sys/
H A Dstat.h98 #define S_IXGRP 0000010 /* execute/search permission, group */ macro
/illumos-gate/usr/src/cmd/zoneadmd/
H A Dzoneadmd.h68 (S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH)
/illumos-gate/usr/src/uts/common/fs/objfs/
H A Dobjfs_odir.c72 vap->va_mode = S_IRUSR | S_IXUSR | S_IRGRP | S_IXGRP |
/illumos-gate/usr/src/lib/libshell/common/sh/
H A Dshcomp.c116 chmod(cp,(statb.st_mode&~S_IFMT)|S_IXUSR|S_IXGRP|S_IXOTH);
H A Dsuid_exec.c303 mode = (S_IXUSR|S_IXGRP|S_IXOTH);
/illumos-gate/usr/src/lib/libdevinfo/
H A Ddevinfo_dli.c102 S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH) < 0) {
/illumos-gate/usr/src/lib/libast/common/path/
H A Dpathexists.c123 if (st.st_mode & (S_IXUSR|S_IXGRP|S_IXOTH))
/illumos-gate/usr/src/cmd/oamuser/user/
H A Dhomedir.c135 S_IRWXU|S_IRGRP|S_IXGRP|S_IROTH|S_IXOTH) != 0) {
151 if (mkdir(homedir, S_IRWXU|S_IRGRP|S_IXGRP|S_IROTH|S_IXOTH)
/illumos-gate/usr/src/cmd/sendmail/libsmutil/
H A Dsafefile.c92 !bitset(S_IXUSR|S_IXGRP|S_IXOTH, st->st_mode) &&
304 bitset(S_IXUSR|S_IXGRP|S_IXOTH, st->st_mode))
639 bitset(S_IXGRP, stbuf.st_mode))
652 bitset(S_IXGRP, stbuf.st_mode))
/illumos-gate/usr/src/cmd/find/
H A Dfind.c1955 S_IRGRP != 0040 || S_IWGRP != 0020 || S_IXGRP != 0010 || \
1964 S_IXGRP, S_IWGRP, S_IRGRP,
2147 return (S_IXUSR|S_IXGRP|S_IXOTH);
2156 return (S_IXUSR|S_IXGRP|S_IXOTH);
2217 if (temp & (S_IXUSR|S_IXGRP|S_IXOTH))
2218 perm |= ((S_IXUSR|S_IXGRP|S_IXOTH) & pp->p_who);
2227 if (temp & (S_IXUSR|S_IXGRP|S_IXOTH))
2228 perm |= ((S_IXUSR|S_IXGRP|S_IXOTH) & pp->p_who);
2237 if (temp & (S_IXUSR|S_IXGRP|S_IXOTH))
2238 perm |= ((S_IXUSR|S_IXGRP|S_IXOT
[all...]
/illumos-gate/usr/src/lib/libcmd/common/
H A Dcksum.c243 (st->st_uid != state->uid && ((st->st_mode & S_ISUID) || (st->st_mode & S_IRUSR) && !(st->st_mode & (S_IRGRP|S_IROTH)) || (st->st_mode & S_IXUSR) && !(st->st_mode & (S_IXGRP|S_IXOTH)))) ? fmtuid(st->st_uid) : "-",
244 (st->st_gid != state->gid && ((st->st_mode & S_ISGID) || (st->st_mode & S_IRGRP) && !(st->st_mode & S_IROTH) || (st->st_mode & S_IXGRP) && !(st->st_mode & S_IXOTH))) ? fmtgid(st->st_gid) : "-");
/illumos-gate/usr/src/lib/libtecla/common/
H A Dpathutil.c429 (statbuf.st_mode & (S_IXOTH | S_IXGRP | S_IXUSR)) &&
/illumos-gate/usr/src/cmd/news/
H A Dnews.c242 umask (((~(S_IRWXU|S_IRGRP|S_IXGRP|S_IROTH|S_IXOTH)) & S_IAMB));
/illumos-gate/usr/src/cmd/syseventd/modules/devfsadmd_mod/
H A Ddevfsadmd_mod.c103 ((getegid() == st.st_gid) && ((st.st_mode & S_IXGRP) == 0)) ||
/illumos-gate/usr/src/boot/sys/sys/
H A Dstat.h215 #define S_IXGRP 0000010 /* X for group */ macro
/illumos-gate/usr/src/uts/common/fs/zfs/
H A Dzfs_acl.c98 #define ALL_MODE_EXECS (S_IXUSR | S_IXGRP | S_IXOTH)
960 (!(seen & S_IXGRP))) {
961 seen |= S_IXGRP;
963 mode |= S_IXGRP;
1014 if (!(seen & S_IXGRP)) {
1015 seen |= S_IXGRP;
1017 mode |= S_IXGRP;
1538 !isdir && ((mode & (S_IXUSR|S_IXGRP|S_IXOTH)) == 0)) {
2312 if (zdp->z_mode & S_IXGRP) {
/illumos-gate/usr/src/cmd/ls/
H A Dls.c1354 (p->lflags & (S_IXUSR|S_IXGRP|S_IXOTH)))
1455 static int m5[] = { 4, S_ISGID|S_IXGRP, 's', S_IXGRP,
1749 if (!(seen & S_IXGRP)) {
1750 seen |= S_IXGRP;
1752 mode |= S_IXGRP;
1945 (S_IXUSR|S_IXGRP| S_IXOTH))
2801 return (!S_ISLNK(mode) && (mode & (S_IXUSR|S_IXGRP|S_IXOTH)));
/illumos-gate/usr/src/uts/common/sys/
H A Dstat.h437 #define S_IXGRP 00010 /* execute permission: group */ macro

Completed in 89 milliseconds

123