Searched refs:locked (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/misc/
H A DLock.java62 private boolean locked = false; field in class:Lock
65 * Create a lock, which is initially not locked.
79 while (locked) {
82 locked = true;
90 locked = false;
/openjdk7/jdk/src/share/classes/sun/awt/
H A DMutex.java29 private boolean locked; field in class:Mutex
33 if (locked && Thread.currentThread() == owner) {
37 if (!locked) {
38 locked = true;
55 locked = false;
60 return (locked && Thread.currentThread() == owner);
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DstubRoutines_sparc.hpp56 locked = 1 enumerator in enum:Sparc::__anon26
H A DstubGenerator_sparc.cpp602 __ set(StubRoutines::Sparc::locked, lock_reg);
H A Dassembler_sparc.cpp2732 set(StubRoutines::Sparc::locked, lock_reg);
3553 // if compare/exchange succeeded we found an unlocked object and we now have locked it
3577 // Triage: biased, stack-locked, neutral, inflated
3640 // Triage: biased, stack-locked, neutral, inflated
3848 // to O and O is stack-locked by T1. The "stomp" race could cause
/openjdk7/jdk/src/share/native/com/sun/media/sound/
H A DPlatformMidi.c113 if (!overwrite || queue->queue[queue->writeIndex].locked) {
138 if (!overwrite || queue->queue[queue->writeIndex].locked) {
168 msg->locked = TRUE;
180 if (!onlyLocked || msg->locked) {
185 msg->locked = FALSE;
H A DPlatformMidi.h66 INT32 locked; // TRUE when event is currently being read member in struct:tag_MidiMessage
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/interceptors/
H A DInterceptorList.java73 private boolean locked = false; field in class:InterceptorList
108 // If locked, deny any further addition of interceptors.
109 if( locked ) {
150 locked = true;

Completed in 88 milliseconds