Searched defs:pending (Results 1 - 15 of 15) sorted by relevance

/openjdk7/jdk/src/share/back/
H A DstepControl.h38 jboolean pending; member in struct:__anon508
H A Dinvoker.h36 jboolean pending; /* Is an invoke requested? */ member in struct:InvokeRequest
/openjdk7/jdk/src/share/classes/java/lang/ref/
H A DReference.java51 * pending-Reference list. Newly-created instances are Active.
53 * Pending: An element of the pending-Reference list, waiting to be
111 private static Reference pending = null; field in class:Reference
113 /* High-priority thread to enqueue pending References
126 if (pending != null) {
127 r = pending;
129 pending = (rn == r) ? null : rn;
/openjdk7/jdk/src/share/classes/sun/misc/
H A DService.java247 Iterator pending = null; field in class:Service.LazyIterator
271 while ((pending == null) || !pending.hasNext()) {
275 pending = parse(service, (URL)configs.nextElement(), returned);
277 nextName = (String)pending.next();
/openjdk7/jdk/src/share/classes/sun/awt/
H A DGlobalCursorManager.java41 boolean pending = false; field in class:GlobalCursorManager.NativeUpdater
46 if (pending) {
47 pending = false;
59 if (!pending) {
60 pending = shouldPost = true;
93 nativeUpdater.pending = false;
/openjdk7/jdk/src/share/classes/java/util/
H A DServiceLoader.java322 Iterator<String> pending = null; field in class:ServiceLoader.LazyIterator
345 while ((pending == null) || !pending.hasNext()) {
349 pending = parse(service, configs.nextElement());
351 nextName = pending.next();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/privateutil/
H A DServiceFinder.java326 Iterator<String> pending = null; field in class:ServiceFinder.LazyIterator
350 while ((pending == null) || !pending.hasNext()) {
354 pending = parse(service, configs.nextElement(), returned);
356 nextName = pending.next();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/
H A DServiceFinder.java320 Iterator<String> pending = null; field in class:ServiceFinder.LazyIterator
345 while ((pending == null) || !pending.hasNext()) {
350 pending = parse(service, currentConfig, returned);
352 nextName = pending.next();
/openjdk7/hotspot/src/share/vm/opto/
H A DgenerateOptoStub.cpp246 Node* pending = make_load(NULL, adr, TypeOopPtr::BOTTOM, T_OBJECT, NoAlias, false); local
250 Node* cmp = _gvn.transform( new (C) CmpPNode(pending, null()) );
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Ddeflate.h121 Bytef *pending_buf; /* output still pending */
123 Bytef *pending_out; /* next pending byte to output to the stream */
124 uInt pending; /* nb of bytes in the pending buffer */ member in struct:internal_state
292 #define put_byte(s, c) {s->pending_buf[s->pending++] = (c);}
/openjdk7/jdk/src/share/classes/javax/swing/
H A DRepaintManager.java1649 private boolean pending; field in class:RepaintManager.ProcessingRunnable
1652 * Marks this processing runnable as pending. If this was not
1653 * already marked as pending, true is returned.
1656 if (!pending) {
1657 pending = true;
1665 pending = false;
1668 // events. If there are pending heavy weight requests this will
/openjdk7/hotspot/src/share/vm/runtime/
H A Dthread.cpp684 bool pending; local
699 pending = is_external_suspend();
703 if (!pending) {
738 pending = is_external_suspend();
741 if (!pending) {
1660 // Execute thread entry point unless this thread has a pending exception
1662 // Note: Due to JVM_StopThread we can have pending exceptions already!
1685 // Ignore pending exception (ThreadDeath), since we are exiting anyway
1693 // Ignore pending exception (ThreadDeath), since we are exiting anyway
1809 // we must check for a pending externa
[all...]
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DsharedRuntime_sparc.cpp1257 // Check and forward and pending exception. Thread is stored in
1901 // block and the check for pending exceptions it's impossible for them
2454 __ stop("no pending exception allowed on exit from IR::monitorenter");
2628 // Must save pending exception around the slow-path VM call. Since it's a
2629 // leaf call, the pending exception (if any) can be kept in a register.
2641 // Must clear pending-exception before re-entering the VM. Since this is
2642 // a leaf call, pending-exception-oop can be safely kept in a register.
2658 __ stop("no pending exception allowed on exit from IR::monitorexit");
2663 // check_forward_pending_exception jump to forward_exception if any pending
3506 // for where the pending exceptio
3798 Label pending; local
3885 Label pending; local
[all...]
/openjdk7/hotspot/src/cpu/x86/vm/
H A DsharedRuntime_x86_32.cpp1505 // block and the check for pending exceptions it's impossible for them
2131 // check for safepoint operation in progress and/or pending suspend requests
2143 // Don't use call_VM as it will see a possible pending exception and forward it
2267 // Any exception pending?
2318 __ stop("no pending exception allowed on exit from monitorenter");
2334 // Save pending exception around call to VM (which contains an EXCEPTION_MARK)
2353 __ stop("no pending exception allowed on exit complete_monitor_unlocking_C");
2824 // In the case of an exception pending with deoptimized then we enter
2917 // verify that there is no pending exception
2922 __ stop("must not have pending exceptio
3479 Label pending; local
[all...]
H A DsharedRuntime_x86_64.cpp1737 // block and the check for pending exceptions it's impossible for them
2382 // check for safepoint operation in progress and/or pending suspend requests
2395 // Don't use call_VM as it will see a possible pending exception and forward it
2516 // Any exception pending?
2559 __ stop("no pending exception allowed on exit from monitorenter");
2584 // Save pending exception around call to VM (which contains an EXCEPTION_MARK)
2597 __ stop("no pending exception allowed on exit complete_monitor_unlocking_C");
3304 // In the case of an exception pending when deoptimizing, we enter
3395 // verify that there is no pending exception
3400 __ stop("must not have pending exceptio
3914 Label pending; local
[all...]

Completed in 256 milliseconds