HomeSort by relevance Sort by last modified time
    Searched refs:chown (Results 201 - 225 of 274) sorted by null

1 2 3 4 5 6 7 891011

  /frameworks/native/cmds/rawbu/
backup.cpp 601 if (chown(path, statBuffer.st_uid, statBuffer.st_gid) != 0) {
602 fprintf(stderr, "unable to chown destination %s '%s' to uid %d / gid %d: %s\n",
  /libcore/luni/src/main/java/libcore/io/
Linux.java 62 public native void chown(String path, int uid, int gid) throws ErrnoException; method in class:Linux
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
unistd.h 183 _POSIX_CHOWN_RESTRICTED Only the super user can use `chown' to change
184 the owner of a file. `chown' can only be used
474 extern int chown (__const char *__file, __uid_t __owner, __gid_t __group)
    [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/go/darwin-x86/src/os/
file_plan9.go 452 // Chown changes the numeric uid and gid of the named file.
455 func Chown(name string, uid, gid int) error {
456 return &PathError{"chown", name, syscall.EPLAN9}
466 // Chown changes the numeric uid and gid of the named file.
468 func (f *File) Chown(uid, gid int) error {
472 return &PathError{"chown", f.name, syscall.EPLAN9}
  /prebuilts/go/linux-x86/src/os/
file_plan9.go 452 // Chown changes the numeric uid and gid of the named file.
455 func Chown(name string, uid, gid int) error {
456 return &PathError{"chown", name, syscall.EPLAN9}
466 // Chown changes the numeric uid and gid of the named file.
468 func (f *File) Chown(uid, gid int) error {
472 return &PathError{"chown", f.name, syscall.EPLAN9}
  /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...]
  /system/core/adb/
file_sync_service.cpp 93 if (chown(partial_path.c_str(), uid, gid) == -1) return false;
  /bootable/recovery/
recovery.cpp 478 chown(LOG_FILE, AID_SYSTEM, AID_SYSTEM);
480 chown(LAST_KMSG_FILE, AID_SYSTEM, AID_SYSTEM);
    [all...]
  /external/ltp/testcases/kernel/fs/acl/
tacl_xattr.sh 637 # Chown only change object owner and group
641 chown tacluser2.tacluser2 tacl/mount-ext2/shared/team1/newfile2
652 printf "\nSUCCESS: Chown correct\n"
654 printf "\nFAILED: Chown are not correct\n"
657 echo "FAILED: Chown are not correct"
  /external/python/cpython2/Mac/BuildScript/
build-installer.py     [all...]
  /external/python/cpython3/Mac/BuildScript/
build-installer.py     [all...]
  /external/wpa_supplicant_8/hostapd/
ctrl_iface.c     [all...]
  /frameworks/native/cmds/dumpstate/
dumpstate.cpp     [all...]
  /bootable/recovery/updater/
blockimg.cpp 137 if (chown(last_command_tmp.c_str(), AID_SYSTEM, AID_SYSTEM) == -1) {
851 PLOG(ERROR) << "failed to chown \"" << fn << "\"";
924 if (chown(dirname.c_str(), AID_SYSTEM, AID_SYSTEM) != 0) { // system user
925 ErrorAbort(state, kStashCreationFailure, "chown \"%s\" failed: %s", dirname.c_str(),
    [all...]
  /external/llvm/lib/Analysis/
TargetLibraryInfo.cpp 231 TLI.setUnavailable(LibFunc::chown);
711 case LibFunc::chown:
    [all...]
  /external/toybox/generated/
newtoys.h 27 USE_CHOWN(OLDTOY(chown, chgrp, TOYFLAG_BIN))
  /external/ltp/lib/
safe_macros.c 584 rval = chown(path, owner, group);
588 "%s:%d: chown(%s,%d,%d) failed",
  /external/toybox/toys/pending/
tar.c 446 if (chown(file_hdr->name, u, g))
447 perror_msg("chown %d:%d '%s'", u, g, file_hdr->name);;
  /external/wpa_supplicant_8/wpa_supplicant/
hs20_supplicant.c 395 if (chown(fname, statbuf.st_uid, statbuf.st_gid) < 0) {
  /frameworks/native/cmds/installd/
utils.cpp     [all...]
  /frameworks/native/cmds/lshal/
ListCommand.cpp 475 chown(mFileOutputPath.c_str(), AID_SHELL, AID_SHELL);
    [all...]
  /system/netd/server/
TrafficController.cpp 99 int ret = chown(path, AID_ROOT, group);

Completed in 1778 milliseconds

1 2 3 4 5 6 7 891011