Searched refs:consumed (Results 1 - 17 of 17) sorted by relevance

/openjdk7/jdk/src/macosx/classes/com/apple/eawt/event/
H A DGestureEvent.java45 boolean consumed; field in class:GestureEvent
56 consumed = true;
60 * @return if the event has been consumed
63 return consumed;
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_Event.h37 jfieldID consumed; member in struct:EventIDs
H A Dawt_AWTEvent.h39 jfieldID consumed; member in struct:AWTEventIDs
H A Dawt_Event.c46 eventIDs.consumed = (*env)->GetFieldID(env, cls, "consumed", "Z");
H A Dawt_AWTEvent.c56 awtEventIDs.consumed = (*env)->GetFieldID(env, cls, "consumed", "Z");
/openjdk7/jdk/src/share/classes/java/awt/event/
H A DInputMethodEvent.java322 consumed = true;
326 * Returns whether or not this event has been consumed.
330 return consumed;
H A DInputEvent.java459 consumed = true;
463 * Returns whether or not this event has been consumed.
467 return consumed;
/openjdk7/jdk/src/share/classes/java/awt/
H A DEvent.java589 private boolean consumed = false; field in class:Event
655 consumed = true; // these types are not passed back to peer
778 consumed = true;
781 // event type cannot be consumed
791 return consumed;
H A DAWTEvent.java101 protected boolean consumed = false; field in class:AWTEvent
344 consumed = true;
424 * Consumes this event, if this event can be consumed. Only low-level,
425 * system events can be consumed
440 consumed = true;
443 // event type cannot be consumed
448 * Returns whether this event has been consumed.
451 return consumed;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/xml/
H A DXMLMessage.java211 * Check if the data source has been consumed.
212 * @return true of the data source has been consumed, otherwise false.
229 private boolean consumed; field in class:XMLMessage.XmlContent
246 consumed = true;
252 return !dataSource.consumed()&&!consumed;
602 private boolean consumed; field in class:XMLMessage.XmlDataSource
609 public boolean consumed() { method in class:XMLMessage.XmlDataSource
610 return consumed;
614 consumed
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DNativeUnpack.java62 // Returns total number of bytes consumed by the engine.
227 long consumed = finish();
229 Utils.log.info("bytes consumed = "+consumed);
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/SSLEngineImpl/
H A DRehandshakeFinished.java64 * (wrap/unwrap) pass before any application data is consumed or
195 boolean consumed, boolean produced) throws Exception {
215 if (consumed) {
217 throw new Exception("Should have consumed bytes");
221 throw new Exception("Should not have consumed bytes");
193 checkResult(SSLEngine engine, SSLEngineResult result, HandshakeStatus rqdHsStatus, boolean consumed, boolean produced) argument
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
H A Djni.cpp267 size_t consumed = uPtr->input_consumed();
269 return consumed;
/openjdk7/jdk/test/sun/security/ssl/javax/net/ssl/NewAPIs/SSLEngine/
H A DCheckStatus.java90 int consumed, int produced)
103 if ((consumed != -1) && (consumed != result.bytesConsumed())) {
104 throw new Exception("Unexpected consumed: need = " + consumed +
113 if ((consumed != -1) && (bbIn.position() != result.bytesConsumed())) {
115 " != " + consumed);
87 checkResult(ByteBuffer bbIn, ByteBuffer bbOut, SSLEngineResult result, Status status, HandshakeStatus hsStatus, int consumed, int produced) argument
H A DConnectionTest.java139 HandshakeStatus hsStatus, int consumed, int produced,
152 if ((consumed != -1) && (consumed != result.bytesConsumed())) {
153 throw new Exception("Unexpected consumed: need = " + consumed +
138 checkResult(SSLEngineResult result, Status status, HandshakeStatus hsStatus, int consumed, int produced, boolean done) argument
/openjdk7/jdk/src/share/back/
H A DthreadControl.c1997 /* Check to see if any events are being consumed by a popFrame(). */
2023 /* Tell event handler to assume event has been consumed. */
2040 jboolean consumed; local
2048 consumed = checkForPopFrameEvents(env, ei, thread);
2049 if ( consumed ) {
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Component.cpp5580 /* Remember if a KEY_PRESSED event is consumed, as an old model
5583 jboolean consumed = local
5587 if (consumed) {

Completed in 99 milliseconds