Searched refs:dequeue (Results 1 - 25 of 27) sorted by relevance

12

/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/encoding/
H A DBufferQueue.java44 public ByteBufferWithInfo dequeue() throws NoSuchElementException method in class:BufferQueue
H A DBufferManagerReadStream.java131 result = fragmentQueue.dequeue();
206 abbwi = fragmentQueue.dequeue();
H A DBufferManagerWriteCollect.java223 return queue.dequeue();
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/util/
H A DClassQueue.java75 public JavaClass dequeue() { method in class:ClassQueue
/openjdk7/jdk/src/share/classes/sun/misc/
H A DRequestProcessor.java58 Object obj = requestQueue.dequeue();
H A DQueue.java75 public Object dequeue() throws InterruptedException { method in class:Queue
76 return dequeue(0L);
88 public synchronized Object dequeue(long timeOut) method in class:Queue
H A DTimer.java196 TimerThread.dequeue(this);
328 enqueue, for inserting a timer into queue and dequeue, for removing
465 static protected boolean dequeue(Timer timer) { method in class:TimerThread
476 + ": dequeue " + timer.interval + ": no-op");
491 + ": dequeue " + timer.interval + ": ");
/openjdk7/jdk/src/share/back/
H A DdebugLoop.c38 static jboolean dequeue(jdwpPacket *p);
114 if (!dequeue(&p)) {
286 dequeue(jdwpPacket *packet) { function
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DEventQueue.java112 private synchronized QueueElement dequeue() method in class:EventQueue
134 while ((qe = dequeue()) != null) {
/openjdk7/hotspot/src/os/windows/vm/
H A DattachListener_windows.cpp34 // The AttachListener thread services a queue of operations. It blocks in the dequeue
106 // dequeue an operation from from head of the list
107 static Win32AttachOperation* dequeue();
232 // dequeue the operation from the head of the operation list. If
233 Win32AttachOperation* Win32AttachListener::dequeue() { function in class:Win32AttachListener
345 AttachOperation* AttachListener::dequeue() { function in class:AttachListener
353 AttachOperation* op = Win32AttachListener::dequeue();
/openjdk7/hotspot/src/share/vm/services/
H A DattachListener.hpp89 // dequeue the next operation
90 static AttachOperation* dequeue();
H A DattachListener.cpp411 AttachOperation* op = AttachListener::dequeue();
413 return; // dequeue failed or shutdown
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DgcTaskManager.hpp173 GCTask* dequeue();
175 GCTask* dequeue(uint affinity);
256 GCTask* dequeue() { function in class:SynchronizedGCTaskQueue
258 return unsynchronized_queue()->dequeue();
260 GCTask* dequeue(uint affinity) { function in class:SynchronizedGCTaskQueue
262 return unsynchronized_queue()->dequeue(affinity);
H A DgcTaskManager.cpp231 GCTask* GCTaskQueue::dequeue() { function in class:GCTaskQueue
234 " GCTaskQueue::dequeue()", this);
237 assert(!is_empty(), "shouldn't dequeue from empty list");
248 GCTask* GCTaskQueue::dequeue(uint affinity) { function in class:GCTaskQueue
251 " GCTaskQueue::dequeue(%u)", this, affinity);
254 assert(!is_empty(), "shouldn't dequeue from empty list");
658 result = queue()->dequeue(which);
660 result = queue()->dequeue();
/openjdk7/hotspot/src/os/bsd/vm/
H A DattachListener_bsd.cpp103 static BsdAttachOperation* dequeue();
331 BsdAttachOperation* BsdAttachListener::dequeue() { function in class:BsdAttachListener
439 AttachOperation* AttachListener::dequeue() { function in class:AttachListener
447 AttachOperation* op = BsdAttachListener::dequeue();
/openjdk7/hotspot/src/os/linux/vm/
H A DattachListener_linux.cpp103 static LinuxAttachOperation* dequeue();
326 LinuxAttachOperation* LinuxAttachListener::dequeue() { function in class:LinuxAttachListener
422 AttachOperation* AttachListener::dequeue() { function in class:AttachListener
430 AttachOperation* op = LinuxAttachListener::dequeue();
/openjdk7/hotspot/src/share/vm/runtime/
H A DserviceThread.cpp108 jvmti_event = JvmtiDeferredEventQueue::dequeue();
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DLinkedBlockingQueue.java207 private E dequeue() { method in class:LinkedBlockingQueue
444 x = dequeue();
469 x = dequeue();
491 x = dequeue();
H A DPriorityBlockingQueue.java311 private E dequeue() { method in class:PriorityBlockingQueue
527 return dequeue();
538 while ( (result = dequeue()) == null)
552 while ( (result = dequeue()) == null && nanos > 0)
774 dequeue();
/openjdk7/hotspot/src/os/solaris/vm/
H A DattachListener_solaris.cpp131 // dequeue an operation
132 static SolarisAttachOperation* dequeue();
449 SolarisAttachOperation* SolarisAttachListener::dequeue() { function in class:SolarisAttachListener
563 AttachOperation* AttachListener::dequeue() { function in class:AttachListener
571 AttachOperation* op = SolarisAttachListener::dequeue();
/openjdk7/jdk/src/macosx/native/sun/osxapp/
H A DNSApplicationAWT.m324 - (NSEvent *)nextEventMatchingMask:(NSUInteger)mask untilDate:(NSDate *)expiration inMode:(NSString *)mode dequeue:(BOOL)deqFlag {
329 NSEvent *event = [super nextEventMatchingMask:mask untilDate:expiration inMode:mode dequeue: deqFlag];
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiImpl.hpp511 static JvmtiDeferredEvent dequeue();
517 // dequeue(), enqueue(), or process_pending_events() (all of which require
/openjdk7/jdk/src/share/classes/javax/swing/tree/
H A DDefaultMutableTreeNode.java1390 queue.dequeue();
1422 public Object dequeue() { method in class:DefaultMutableTreeNode.BreadthFirstEnumeration.Queue
/openjdk7/jdk/src/macosx/native/sun/awt/
H A DLWCToolkit.m324 dequeue:YES]) != nil) {
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DJavaClass.java806 JavaClass clazz = queue.dequeue();

Completed in 100 milliseconds

12