HomeSort by relevance Sort by last modified time
    Searched defs:S_IXGRP (Results 1 - 25 of 72) sorted by null

1 2 3

  /toolchain/binutils/binutils-2.27/binutils/
filemode.c 87 #ifndef S_IXGRP
88 #define S_IXGRP 0010
116 str[6] = (mode & S_IXGRP) != 0 ? 'x' : '-';
  /external/syslinux/com32/include/sys/
stat.h 37 #define S_IXGRP 00010
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
stat.h 35 #define S_IXGRP 00010
  /cts/tests/tests/permission/src/android/permission/cts/
FileUtils.java 50 public static final int S_IXGRP = 00010;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
stat.py 77 S_IXGRP = 00010
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
stat.py 77 S_IXGRP = 00010
  /external/python/cpython2/Lib/
stat.py 77 S_IXGRP = 00010
  /external/python/cpython3/Modules/
_stat.c 177 #ifndef S_IXGRP
178 # define S_IXGRP 00010
379 buf[5] = mode & S_IXGRP ? 's' : 'S';
381 buf[5] = mode & S_IXGRP ? 'x' : '-';
457 S_IXGRP: execute by group\n\
543 if (PyModule_AddIntMacro(m, S_IXGRP)) return NULL;
  /libcore/ojluni/src/main/java/sun/nio/fs/
UnixConstants.java 78 static final int S_IXGRP = OsConstants.S_IXGRP;
148 OsConstants.S_IRGRP | OsConstants.S_IWGRP | OsConstants.S_IXGRP |
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
fcntl.h 76 # define S_IXGRP (S_IXUSR >> 3) /* Execute by group. */
82 # define S_IXOTH (S_IXGRP >> 3) /* Execute by others. */
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/sys/
stat.h 157 #define S_IXGRP (S_IXUSR >> 3)
162 #define S_IXOTH (S_IXGRP >> 3)
  /prebuilts/gdb/darwin-x86/lib/python2.7/
stat.py 77 S_IXGRP = 00010
  /prebuilts/gdb/linux-x86/lib/python2.7/
stat.py 77 S_IXGRP = 00010
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
stat.py 77 S_IXGRP = 00010
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
stat.py 77 S_IXGRP = 00010
  /toolchain/binutils/binutils-2.27/bfd/
bfdio.c 32 #ifndef S_IXGRP
33 #define S_IXGRP 0010 /* Execute by group. */
opncls.c 32 #ifndef S_IXGRP
33 #define S_IXGRP 0010 /* Execute by group. */
697 & (buf.st_mode | ((S_IXUSR | S_IXGRP | S_IXOTH) &~ mask))));
    [all...]
  /bionic/libc/kernel/uapi/linux/
stat.h 48 #define S_IXGRP 00010
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
FileUtils.java 49 public static final int S_IXGRP = 00010;
  /device/linaro/bootloader/edk2/StdLib/Include/sys/
stat.h 83 #define S_IXGRP 0000010 ///< X for group
152 #define EXEC_PERMS (S_IXUSR | S_IXGRP | S_IXOTH) ///< 0111
  /external/kernel-headers/original/uapi/linux/
stat.h 37 #define S_IXGRP 00010
  /external/python/cpython3/Lib/
stat.py 90 S_IXGRP = 0o0010 # execute by group
128 ((S_IXGRP|S_ISGID, "s"),
130 (S_IXGRP, "x")),
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/sys/
stat.h 188 #define S_IXGRP (S_IXUSR >> 3) /* Execute by group. */
194 #define S_IXOTH (S_IXGRP >> 3) /* Execute by others. */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/sys/
stat.h 188 #define S_IXGRP (S_IXUSR >> 3) /* Execute by group. */
194 #define S_IXOTH (S_IXGRP >> 3) /* Execute by others. */
  /frameworks/base/core/java/android/os/
FileUtils.java 76 public static final int S_IXGRP = 00010;
    [all...]

Completed in 962 milliseconds

1 2 3