Searched defs:clear_interrupted (Results 1 - 6 of 6) sorted by relevance

/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.hpp313 clear_interrupted = true enumerator in enum:Solaris::__anon95
H A Dos_solaris.cpp3618 os::Solaris::clear_interrupted); member in class:os::Solaris
3648 INTERRUPTIBLE_RETURN_INT_VM(::read(fd, buf, nBytes), os::Solaris::clear_interrupted); member in class:os::Solaris
3652 INTERRUPTIBLE_RETURN_INT(::read(fd, buf, nBytes), os::Solaris::clear_interrupted); member in class:os::Solaris
4418 bool os::is_interrupted(Thread* thread, bool clear_interrupted) { argument
4434 if (res && clear_interrupted) {
5764 INTERRUPTIBLE(::ioctl(fd, FIONREAD, &n),ioctl_return,os::Solaris::clear_interrupted); member in class:os::Solaris
6715 INTERRUPTIBLE_RETURN_INT(::write(fd, buf, nBytes), os::Solaris::clear_interrupted); member in class:os::Solaris
6727 INTERRUPTIBLE_RETURN_INT((int)::recv(fd, buf, nBytes, flags), os::Solaris::clear_interrupted);
6731 INTERRUPTIBLE_RETURN_INT((int)::send(fd, buf, nBytes, flags), os::Solaris::clear_interrupted);
6756 INTERRUPTIBLE_NORESTART(::poll(&pfd, 1, timeout), res, os::Solaris::clear_interrupted); member in class:os::Solaris
6773 os::Solaris::clear_interrupted); member in class:os::Solaris
6782 os::Solaris::clear_interrupted); member in class:os::Solaris
6829 os::Solaris::clear_interrupted); member in class:os::Solaris
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A Dthread.cpp795 bool Thread::is_interrupted(Thread* thread, bool clear_interrupted) { argument
798 // Note: If clear_interrupted==false, this simply fetches and
800 return os::is_interrupted(thread, clear_interrupted);
/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp4109 bool os::is_interrupted(Thread* thread, bool clear_interrupted) { argument
4117 if (interrupted && clear_interrupted) {
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.cpp3955 bool os::is_interrupted(Thread* thread, bool clear_interrupted) { argument
3963 if (interrupted && clear_interrupted) {
/openjdk7/hotspot/src/os/windows/vm/
H A Dos_windows.cpp3517 bool os::is_interrupted(Thread* thread, bool clear_interrupted) { argument
3529 if (interrupted && clear_interrupted) {

Completed in 868 milliseconds