/external/nist-sip/java/gov/nist/javax/sip/message/ |
D | MessageFactoryImpl.java | 295 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 …]
|
D | SIPResponse.java | 71 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()
|
D | SIPRequest.java | 660 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/ |
D | SIPServerTransaction.java | 40 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 …]
|
D | ServerResponseInterface.java | 60 SIPResponse sipResponse, in processResponse() 73 SIPResponse sipResponse, in processResponse()
|
D | TLSMessageChannel.java | 471 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()
|
D | SIPDialog.java | 61 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 …]
|
D | SIPClientTransaction.java | 44 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()
|
D | TCPMessageChannel.java | 502 SIPResponse sipResponse = sipRequest in processMessage() 503 .createResponse(SIPResponse.MESSAGE_TOO_LARGE); in processMessage() 529 SIPResponse sipResponse = (SIPResponse) sipMessage; in processMessage()
|
D | StackMessageFactory.java | 68 SIPResponse sipResponse, in newSIPServerResponse()
|
D | MessageChannel.java | 43 import gov.nist.javax.sip.message.SIPResponse; 362 public void logResponse(SIPResponse sipResponse, long receptionTime, String status) { in logResponse()
|
D | UDPMessageChannel.java | 47 import gov.nist.javax.sip.message.SIPResponse; 515 SIPResponse sipResponse = (SIPResponse) sipMessage; in processMessage()
|
D | SIPTransaction.java | 39 import gov.nist.javax.sip.message.SIPResponse; 125 protected SIPResponse lastResponse; 883 public SIPResponse getLastResponse() { in getLastResponse()
|
D | SIPTransactionStack.java | 49 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/ |
D | DialogFilter.java | 42 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 …]
|
D | Utils.java | 32 import gov.nist.javax.sip.message.SIPResponse; 182 public boolean responseBelongsToUs(SIPResponse response) { in responseBelongsToUs()
|
D | NistSipMessageFactoryImpl.java | 101 SIPResponse sipResponse, MessageChannel messageChannel) { in newSIPServerResponse()
|
D | EventScanner.java | 276 SIPResponse sipResponse = (SIPResponse) responseEvent in deliverEvent()
|
D | SipProviderImpl.java | 38 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/ |
D | StringMsgParser.java | 43 import gov.nist.javax.sip.message.SIPResponse; 374 message = new SIPResponse(); in processFirstLine() 377 ((SIPResponse) message).setStatusLine(sl); in processFirstLine()
|
/external/robolectric/v3/runtime/ |
D | android-all-4.1.2_r1-robolectric-0.jar | META-INF/
META-INF/MANIFEST.MF
android/
android/accessibilityservice/
android/ ... |
D | android-all-4.2.2_r1.2-robolectric-0.jar | META-INF/
META-INF/MANIFEST.MF
android/
android/accessibilityservice/
android/ ... |
D | android-all-4.3_r2-robolectric-0.jar | META-INF/
META-INF/MANIFEST.MF
android/
android/accessibilityservice/
android/ ... |
D | android-all-5.1.1_r9-robolectric-1.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/google/
com/ ... |
D | android-all-5.0.0_r2-robolectric-1.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/google/
com/ ... |