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

1 2 3

  /bionic/libc/bionic/
chmod.cpp 33 int chmod(const char* path, mode_t mode) { function
  /device/linaro/bootloader/edk2/StdLib/LibC/Uefi/
StubFunctions.c 63 chmod (const char *c, mode_t m) function
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
LongFilePathOs.py 45 def chmod(path, mode): function
46 return os.chmod(LongFilePath(path), mode)
  /external/sl4a/Utils/src/com/googlecode/android_scripting/
FileUtils.java 49 public static int chmod(File path, int mode) throws Exception { method in class:FileUtils
57 boolean success = chmod(root, mode) == 0;
62 success &= (chmod(path, mode) == 0);
  /libcore/luni/src/main/java/libcore/io/
BlockGuardOs.java 76 @Override public void chmod(String path, int mode) throws ErrnoException { method in class:BlockGuardOs
78 os.chmod(path, mode);
ForwardingOs.java 69 public void chmod(String path, int mode) throws ErrnoException { os.chmod(path, mode); } method in class:ForwardingOs
Linux.java 60 public native void chmod(String path, int mode) throws ErrnoException; method in class:Linux
Os.java 54 public void chmod(String path, int mode) throws ErrnoException; method in interface:Os
  /device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLib/SysCall/
CrtWrapper.c 321 int chmod (const char *c, mode_t m) function
  /external/lz4/programs/
util.h 168 #define chmod _chmod macro
188 res += chmod(filename, statbuf->st_mode & 07777); /* Copy file permissions */
  /frameworks/base/services/core/java/com/android/server/am/
NativeCrashListener.java 123 Os.chmod(DEBUGGERD_SOCKET_PATH, 0777);
  /libcore/ojluni/src/main/java/sun/nio/fs/
UnixCopyFile.java 167 chmod(target, attrs.mode()); method
347 chmod(target, attrs.mode()); method
UnixFileAttributeViews.java 223 // chmod
228 chmod(file, mode); method
UnixNativeDispatcher.java 363 * chmod(const char* path, mode_t mode)
365 static void chmod(UnixPath path, int mode) throws UnixException { method in class:UnixNativeDispatcher
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/
Xw32defs.h 16 # define chmod _chmod macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/
Xw32defs.h 16 # define chmod _chmod macro
  /external/zlib/src/contrib/untgz/
untgz.c 32 # define chmod(path,mode) _chmod(path,mode) macro
277 chmod(item->fname,item->mode);
  /system/core/adb/
sysdeps.h 341 #define chmod adb_chmod macro
  /libcore/luni/src/main/java/android/system/
Os.java 85 * See <a href="http://man7.org/linux/man-pages/man2/chmod.2.html">chmod(2)</a>.
87 public static void chmod(String path, int mode) throws ErrnoException { Libcore.os.chmod(path, mode); } method in class:Os
  /external/chromium-trace/catapult/telemetry/third_party/pyfakefs/pyfakefs/
fake_filesystem.py 1713 def chmod(self, path, mode): member in class:FakeOsModule
    [all...]
  /external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/activity/
ScriptManager.java 110 FileUtils.chmod(sl4a, 0755); // Handle the sl4a parent folder first.
  /frameworks/base/core/java/android/os/
FileUtils.java 87 * @param mode to apply through {@code chmod}
99 * @param mode to apply through {@code chmod}
106 Os.chmod(path, mode);
108 Slog.w(TAG, "Failed to chmod(" + path + "): " + e);
127 * @param mode to apply through {@code chmod}
155 Os.chmod(to.getAbsolutePath(), stat.st_mode);
  /system/core/init/
builtins.cpp 74 #define chmod DO_NOT_USE_CHMOD_USE_FCHMODAT_SYMLINK_NOFOLLOW macro
214 /* chmod in case the directory already exists */
234 /* chown may have cleared S_ISUID and S_ISGID, chmod again */
851 {"chmod", {2, 2, do_chmod}},
  /tools/tradefederation/core/src/com/android/tradefed/util/
FileUtil.java 68 private static String sChmod = "chmod";
87 * Exposed for testing. Allows to modify the chmod binary name we look for, in order to tests
88 * system with no chmod support.
113 * {@link File#mkdirs()} that also runs {@link #chmod(File, String)}.
123 // parent doesn't exist. recurse upward, which should both mkdir and chmod
133 // file should exist. Try chmod and complain if that fails, but keep going
170 public static boolean chmod(File file, String perms) { method in class:FileUtil
171 Log.d(LOG_TAG, String.format("Attempting to chmod %s to %s",
184 * If 'chmod' system command is not supported by underlying OS, will set file to writable by
193 if (chmod(file, "ug+rw"))
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
tarfile.py 2287 def chmod(self, tarinfo, targetpath): member in class:TarFile
    [all...]

Completed in 958 milliseconds

1 2 3