Searched refs:pending (Results 1 - 25 of 28) sorted by relevance

12

/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/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/com/sun/tools/jdi/
H A DAbstractLauncher.java72 String pending = null;
83 } else if (pending != null) {
85 quoted = pending;
88 tokenList.add(pending);
92 pending = null;
100 pending = token;
108 if (pending != null) {
109 tokenList.add(pending);
/openjdk7/jdk/src/share/back/
H A Dinvoker.h36 jboolean pending; /* Is an invoke requested? */ member in struct:InvokeRequest
H A DstepControl.h38 jboolean pending; member in struct:__anon508
H A DstepControl.c54 * complete. While a step request is pending, we may need to temporarily
58 * This is safe because there can only ever be one pending step request
275 if (step->pending) {
277 * Note: current depth is reported as *before* the pending frame
378 if (step->pending) {
447 if (step->pending) {
531 * If no step is currently pending, ignore the event
533 if (!step->pending) {
833 * If everything went ok, indicate a step is pending.
836 step->pending
[all...]
H A Dinvoker.c228 if (request->pending) {
268 request->pending = JNI_TRUE;
621 startNow = request->pending && !request->started;
696 JDI_ASSERT(request->pending);
699 request->pending = JNI_FALSE;
751 return request->pending;
/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/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/native/java/util/zip/zlib-1.2.3/
H A Ddeflate.c396 s->pending = 0;
538 * Put a short in the pending buffer. The 16-bit value is put in MSB order.
551 * Flush as much pending output as possible. All deflate() output goes
559 unsigned len = strm->state->pending;
569 strm->state->pending -= len;
570 if (strm->state->pending == 0) {
641 s->pending);
678 uInt beg = s->pending; /* start of bytes to update crc */
681 if (s->pending == s->pending_buf_size) {
682 if (s->gzhead->hcrc && s->pending > be
[all...]
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);}
H A Dtrees.c1135 Assert((uInt)(s->pending) < s->lit_bufsize + 2*lx,
/openjdk7/jdk/src/windows/classes/sun/nio/ch/
H A DWindowsAsynchronousSocketChannelImpl.java235 // connection is pending
477 boolean pending = false;
492 // I/O is pending
493 pending = true;
517 // release resources if I/O not pending
518 if (!pending) {
744 boolean pending = false;
758 // I/O is pending
759 pending = true;
778 // release resources if I/O not pending
[all...]
H A DWindowsAsynchronousFileChannelImpl.java245 // I/O is pending
442 boolean pending = false;
452 // I/O is pending
453 pending = true;
465 if (!pending) {
637 // I/O is pending
/openjdk7/jdk/src/solaris/classes/sun/nio/ch/
H A DUnixAsynchronousSocketChannelImpl.java63 // pending connect (updateLock)
69 // pending remote address (stateLock)
72 // pending read (updateLock)
82 // pending write (updateLock)
168 // map event to pending result
499 boolean pending = false;
534 pending = true;
542 if (!pending)
682 boolean pending = false;
717 pending
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DThreads.java203 ObjectMonitor pending = thread.getCurrentPendingMonitor();
204 if (monitor.equals(pending)) {
/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/corba/src/share/classes/com/sun/corba/se/impl/io/
H A DIIOPOutputStream.java187 /* If the recursion depth is 0, test for and clear the pending exception.
188 * If there is a pending exception throw it.
190 IOException pending = abortIOException;
193 if (pending != null) {
194 bridge.throwException( pending ) ;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/
H A DCommandProcessor.java757 Stack pending = new Stack();
765 pending.push(n);
768 while (!pending.empty()) {
769 n = (Type)pending.pop();
1138 Stack pending = new Stack();
1146 pending.push(n);
1149 while (!pending.empty()) {
1150 n = (Type)pending.pop();
/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/adlc/
H A Doutput_c.cpp2548 DefineEmitState pending(fp, *this, *encoding, *encode, inst);
2556 // Emit pending code
2557 pending.emit();
2558 pending.clear();
2565 pending.add_rep_var(ec_rep_var);
2568 // Emit pending code
2569 pending.emit();
2570 pending.clear();
2627 DefineEmitState pending(fp, *this, *encoding, *encode, inst);
2635 // Emit pending cod
[all...]
/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...]

Completed in 112 milliseconds

12