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

/openjdk7/hotspot/src/share/vm/runtime/
H A Dthread.cpp795 bool Thread::is_interrupted(Thread* thread, bool clear_interrupted) { function in class:Thread
796 trace("is_interrupted", thread);
800 return os::is_interrupted(thread, clear_interrupted);
/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp3612 if (os::is_interrupted(thread, true)) {
4109 bool os::is_interrupted(Thread* thread, bool clear_interrupted) { function in class:os
5846 if (Thread::is_interrupted(thread, false)) {
5870 if (Thread::is_interrupted(thread, false) || pthread_mutex_trylock(_mutex) != 0) {
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.cpp3533 if (os::is_interrupted(thread, true)) {
3955 bool os::is_interrupted(Thread* thread, bool clear_interrupted) { function in class:os
5585 if (Thread::is_interrupted(thread, false)) {
5609 if (Thread::is_interrupted(thread, false) || pthread_mutex_trylock(_mutex) != 0) {
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp4418 bool os::is_interrupted(Thread* thread, bool clear_interrupted) { function in class:os
6499 if (Thread::is_interrupted(thread, false)) {
6524 if (Thread::is_interrupted(thread, false) ||
/openjdk7/hotspot/src/os/windows/vm/
H A Dos_windows.cpp3517 bool os::is_interrupted(Thread* thread, bool clear_interrupted) { function in class:os
4804 if (Thread::is_interrupted(thread, false) ||

Completed in 118 milliseconds