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

1 2 3 4

  /toolchain/binutils/binutils-2.27/binutils/
filemode.c 74 #ifndef S_IXUSR
75 #define S_IXUSR 0100
113 str[3] = (mode & S_IXUSR) != 0 ? 'x' : '-';
  /external/syslinux/com32/include/sys/
stat.h 33 #define S_IXUSR 00100
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
stat.h 30 #define S_IXUSR 00100
  /cts/tests/tests/permission/src/android/permission/cts/
FileUtils.java 45 public static final int S_IXUSR = 00100;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
stat.py 73 S_IXUSR = 00100
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
stat.py 73 S_IXUSR = 00100
  /external/python/cpython2/Lib/
stat.py 73 S_IXUSR = 00100
  /external/python/cpython3/Modules/
_stat.c 161 #ifndef S_IXUSR
162 # define S_IXUSR 00100
372 buf[2] = mode & S_IXUSR ? 's' : 'S';
374 buf[2] = mode & S_IXUSR ? 'x' : '-';
449 S_IEXEC: Unix V7 synonym for S_IXUSR\n\
453 S_IXUSR: execute by owner\n\
538 if (PyModule_AddIntMacro(m, S_IXUSR)) return NULL;
  /libcore/ojluni/src/main/java/sun/nio/fs/
UnixConstants.java 72 static final int S_IXUSR = OsConstants.S_IXUSR;
147 return (OsConstants.S_IRUSR | OsConstants.S_IWUSR | OsConstants.S_IXUSR |
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
fcntl.h 70 # define S_IXUSR __S_IEXEC /* Execute by owner. */
76 # define S_IXGRP (S_IXUSR >> 3) /* Execute by group. */
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/sys/
stat.h 150 #define S_IXUSR _S_IXUSR
157 #define S_IXGRP (S_IXUSR >> 3)
  /prebuilts/gdb/darwin-x86/lib/python2.7/
stat.py 73 S_IXUSR = 00100
  /prebuilts/gdb/linux-x86/lib/python2.7/
stat.py 73 S_IXUSR = 00100
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
stat.py 73 S_IXUSR = 00100
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
stat.py 73 S_IXUSR = 00100
  /toolchain/binutils/binutils-2.27/bfd/
bfdio.c 29 #ifndef S_IXUSR
30 #define S_IXUSR 0100 /* Execute by owner. */
  /bionic/libc/kernel/uapi/linux/
stat.h 44 #define S_IXUSR 00100
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
FileUtils.java 44 public static final int S_IXUSR = 00100;
  /device/linaro/bootloader/edk2/StdLib/Include/sys/
stat.h 74 #define S_IXUSR 0000100 ///< X for owner
78 #define S_IEXEC S_IXUSR
152 #define EXEC_PERMS (S_IXUSR | S_IXGRP | S_IXOTH) ///< 0111
  /external/kernel-headers/original/uapi/linux/
stat.h 32 #define S_IXUSR 00100
  /external/python/cpython3/Lib/
stat.py 82 S_IEXEC = 0o0100 # Unix V7 synonym for S_IXUSR
86 S_IXUSR = 0o0100 # execute by owner
122 ((S_IXUSR|S_ISUID, "s"),
124 (S_IXUSR, "x")),
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/sys/
stat.h 176 #define S_IXUSR __S_IEXEC /* Execute by owner. */
183 # define S_IEXEC S_IXUSR
188 #define S_IXGRP (S_IXUSR >> 3) /* Execute by group. */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/sys/
stat.h 176 #define S_IXUSR __S_IEXEC /* Execute by owner. */
183 # define S_IEXEC S_IXUSR
188 #define S_IXGRP (S_IXUSR >> 3) /* Execute by group. */
  /prebuilts/go/darwin-x86/src/syscall/
types_dragonfly.go 115 S_IXUSR = C.S_IXUSR
types_freebsd.go 200 S_IXUSR = C.S_IXUSR

Completed in 494 milliseconds

1 2 3 4