Searched refs:unlock (Results 76 - 100 of 151) sorted by relevance

1234567

/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DForkJoinTask.java453 lock.unlock();
485 lock.unlock();
517 lock.unlock();
583 lock.unlock();
H A DConcurrentHashMap.java470 unlock();
647 unlock();
671 unlock();
693 unlock();
707 unlock();
968 segmentAt(segments, j).unlock();
1082 segmentAt(segments, j).unlock();
1524 seg.unlock();
/openjdk7/jdk/src/share/classes/java/util/concurrent/locks/
H A DReentrantLock.java86 * lock.unlock()
459 public void unlock() { method in class:ReentrantLock
510 * matched by an unlock action.
527 * lock.unlock();
574 * lock.unlock();
H A DReentrantReadWriteLock.java147 * rwl.readLock().unlock();
159 * rwl.writeLock().unlock(); // Unlock write, still hold read
166 * rwl.readLock().unlock();
189 * finally { r.unlock(); }
194 * finally { r.unlock(); }
199 * finally { w.unlock(); }
204 * finally { w.unlock(); }
448 "attempt to unlock read lock, not locked by current thread");
882 public void unlock() { method in class:ReentrantReadWriteLock.ReadLock
1130 public void unlock() { method in class:ReentrantReadWriteLock.WriteLock
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dvm_operations_g1.cpp258 Heap_lock->unlock();
H A DptrQueue.cpp93 // We have to unlock _lock (which may be Shared_DirtyCardQ_lock) before
96 _lock->unlock();
99 // We must relock only because the caller will unlock, for the normal
/openjdk7/hotspot/src/share/vm/opto/
H A Dmacro.hpp99 void expand_unlock_node(UnlockNode *unlock);
H A Dcallnode.cpp1291 // 3. In this case we eliminate the unlock of the first s, the lock
1292 // and unlock in the then case and the lock in the final s.
1305 // The code will work properly for this case, leaving in the unlock
1316 // eliminating the first unlock and the lock in the then side.
1317 // Alternatively the unlock could be moved out of the then side so it
1318 // was after the merge and the first unlock and second lock
1322 // Additionally we might allow work between a unlock and lock before
1368 // patterns. Once it finds a set of lock and unlock operations to
1413 UnlockNode *unlock = n->as_Unlock(); local
1414 if (lock->obj_node()->eqv_uncast(unlock
1428 find_matching_lock(UnlockNode* unlock) argument
[all...]
/openjdk7/jdk/test/java/lang/management/ThreadMXBean/
H A DMyOwnSynchronizer.java140 public void unlock() { sync.release(1); } method in class:MyOwnSynchronizer.Mutex
/openjdk7/jdk/src/share/demo/management/FullThreadDump/
H A DDeadlock.java146 lock1.unlock();
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DAsynchronousFileChannelImpl.java92 closeLock.readLock().unlock();
H A DAsynchronousSocketChannelImpl.java124 closeLock.readLock().unlock();
141 closeLock.writeLock().unlock();
/openjdk7/jdk/src/share/sample/scripting/scriptpad/src/resources/
H A Dconc.js180 lock.unlock();
/openjdk7/jdk/src/solaris/classes/sun/nio/ch/
H A DEPollPort.java238 fdToChannelLock.readLock().unlock();
H A DKQueuePort.java246 fdToChannelLock.readLock().unlock();
/openjdk7/hotspot/src/share/vm/runtime/
H A Dvm_operations.cpp217 Heap_lock->unlock();
313 Heap_lock->unlock();
H A Dsafepoint.cpp491 Threads_lock->unlock();
576 // cause the native wrapper to return into the JVM to do the unlock
592 // the first one. When it returns it will perform the unlock.
601 // perform the needed critical unlock.
648 // Safepoint_lock->unlock() are happening atomic with regards to the safepoint code
675 Safepoint_lock->unlock();
683 Threads_lock->unlock();
713 Threads_lock->unlock();
/openjdk7/jdk/test/java/nio/channels/AsynchronousFileChannel/
H A DLock.java94 slave.unlock();
176 static final String UNLOCK_CMD = "unlock";
231 LockSlaveMirror unlock() throws IOException { method in class:Lock.LockSlaveMirror
/openjdk7/jdk/test/sun/java2d/pipe/hw/RSLAPITest/
H A DRSLAPITest.java138 rq.unlock();
273 rq.unlock();
/openjdk7/jdk/src/macosx/classes/sun/java2d/opengl/
H A DCGLGraphicsConfig.java159 rq.unlock();
254 rq.unlock();
/openjdk7/jdk/src/share/classes/sun/net/httpserver/
H A DSSLStreams.java442 handshaking.unlock();
487 handshaking.unlock();
/openjdk7/jdk/src/share/classes/sun/font/
H A DStrikeCache.java304 rq.unlock();
/openjdk7/jdk/src/windows/classes/sun/java2d/d3d/
H A DD3DGraphicsConfig.java87 rq.unlock();
H A DD3DRenderer.java99 rq.unlock();
/openjdk7/jdk/test/java/lang/management/ManagementFactory/
H A DThreadMXBeanProxy.java226 public void unlock() { sync.release(1); } method in class:ThreadMXBeanProxy.Mutex

Completed in 182 milliseconds

1234567