Searched defs:sendto (Results 1 - 4 of 4) sorted by relevance

/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.inline.hpp263 inline int os::sendto(int fd, char* buf, size_t len, uint flags, function in class:os
265 RESTARTABLE_RETURN_INT((int)::sendto(fd, buf, len, flags, to, tolen));
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.inline.hpp268 inline int os::sendto(int fd, char* buf, size_t len, uint flags, function in class:os
270 RESTARTABLE_RETURN_INT((int)::sendto(fd, buf, len, flags, to, tolen));
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp6810 int os::sendto(int fd, char* buf, size_t len, uint flags, function in class:os
6812 INTERRUPTIBLE_RETURN_INT((int)::sendto(fd, buf, len, flags, to, tolen),\
/openjdk7/hotspot/src/os/windows/vm/
H A Dos_windows.cpp4988 int os::sendto(int fd, char* buf, size_t len, uint flags, function in class:os
4991 return ::sendto(fd, buf, (int)len, flags, to, tolen);

Completed in 81 milliseconds