Home
last modified time | relevance | path

Searched refs:SIPResponse (Results 1 – 25 of 26) sorted by relevance

12

/external/nist-sip/java/gov/nist/javax/sip/message/
DMessageFactoryImpl.java295 SIPResponse sipResponse = new SIPResponse(); in createResponse()
298 String reasonPhrase = SIPResponse.getReasonPhrase(statusCode); in createResponse()
352 SIPResponse sipResponse = new SIPResponse(); in createResponse()
399 SIPResponse sipResponse = new SIPResponse(); in createResponse()
440 SIPResponse sipResponse = sipRequest.createResponse(statusCode); in createResponse()
473 SIPResponse sipResponse = sipRequest.createResponse(statusCode); in createResponse()
504 SIPResponse sipResponse = sipRequest.createResponse(statusCode); in createResponse()
606 SIPResponse sipResponse = new SIPResponse(); in createResponse()
609 String reason = SIPResponse.getReasonPhrase(statusCode); in createResponse()
662 SIPResponse sipResponse = new SIPResponse(); in createResponse()
[all …]
DSIPResponse.java71 public final class SIPResponse class
379 public SIPResponse() { in SIPResponse() method in SIPResponse
393 sprint(SIPResponse.class.getCanonicalName()); in debugDump()
481 SIPResponse retval = (SIPResponse) super.clone(); in clone()
495 SIPResponse that = (SIPResponse) other; in equals()
511 SIPResponse that = (SIPResponse) matchObj; in match()
DSIPRequest.java660 public SIPResponse createResponse(int statusCode) { in createResponse()
662 String reasonPhrase = SIPResponse.getReasonPhrase(statusCode); in createResponse()
684 public SIPResponse createResponse(int statusCode, String reasonPhrase) { in createResponse()
685 SIPResponse newResponse; in createResponse()
689 newResponse = new SIPResponse(); in createResponse()
698 newResponse.setReasonPhrase(SIPResponse.getReasonPhrase(statusCode)); in createResponse()
/external/nist-sip/java/gov/nist/javax/sip/stack/
DSIPServerTransaction.java40 import gov.nist.javax.sip.message.SIPResponse;
189 private SIPResponse pendingReliableResponse;
404 private void sendResponse(SIPResponse transactionResponse) throws IOException { in sendResponse()
632 boolean isResponse = (messageToTest instanceof SIPResponse); in isMessagePartOfTransaction()
878 SIPResponse transactionResponse; in sendMessage()
883 transactionResponse = (SIPResponse) messageToSend; in sendMessage()
1216 public SIPResponse getLastResponse() { in getLastResponse()
1234 SIPResponse sipResponse = (SIPResponse) response; in sendResponse()
1299 && ((SIPResponse)response).getContentTypeHeader() != null in sendResponse()
1301 && ((SIPResponse)response).getContentTypeHeader().getContentType() in sendResponse()
[all …]
DServerResponseInterface.java60 SIPResponse sipResponse, in processResponse()
73 SIPResponse sipResponse, in processResponse()
DTLSMessageChannel.java471 SIPResponse sipResponse = sipRequest in processMessage()
472 .createResponse(SIPResponse.MESSAGE_TOO_LARGE); in processMessage()
493 SIPResponse response = sipRequest in processMessage()
511 SIPResponse sipResponse = (SIPResponse) sipMessage; in processMessage()
DSIPDialog.java61 import gov.nist.javax.sip.message.SIPResponse;
151 private SIPResponse lastResponse;
424 SIPResponse response = transaction.getLastResponse(); in runTask()
601 public SIPDialog(SIPClientTransaction transaction, SIPResponse sipResponse) { in SIPDialog()
612 public SIPDialog(SipProviderImpl sipProvider, SIPResponse sipResponse) { in SIPDialog()
827 private synchronized void addRoute(SIPResponse sipResponse) { in addRoute()
1461 SIPResponse response = st.getLastResponse(); in storeFirstTransactionInfo()
1871 private Request createRequest(String method, SIPResponse sipResponse) throws SipException { in createRequest()
2335 SIPResponse sipResponse = (SIPResponse) relResponse; in createPrack()
2337 (SIPResponse) relResponse); in createPrack()
[all …]
DSIPClientTransaction.java44 import gov.nist.javax.sip.message.SIPResponse;
499 public synchronized void processResponse(SIPResponse transactionResponse, in processResponse()
606 private void nonInviteClientTransaction(SIPResponse transactionResponse, in nonInviteClientTransaction()
723 private void inviteClientTransaction(SIPResponse transactionResponse, in inviteClientTransaction()
1333 public boolean checkFromTag(SIPResponse sipResponse) { in checkFromTag()
1358 public void processResponse(SIPResponse sipResponse, MessageChannel incomingChannel) { in processResponse()
1398 SIPResponse dialogResponse = defaultDialog.getLastResponse(); in processResponse()
DTCPMessageChannel.java502 SIPResponse sipResponse = sipRequest in processMessage()
503 .createResponse(SIPResponse.MESSAGE_TOO_LARGE); in processMessage()
529 SIPResponse sipResponse = (SIPResponse) sipMessage; in processMessage()
DStackMessageFactory.java68 SIPResponse sipResponse, in newSIPServerResponse()
DMessageChannel.java43 import gov.nist.javax.sip.message.SIPResponse;
362 public void logResponse(SIPResponse sipResponse, long receptionTime, String status) { in logResponse()
DUDPMessageChannel.java47 import gov.nist.javax.sip.message.SIPResponse;
515 SIPResponse sipResponse = (SIPResponse) sipMessage; in processMessage()
DSIPTransaction.java39 import gov.nist.javax.sip.message.SIPResponse;
125 protected SIPResponse lastResponse;
883 public SIPResponse getLastResponse() { in getLastResponse()
DSIPTransactionStack.java49 import gov.nist.javax.sip.message.SIPResponse;
662 public SIPDialog createDialog(SIPClientTransaction transaction, SIPResponse sipResponse) { in createDialog()
685 SIPResponse sipResponse) { in createDialog()
1224 SIPResponse trying = requestReceived.createResponse(Response.TRYING); in newSIPServerRequest()
1247 public ServerResponseInterface newSIPServerResponse(SIPResponse responseReceived, in newSIPServerResponse()
/external/nist-sip/java/gov/nist/javax/sip/
DDialogFilter.java42 import gov.nist.javax.sip.message.SIPResponse;
110 SIPResponse sipResponse = sipRequest.createResponse(Response.REQUEST_PENDING); in sendRequestPendingResponse()
141 SIPResponse sipResponse = sipRequest.createResponse(Response.BAD_REQUEST); in sendBadRequestResponse()
172 SIPResponse sipResponse = sipRequest in sendCallOrTransactionDoesNotExistResponse()
202 SIPResponse sipResponse = sipRequest.createResponse(Response.LOOP_DETECTED); in sendLoopDetectedResponse()
233 SIPResponse sipResponse = sipRequest.createResponse(Response.SERVER_INTERNAL_ERROR); in sendServerInternalErrorResponse()
584 SIPResponse notExist = sipRequest in processRequest()
652 SIPResponse response = sipRequest in processRequest()
747 SIPResponse response = sipRequest in processRequest()
1117 public void processResponse(SIPResponse response, MessageChannel incomingMessageChannel, in processResponse()
[all …]
DUtils.java32 import gov.nist.javax.sip.message.SIPResponse;
182 public boolean responseBelongsToUs(SIPResponse response) { in responseBelongsToUs()
DNistSipMessageFactoryImpl.java101 SIPResponse sipResponse, MessageChannel messageChannel) { in newSIPServerResponse()
DEventScanner.java276 SIPResponse sipResponse = (SIPResponse) responseEvent in deliverEvent()
DSipProviderImpl.java38 import gov.nist.javax.sip.message.SIPResponse;
743 SIPResponse sipResponse = (SIPResponse) response; in sendResponse()
867 SIPResponse response = sipClientTx.getLastResponse(); in getNewDialog()
/external/nist-sip/java/gov/nist/javax/sip/parser/
DStringMsgParser.java43 import gov.nist.javax.sip.message.SIPResponse;
374 message = new SIPResponse(); in processFirstLine()
377 ((SIPResponse) message).setStatusLine(sl); in processFirstLine()
/external/robolectric/v3/runtime/
Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/ ...
Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/ ...
Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/ ...
Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/ ...
Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/ ...

12