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

1 2 3 4

  /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
  /prebuilts/go/darwin-x86/src/os/
file_posix.go 47 // See docs in file.go:Chmod.
48 func chmod(name string, mode FileMode) error { func
49 if e := syscall.Chmod(fixLongPath(name), syscallMode(mode)); e != nil {
50 return &PathError{"chmod", name, e}
55 // See docs in file.go:(*File).Chmod.
56 func (f *File) chmod(mode FileMode) error { func
57 if err := f.checkValid("chmod"); err != nil {
61 return f.wrapErr("chmod", e)
file_plan9.go 197 func (f *File) chmod(mode FileMode) error { func
205 return &PathError{"chmod", f.name, e}
213 return &PathError{"chmod", f.name, err}
216 return &PathError{"chmod", f.name, err}
374 // See docs in file.go:Chmod.
375 func chmod(name string, mode FileMode) error { func
380 return &PathError{"chmod", name, e}
388 return &PathError{"chmod", name, err}
391 return &PathError{"chmod", name, err}
  /prebuilts/go/linux-x86/src/os/
file_posix.go 47 // See docs in file.go:Chmod.
48 func chmod(name string, mode FileMode) error { func
49 if e := syscall.Chmod(fixLongPath(name), syscallMode(mode)); e != nil {
50 return &PathError{"chmod", name, e}
55 // See docs in file.go:(*File).Chmod.
56 func (f *File) chmod(mode FileMode) error { func
57 if err := f.checkValid("chmod"); err != nil {
61 return f.wrapErr("chmod", e)
file_plan9.go 197 func (f *File) chmod(mode FileMode) error { func
205 return &PathError{"chmod", f.name, e}
213 return &PathError{"chmod", f.name, err}
216 return &PathError{"chmod", f.name, err}
374 // See docs in file.go:Chmod.
375 func chmod(name string, mode FileMode) error { func
380 return &PathError{"chmod", name, e}
388 return &PathError{"chmod", name, err}
391 return &PathError{"chmod", name, err}
  /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 71 @Override public void chmod(String path, int mode) throws ErrnoException { method in class:BlockGuardOs
73 os.chmod(path, mode);
ForwardingOs.java 70 public void chmod(String path, int mode) throws ErrnoException { os.chmod(path, mode); } method in class:ForwardingOs
Linux.java 61 public native void chmod(String path, int mode) throws ErrnoException; method in class:Linux
  /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
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/
Xw32defs.h 16 # define chmod _chmod macro
  /system/core/adb/
sysdeps.h 256 #define chmod adb_chmod macro
  /external/zlib/src/contrib/untgz/
untgz.c 32 # define chmod(path,mode) _chmod(path,mode) macro
277 chmod(item->fname,item->mode);
  /toolchain/binutils/binutils-2.27/zlib/contrib/untgz/
untgz.c 32 # define chmod(path,mode) _chmod(path,mode) macro
277 chmod(item->fname,item->mode);
  /libcore/luni/src/main/java/android/system/
Os.java 83 * See <a href="http://man7.org/linux/man-pages/man2/chmod.2.html">chmod(2)</a>.
85 public static void chmod(String path, int mode) throws ErrnoException { Libcore.os.chmod(path, mode); } method in class:Os
  /external/brotli/c/tools/
brotli.c 50 #define chmod(F, P) (0) macro
492 res = chmod(output_path, statbuf.st_mode & (S_IRWXU | S_IRWXG | S_IRWXO));
  /external/python/cpython3/Lib/
pathlib.py 409 chmod = _wrap_strfunc(os.chmod) variable in class:_NormalAccessor
1243 def chmod(self, mode): member in class:Path
    [all...]
  /external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/activity/
ScriptManager.java 111 FileUtils.chmod(sl4a, 0755); // Handle the sl4a parent folder first.
  /frameworks/base/core/java/android/os/
FileUtils.java 104 * @param mode to apply through {@code chmod}
116 * @param mode to apply through {@code chmod}
123 Os.chmod(path, mode);
125 Slog.w(TAG, "Failed to chmod(" + path + "): " + e);
144 * @param mode to apply through {@code chmod}
172 Os.chmod(to.getAbsolutePath(), stat.st_mode);
    [all...]

Completed in 1148 milliseconds

1 2 3 4