Searched defs:ofd (Results 1 - 6 of 6) 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.java238 * @param ofd
243 static void copyExtendedAttributes(int ofd, int nfd) { argument
246 int dfd = openat(ofd, ".".getBytes(), (O_RDONLY|O_XATTR), 0);
266 copyExtendedAttribute(ofd, name, nfd);
275 private static void copyExtendedAttribute(int ofd, byte[] name, int nfd) argument
279 int src = openat(ofd, name, (O_RDONLY|O_XATTR), 0);
H A DLinuxUserDefinedFileAttributeView.java277 * @param ofd
282 static void copyExtendedAttributes(int ofd, int nfd) { argument
291 size = flistxattr(ofd, buffer.address(), size);
322 copyExtendedAttribute(ofd, name, nfd);
337 private static void copyExtendedAttribute(int ofd, byte[] name, int nfd) argument
340 int size = fgetxattr(ofd, name, 0L, 0);
344 size = fgetxattr(ofd, name, address, size);
/openjdk7/jdk/src/windows/native/java/net/
H A Dnet_util_md.c628 if (ofd != -1) { \
629 closesocket (ofd); \
630 ofd = -1; \
670 int fd=-1, ofd=-1, rv, len; local
710 ofd = (int)b->ipv6_fd;
716 ofd = (int)b->ipv4_fd;
736 if ((rv=NET_WinBind (ofd, (struct sockaddr *) &oaddr,
757 close_ofd = ofd; ofd = -1;
766 ofd
[all...]

Completed in 79 milliseconds