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

1 2

  /bionic/libc/bionic/
chown.cpp 34 int chown(const char* path, uid_t uid, gid_t gid) { function
  /libcore/luni/src/main/java/libcore/io/
BlockGuardOs.java 76 @Override public void chown(String path, int uid, int gid) throws ErrnoException { method in class:BlockGuardOs
78 os.chown(path, uid, gid);
ForwardingOs.java 71 public void chown(String path, int uid, int gid) throws ErrnoException { os.chown(path, uid, gid); } method in class:ForwardingOs
Linux.java 62 public native void chown(String path, int uid, int gid) throws ErrnoException; method in class:Linux
Os.java 56 public void chown(String path, int uid, int gid) throws ErrnoException; method in interface:Os
  /external/python/cpython3/Lib/
shutil.py 51 "ignore_patterns", "chown", "which", "get_terminal_size",
212 # therefore we're out of options--we simply cannot chown the
1017 def chown(path, user=None, group=None): function
    [all...]
tarfile.py 2224 def chown(self, tarinfo, targetpath, numeric_owner): member in class:TarFile
    [all...]
  /libcore/ojluni/src/main/java/sun/nio/fs/
UnixCopyFile.java 166 chown(target, attrs.uid(), attrs.gid()); method
346 chown(target, attrs.uid(), attrs.gid()); method
UnixFileAttributeViews.java 242 // chown
247 chown(file, uid, gid); method
UnixNativeDispatcher.java 330 * chown(const char* path, uid_t owner, gid_t group)
332 static void chown(UnixPath path, int uid, int gid) throws UnixException { method in class:UnixNativeDispatcher
  /libcore/luni/src/main/java/android/system/
Os.java 88 * See <a href="http://man7.org/linux/man-pages/man2/chown.2.html">chown(2)</a>.
90 public static void chown(String path, int uid, int gid) throws ErrnoException { Libcore.os.chown(path, uid, gid); } method in class:Os
  /external/brotli/c/tools/
brotli.c 51 #define chown(F, O, G) (0) macro
497 res = chown(output_path, (uid_t)-1, statbuf.st_gid);
502 res = chown(output_path, statbuf.st_uid, (gid_t)-1);
  /frameworks/base/core/java/android/os/
FileUtils.java 105 * @param uid to apply through {@code chown}, or -1 to leave unchanged
106 * @param gid to apply through {@code chown}, or -1 to leave unchanged
117 * @param uid to apply through {@code chown}, or -1 to leave unchanged
118 * @param gid to apply through {@code chown}, or -1 to leave unchanged
131 Os.chown(path, uid, gid);
133 Slog.w(TAG, "Failed to chown(" + path + "): " + e);
145 * @param uid to apply through {@code chown}, or -1 to leave unchanged
146 * @param gid to apply through {@code chown}, or -1 to leave unchanged
173 Os.chown(to.getAbsolutePath(), stat.st_uid, stat.st_gid);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
tarfile.py 2259 def chown(self, tarinfo, targetpath): member in class:TarFile
    [all...]
  /external/python/cpython2/Lib/
tarfile.py 2295 def chown(self, tarinfo, targetpath): member in class:TarFile
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
tarfile.py 2261 def chown(self, tarinfo, targetpath): member in class:TarFile
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
tarfile.py 2261 def chown(self, tarinfo, targetpath): member in class:TarFile
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
tarfile.py 2261 def chown(self, tarinfo, targetpath): member in class:TarFile
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
tarfile.py 2261 def chown(self, tarinfo, targetpath): member in class:TarFile
    [all...]
  /frameworks/base/core/java/android/app/
ContextImpl.java 611 Os.chown(path, -1, gid);
    [all...]
  /prebuilts/misc/common/robolectric/android-all/
android-all-6.0.1_r3-robolectric-0.jar 
android-all-7.0.0_r1-robolectric-r1.jar 
android-all-7.1.0_r7-robolectric-0.jar 
android-all-7.1.0_r7-robolectric-r1.jar 
android-all-8.0.0_r4-robolectric-0.jar 

Completed in 772 milliseconds

1 2