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

1 2 3 4

  /toolchain/binutils/binutils-2.27/binutils/
filemode.c 100 #ifndef S_IXOTH
101 #define S_IXOTH 0001
119 str[9] = (mode & S_IXOTH) != 0 ? 'x' : '-';
  /external/syslinux/com32/include/sys/
stat.h 41 #define S_IXOTH 00001
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
RenamingDelegatingContext.java 249 FileUtils.S_IRWXU|FileUtils.S_IRWXG|FileUtils.S_IXOTH,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
stat.h 40 #define S_IXOTH 00001
  /cts/tests/tests/permission/src/android/permission/cts/
FileUtils.java 55 public static final int S_IXOTH = 00001;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
stat.py 81 S_IXOTH = 00001
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
stat.py 81 S_IXOTH = 00001
  /external/python/cpython2/Lib/
stat.py 81 S_IXOTH = 00001
  /external/python/cpython3/Modules/
_stat.c 193 #ifndef S_IXOTH
194 # define S_IXOTH 00001
386 buf[8] = mode & S_IXOTH ? 't' : 'T';
388 buf[8] = mode & S_IXOTH ? 'x' : '-';
461 S_IXOTH: execute by others\n\
548 if (PyModule_AddIntMacro(m, S_IXOTH)) return NULL;
  /frameworks/base/core/java/android/util/
AtomicFile.java 136 FileUtils.S_IRWXU|FileUtils.S_IRWXG|FileUtils.S_IXOTH,
  /frameworks/base/core/java/com/android/internal/os/
AtomicFile.java 78 FileUtils.S_IRWXU|FileUtils.S_IRWXG|FileUtils.S_IXOTH,
  /libcore/ojluni/src/main/java/sun/nio/fs/
UnixConstants.java 84 static final int S_IXOTH = OsConstants.S_IXOTH;
149 OsConstants.S_IROTH | OsConstants.S_IWOTH | OsConstants.S_IXOTH);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
fcntl.h 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 162 #define S_IXOTH (S_IXGRP >> 3)
  /prebuilts/gdb/darwin-x86/lib/python2.7/
stat.py 81 S_IXOTH = 00001
  /prebuilts/gdb/linux-x86/lib/python2.7/
stat.py 81 S_IXOTH = 00001
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
stat.py 81 S_IXOTH = 00001
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
stat.py 81 S_IXOTH = 00001
  /toolchain/binutils/binutils-2.27/bfd/
bfdio.c 35 #ifndef S_IXOTH
36 #define S_IXOTH 0001 /* Execute by others. */
  /bionic/libc/kernel/uapi/linux/
stat.h 52 #define S_IXOTH 00001
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
FileUtils.java 54 public static final int S_IXOTH = 00001;
  /device/linaro/bootloader/edk2/StdLib/Include/sys/
stat.h 88 #define S_IXOTH 0000001 ///< X for other
152 #define EXEC_PERMS (S_IXUSR | S_IXGRP | S_IXOTH) ///< 0111
  /external/kernel-headers/original/uapi/linux/
stat.h 42 #define S_IXOTH 00001
  /external/python/cpython3/Lib/
stat.py 94 S_IXOTH = 0o0001 # execute by others
134 ((S_IXOTH|S_ISVTX, "t"),
136 (S_IXOTH, "x"))
  /frameworks/base/core/java/com/android/internal/content/
NativeLibraryHelper.java 26 import static android.system.OsConstants.S_IXOTH;
297 Os.chmod(path.getPath(), S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH);

Completed in 814 milliseconds

1 2 3 4