Searched defs:nfd (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DBsdFileSystem.java69 void copyNonPosixAttributes(int ofd, int nfd) { argument
H A DLinuxFileSystem.java71 void copyNonPosixAttributes(int ofd, int nfd) { argument
72 LinuxUserDefinedFileAttributeView.copyExtendedAttributes(ofd, nfd);
H A DSolarisFileSystem.java94 void copyNonPosixAttributes(int ofd, int nfd) { argument
95 SolarisUserDefinedFileAttributeView.copyExtendedAttributes(ofd, nfd);
H A DSolarisUserDefinedFileAttributeView.java240 * @param nfd
243 static void copyExtendedAttributes(int ofd, int nfd) { argument
266 copyExtendedAttribute(ofd, name, nfd);
275 private static void copyExtendedAttribute(int ofd, byte[] name, int nfd) argument
282 int dst = openat(nfd, name, (O_CREAT|O_WRONLY|O_TRUNC|O_XATTR),
H A DLinuxUserDefinedFileAttributeView.java279 * @param nfd
282 static void copyExtendedAttributes(int ofd, int nfd) { argument
322 copyExtendedAttribute(ofd, name, nfd);
337 private static void copyExtendedAttribute(int ofd, byte[] name, int nfd) argument
345 fsetxattr(nfd, name, address, size);

Completed in 41 milliseconds