Searched refs:CANCEL (Results 1 - 25 of 31) sorted by relevance

12

/external/jmonkeyengine/engine/src/core/com/jme3/input/controls/
H A DSoftTextDialogInputListener.java41 public static int CANCEL = 1; field in interface:SoftTextDialogInputListener
/external/nist-sip/java/javax/sip/message/
H A DRequest.java9 String CANCEL = "CANCEL"; field in interface:Request
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
H A DErrorCode.java47 CANCEL(8, 5, -1), enum constant in enum:ErrorCode
H A DPushObserver.java76 PushObserver CANCEL = new PushObserver() { field in interface:PushObserver
H A DSpdyConnection.java444 close(ErrorCode.NO_ERROR, ErrorCode.CANCEL);
521 private PushObserver pushObserver = PushObserver.CANCEL;
580 streamErrorCode = ErrorCode.CANCEL;
812 frameWriter.rstStream(streamId, ErrorCode.CANCEL);
829 if (cancel) frameWriter.rstStream(streamId, ErrorCode.CANCEL);
855 if (cancel) frameWriter.rstStream(streamId, ErrorCode.CANCEL);
H A DSpdyStream.java460 SpdyStream.this.close(ErrorCode.CANCEL);
601 closeLater(ErrorCode.CANCEL);
/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DParser.java87 || token.getTokenType() == CANCEL
H A DTokenTypes.java46 public static final int CANCEL = START + 9; field in interface:TokenTypes
/external/nist-sip/java/gov/nist/javax/sip/stack/
H A DSIPServerTransaction.java592 if (method.equals(Request.CANCEL)) {
596 transactionMatches = this.getMethod().equals(Request.CANCEL)
619 // a CANCEL request, which is not deemed
633 // Issue #96: special case handling for a CANCEL request -
635 // be CANCEL for it to have a chance at matching.
636 if (messageToTest.getCSeq().getMethod().equalsIgnoreCase(Request.CANCEL)
638 Request.CANCEL)) {
648 && ((!messageToTest.getCSeq().getMethod().equals(Request.CANCEL)) || getOriginalRequest()
844 } else if (transactionRequest.getMethod().equals(Request.CANCEL)) {
848 // send OK and just ignore the CANCEL
[all...]
H A DSIPTransaction.java451 * Return true if the transaction corresponds to a CANCEL message.
453 * @return -- true if the transaciton is a CANCEL transaction.
456 return getMethod().equals(Request.CANCEL);
922 * This is useful for checking if a CANCEL belongs to this transaction.
943 || this.getOriginalRequest().getMethod().equals(Request.CANCEL))
1009 // JvB: Need to pass the CANCEL to the listener! Retransmitted INVITEs
H A DSIPClientTransaction.java923 if (this.getOriginalRequest().getMethod().equals(Request.CANCEL)
929 * If the original request has generated a final response, the CANCEL SHOULD
930 * NOT be sent, as it is an effective no-op, since CANCEL has no effect on
1076 if (this.getOriginalRequest().getMethod().equalsIgnoreCase(Request.CANCEL)) {
1365 if (method.equals(Request.CANCEL) && lastRequest != null) {
1366 // JvB for CANCEL: use invite CT in CANCEL request to get dialog
H A DSIPDialog.java1883 if (method.equals(Request.CANCEL))
2033 || dialogRequest.getMethod().equals(Request.CANCEL))
/external/libvncserver/libvncserver/
H A Dselbox.c19 enum { SELECTING, OK, CANCEL } state; enumerator in enum:__anon9207::__anon9208
139 m->state = CANCEL;
182 m->state = CANCEL;
296 if(selData.state==CANCEL)
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/spdy/
H A DHttp2ConnectionTest.java33 import static com.squareup.okhttp.internal.spdy.ErrorCode.CANCEL;
421 .pushObserver(PushObserver.CANCEL).build();
427 assertEquals(CANCEL, rstStream.errorCode);
H A DSpdy3ConnectionTest.java38 import static com.squareup.okhttp.internal.spdy.ErrorCode.CANCEL;
420 peer.sendFrame().rstStream(1, CANCEL);
435 assertEquals("stream was reset: CANCEL", expected.getMessage());
495 assertEquals(CANCEL, rstStream.errorCode);
542 assertEquals(CANCEL, rstStream.errorCode);
838 assertEquals("stream was reset: CANCEL", expected.getMessage());
844 assertEquals("stream was reset: CANCEL", expected.getMessage());
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
H A DSpdyTransport.java215 if (stream != null) stream.close(ErrorCode.CANCEL);
/external/nist-sip/java/gov/nist/javax/sip/message/
H A DSIPRequest.java118 putName(Request.CANCEL);
748 * @return A CANCEL SIPRequest constructed according to RFC3261 section 9.1
757 // A CANCEL request SHOULD NOT be sent to cancel a request other than
761 throw new SipException("Attempt to create CANCEL for " + this.getMethod());
764 * The following procedures are used to construct a CANCEL request. The Request-URI,
765 * Call-ID, To, the numeric part of CSeq, and From header fields in the CANCEL request
766 * MUST be identical to those in the request being cancelled, including tags. A CANCEL
769 * allows the CANCEL to be matched with the request it cancels (Section 9.2 indicates how
771 * value of CANCEL. This allows it to be identified and processed as a transaction in its
776 cancel.setMethod(Request.CANCEL);
[all...]
H A DSIPMessage.java844 if (this.getCSeq().getMethod().equals(Request.CANCEL))
870 if (this.getCSeq().getMethod().equals(Request.CANCEL)) {
871 retval.append(Request.CANCEL);
H A DSIPResponse.java620 * Sets the Via branch for CANCEL or ACK requests
634 } else if (method.equals( Request.CANCEL )) {
635 branch = getTopmostVia().getBranch(); // CANCEL uses same branch
/external/nist-sip/java/gov/nist/javax/sip/
H A DDialogFilter.java697 } else if (sipRequest.getMethod().equals(Request.CANCEL)) {
703 "Got a CANCEL, InviteServerTx = " + st + " cancel Server Tx ID = "
708 // Processing incoming CANCEL.
709 // Check if we can process the CANCEL request.
710 if (sipRequest.getMethod().equals(Request.CANCEL)) {
711 // If the CANCEL comes in too late, there's not
717 // just respond OK to the CANCEL and bail.
720 // send OK and just ignore the CANCEL.
736 // Found an invite tx corresponding to the CANCEL.
742 // Could not find a invite tx corresponding to the CANCEL
[all...]
H A DSipProviderImpl.java318 if (request.getMethod().equalsIgnoreCase(Request.CANCEL)) {
695 * not set already, dont overwrite CANCEL branch here..
/external/jmonkeyengine/engine/src/android/com/jme3/system/android/
H A DOGLESContext.java519 /* User clicked CANCEL, send CANCEL action
521 listener.onSoftText(SoftTextDialogInputListener.CANCEL, editTextDialogInput.getText().toString());
/external/sonivox/jet_tools/JetCreator/
H A DJetCtrls.py374 dlg = wx.MessageDialog(None, question, title, wx.YES_NO | wx.CANCEL | wx.ICON_QUESTION)
/external/mesa3d/include/GL/
H A Dvms_x_fix.h1084 #define sys$cancel SYS$CANCEL
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.common_3.6.0.v20100503.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 839 milliseconds

12