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

  /bionic/libc/arch-arm/syscalls/
chown.S 6 ENTRY(chown) function
15 END(chown)
  /bionic/libc/arch-mips/syscalls/
chown.S 4 .globl chown
6 .ent chown
8 chown: label
22 .end chown
  /bionic/libc/arch-x86/syscalls/
chown.S 6 ENTRY(chown) function
27 END(chown)
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
chown.c 8 int chown(const char* path, uid_t owner, gid_t group) { function
  /ndk/sources/host-tools/sed-4.2.1/lib/
unistd.in.h 120 <http://www.opengroup.org/susv3xsh/chown.html>. */
121 # define chown rpl_chown macro
122 extern int chown (const char *file, uid_t uid, gid_t gid);
126 # undef chown
127 # define chown(f,u,g) \
128 (GL_LINK_WARNING ("chown fails to follow symlinks on some systems and " \
130 "use gnulib module chown for portability"), \
131 chown (f, u, g))
  /external/bison/darwin-lib/
unistd.h 566 _GL_WARN_ON_USE (chown, "chdir is not always in <unistd.h> - "
577 <http://pubs.opengroup.org/onlinepubs/9699919799/functions/chown.html. */
580 # undef chown
581 # define chown rpl_chown
583 _GL_FUNCDECL_RPL (chown, int, (const char *file, uid_t uid, gid_t gid)
585 _GL_CXXALIAS_RPL (chown, int, (const char *file, uid_t uid, gid_t gid));
588 _GL_FUNCDECL_SYS (chown, int, (const char *file, uid_t uid, gid_t gid)
591 _GL_CXXALIAS_SYS (chown, int, (const char *file, uid_t uid, gid_t gid));
593 _GL_CXXALIASWARN (chown);
595 # undef chown macro
    [all...]
  /external/bison/linux-lib/
unistd.h 566 _GL_WARN_ON_USE (chown, "chdir is not always in <unistd.h> - "
577 <http://pubs.opengroup.org/onlinepubs/9699919799/functions/chown.html. */
580 # undef chown
581 # define chown rpl_chown
583 _GL_FUNCDECL_RPL (chown, int, (const char *file, uid_t uid, gid_t gid)
585 _GL_CXXALIAS_RPL (chown, int, (const char *file, uid_t uid, gid_t gid));
588 _GL_FUNCDECL_SYS (chown, int, (const char *file, uid_t uid, gid_t gid)
591 _GL_CXXALIAS_SYS (chown, int, (const char *file, uid_t uid, gid_t gid));
593 _GL_CXXALIASWARN (chown);
595 # undef chown macro
    [all...]
  /frameworks/base/core/java/android/os/
FileUtils.java 72 * @param uid to apply through {@code chown}, or -1 to leave unchanged
73 * @param gid to apply through {@code chown}, or -1 to leave unchanged
84 * @param uid to apply through {@code chown}, or -1 to leave unchanged
85 * @param gid to apply through {@code chown}, or -1 to leave unchanged
98 Libcore.os.chown(path, uid, gid);
100 Slog.w(TAG, "Failed to chown(" + path + "): " + e);
112 * @param uid to apply through {@code chown}, or -1 to leave unchanged
113 * @param gid to apply through {@code chown}, or -1 to leave unchanged
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
kernel_proxy.cc 233 int KernelProxy::chown(const char* path, uid_t owner, gid_t group) { function in class:nacl_io::KernelProxy
  /libcore/luni/src/main/java/libcore/io/
Os.java 33 public void chown(String path, int uid, int gid) throws ErrnoException; method in interface:Os
Posix.java 36 public native void chown(String path, int uid, int gid) throws ErrnoException; method in class:Posix
ForwardingOs.java 42 public void chown(String path, int uid, int gid) throws ErrnoException { os.chown(path, uid, gid); } method in class:ForwardingOs
  /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...]
  /external/llvm/include/llvm/Target/
TargetLibraryInfo.h 152 /// int chown(const char *path, uid_t owner, gid_t group);
153 chown, enumerator in enum:llvm::LibFunc::Func

Completed in 546 milliseconds