Home
last modified time | relevance | path

Searched refs:fchmod (Results 1 – 12 of 12) sorted by relevance

/libcore/ojluni/src/main/java/sun/nio/fs/
DUnixCopyFile.java164 fchmod(dfd, attrs.mode()); in copyDirectory()
259 fchmod(fo, attrs.mode()); in copyFile()
DUnixFileAttributeViews.java232 fchmod(fd, mode); in setMode()
DUnixNativeDispatcher.java379 static native void fchmod(int fd, int mode) throws UnixException; in fchmod() method in UnixNativeDispatcher
DUnixSecureDirectoryStream.java511 fchmod(fd, UnixFileModeAttribute.toUnixMode(perms)); in setPermissions()
/libcore/luni/src/main/java/libcore/io/
DBlockGuardOs.java172 @Override public void fchmod(FileDescriptor fd, int mode) throws ErrnoException { in fchmod() method in BlockGuardOs
174 super.fchmod(fd, mode); in fchmod()
DForwardingOs.java239 public void fchmod(FileDescriptor fd, int mode) throws ErrnoException { os.fchmod(fd, mode); } in fchmod() method in ForwardingOs
DOs.java177 public void fchmod(FileDescriptor fd, int mode) throws ErrnoException; in fchmod() method
DLinux.java77 public native void fchmod(FileDescriptor fd, int mode) throws ErrnoException; in fchmod() method in Linux
/libcore/luni/src/main/java/android/system/
DOs.java171 …public static void fchmod(FileDescriptor fd, int mode) throws ErrnoException { Libcore.os.fchmod(f… in fchmod() method in Os
/libcore/ojluni/src/main/native/
DUnixNativeDispatcher.c573 RESTARTABLE(fchmod((int)filedes, (mode_t)mode), err); in Java_sun_nio_fs_UnixNativeDispatcher_fchmod()
/libcore/luni/src/main/native/
Dlibcore_io_Linux.cpp1301 throwIfMinusOne(env, "fchmod", TEMP_FAILURE_RETRY(fchmod(fd, mode))); in Linux_fchmod()
2768 NATIVE_METHOD(Linux, fchmod, "(Ljava/io/FileDescriptor;I)V"),
/libcore/api/
Dcurrent.txt32 …method public static void fchmod(java.io.FileDescriptor, int) throws android.system.ErrnoException;