Home
last modified time | relevance | path

Searched refs:ofd (Results 1 – 2 of 2) sorted by relevance

/libcore/ojluni/src/main/java/sun/nio/fs/
DLinuxUserDefinedFileAttributeView.java298 static void copyExtendedAttributes(int ofd, int nfd) { in copyExtendedAttributes() argument
307 size = flistxattr(ofd, buffer.address(), size); in copyExtendedAttributes()
342 copyExtendedAttribute(ofd, name, nfd); in copyExtendedAttributes()
357 private static void copyExtendedAttribute(int ofd, byte[] name, int nfd) in copyExtendedAttribute() argument
360 int size = fgetxattr(ofd, name, 0L, 0); in copyExtendedAttribute()
364 size = fgetxattr(ofd, name, address, size); in copyExtendedAttribute()
DLinuxFileSystem.java71 void copyNonPosixAttributes(int ofd, int nfd) { in copyNonPosixAttributes() argument
72 LinuxUserDefinedFileAttributeView.copyExtendedAttributes(ofd, nfd); in copyNonPosixAttributes()