HomeSort by relevance Sort by last modified time
    Searched refs:Response (Results 1 - 25 of 32) sorted by null

1 2

  /external/nist-sip/java/gov/nist/javax/sip/message/
ResponseExt.java 3 import javax.sip.message.Response;
6 *Extension for the jain-sip Response interface. This is a convenience
9 public interface ResponseExt extends Response, MessageExt {
MessageFactoryImpl.java 257 // Standard Response Creation methods
260 * Creates a new Response message of type specified by the statusCode
286 public Response createResponse(int statusCode, CallIdHeader callId,
293 throw new NullPointerException(" unable to create the response");
317 * Creates a new Response message of type specified by the statusCode
343 public Response createResponse(int statusCode, CallIdHeader callId,
369 * Creates a new Response message of type specified by the statusCode
371 * Response does not contain a body.
390 public Response createResponse(int statusCode, CallIdHeader callId,
397 + ", unable to create the response", 0)
    [all...]
  /external/nist-sip/java/javax/sip/
ServerTransaction.java 3 import javax.sip.message.Response;
6 void sendResponse(Response response)
ResponseEvent.java 4 import javax.sip.message.Response;
8 private Response mResponse;
12 Dialog dialog, Response response) {
15 mResponse = response;
23 public Response getResponse() {
Dialog.java 9 import javax.sip.message.Response;
65 Request createPrack(Response relResponse)
67 Response createReliableProvisionalResponse(int statusCode)
74 void sendReliableProvisionalResponse(Response relResponse)
SipProvider.java 6 import javax.sip.message.Response;
49 void sendResponse(Response response) throws SipException;
  /external/nist-sip/java/gov/nist/javax/sip/
ResponseEventExt.java 6 import javax.sip.message.Response;
16 Dialog dialog, Response response) {
17 super(source,clientTransaction,dialog,response);
22 * Return true if this is a forked response.
24 * @return true if the response event is for a forked response.
31 * Set the original transaction for a forked response.
33 * @param originalTransaction - the original transaction for which this response event is a fork.
40 * Get the original transaction for which this is a forked response
    [all...]
DialogFilter.java 69 import javax.sip.message.Response;
103 * Send back a Request Pending response.
110 SIPResponse sipResponse = sipRequest.createResponse(Response.REQUEST_PENDING);
125 sipStack.getStackLogger().logError("Problem sending error response", ex);
132 * Send a BAD REQUEST response.
141 SIPResponse sipResponse = sipRequest.createResponse(Response.BAD_REQUEST);
155 sipStack.getStackLogger().logError("Problem sending error response", ex);
163 * Send a CALL OR TRANSACTION DOES NOT EXIST response.
173 .createResponse(Response.CALL_OR_TRANSACTION_DOES_NOT_EXIST);
186 sipStack.getStackLogger().logError("Problem sending error response", ex)
652 SIPResponse response = sipRequest local
747 SIPResponse response = sipRequest local
    [all...]
EventScanner.java 295 * If the response for a request within a dialog is a 481
301 && (sipResponse.getStatusCode() == Response.CALL_OR_TRANSACTION_DOES_NOT_EXIST || sipResponse
302 .getStatusCode() == Response.REQUEST_TIMEOUT)) {
305 "Removing dialog on 408 or 481 response");
311 * The Client tx disappears after the first 2xx response
316 * INVITE request due to a forking proxy. Each response is
SipProviderImpl.java 78 import javax.sip.message.Response;
506 "Error sending provisional response");
554 "Could not send back provisional response!");
738 * @see javax.sip.SipProvider#sendResponse(javax.sip.message.Response)
740 public void sendResponse(Response response) throws SipException {
743 SIPResponse sipResponse = (SIPResponse) response;
746 throw new SipException("No via header in response!");
747 SIPServerTransaction st = (SIPServerTransaction) sipStack.findTransaction((SIPMessage)response, true);
749 throw new SipException("Transaction exists -- cannot send response statelessly")
841 Response response = st.getLastResponse(); local
867 SIPResponse response = sipClientTx.getLastResponse(); local
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/clientauthutils/
AuthenticationHelper.java 12 import javax.sip.message.Response;
30 * the specified Response (Challenge) and appends it to the challenged
36 * the 401/407 challenge response
55 public abstract ClientTransaction handleChallenge(Response challenge,
AuthenticationHelperImpl.java 49 import javax.sip.message.Response;
122 * @see gov.nist.javax.sip.clientauthutils.AuthenticationHelper#handleChallenge(javax.sip.message.Response,
125 public ClientTransaction handleChallenge(Response challenge,
177 if (challenge.getStatusCode() == Response.UNAUTHORIZED) {
179 } else if (challenge.getStatusCode() == Response.PROXY_AUTHENTICATION_REQUIRED) {
279 * Generates an authorisation header in response to wwwAuthHeader.
287 * @return an authorisation header in response to authHeader.
293 String response = null; local
302 response = MessageDigestAlgorithm.calculateResponse(authHeader.getAlgorithm(),
321 authorization.setResponse(response);
360 String response = null; local
    [all...]
  /external/nist-sip/java/javax/sip/message/
MessageFactory.java 32 Response createResponse(int statusCode, CallIdHeader callId,
37 Response createResponse(int statusCode, CallIdHeader callId,
42 Response createResponse(int statusCode, CallIdHeader callId,
46 Response createResponse(int statusCode, Request request,
50 Response createResponse(int statusCode, Request request,
54 Response createResponse(int statusCode, Request request)
57 Response createResponse(String response) throws ParseException;
Response.java 5 public interface Response extends Message {
  /frameworks/base/voip/java/com/android/server/sip/
SipSessionGroup.java 75 import javax.sip.message.Response;
376 mSipHelper.sendResponse((RequestEvent) evt, Response.OK);
579 if (DEBUG) Log.w(TAG, "no response from ping");
666 mSipHelper.sendResponse((RequestEvent) evt, Response.OK);
671 Response.CALL_OR_TRANSACTION_DOES_NOT_EXIST);
684 mSipHelper.sendResponse((RequestEvent) evt, Response.OK);
772 private int getExpiryTime(Response response) {
775 response.getHeader(ExpiresHeader.NAME);
778 response.getHeader(MinExpiresHeader.NAME)
831 Response response = event.getResponse(); local
857 Response response = event.getResponse(); local
    [all...]
SipHelper.java 63 import javax.sip.message.Response;
241 if (DEBUG) Log.d(TAG, "send request with challenge response: "
316 Response response = mMessageFactory.createResponse(Response.RINGING, local
319 ToHeader toHeader = (ToHeader) response.getHeader(ToHeader.NAME);
321 response.addHeader(toHeader);
322 if (DEBUG) Log.d(TAG, "send RINGING: " + response);
323 transaction.sendResponse(response);
339 Response response = mMessageFactory.createResponse(Response.OK local
365 Response response = mMessageFactory.createResponse( local
386 Response response = event.getResponse(); local
410 Response response = mMessageFactory.createResponse( local
422 Response response = mMessageFactory.createResponse( local
    [all...]
  /frameworks/base/include/utils/
Looper.h 199 struct Response {
257 Vector<Response> mResponses;
  /external/ppp/pppd/plugins/radius/etc/
dictionary.microsoft 9 ATTRIBUTE MS-CHAP-Response 1 string Microsoft
38 ATTRIBUTE MS-CHAP2-Response 25 string Microsoft
  /external/chromium/net/http/
http_cache_unittest.cc 587 const net::HttpResponseInfo* response = trans->GetResponseInfo();
588 ASSERT_TRUE(response);
591 *response_info = *response;
618 net::HttpResponseInfo* response) {
620 cache, trans_info, MockHttpRequest(trans_info), response);
626 net::HttpResponseInfo response;
627 RunTransactionTestWithResponseInfo(cache, trans_info, &response);
628 response.headers->GetNormalizedHeaders(response_headers);
692 // Returns 200 instead of 206 (a malformed response overall).
776 // We return a range, but with a response code of 200
    [all...]
  /frameworks/base/libs/utils/
Looper.cpp 163 const Response& response = mResponses.itemAt(mResponseIndex++); local
164 if (! response.request.callback) {
168 response.request.ident, response.request.fd,
169 response.events, response.request.data);
171 if (outFd != NULL) *outFd = response.request.fd;
172 if (outEvents != NULL) *outEvents = response.events;
173 if (outData != NULL) *outData = response.request.data
339 const Response& response = mResponses.itemAt(i); local
441 Response response; local
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/stack/
SIPTransaction.java 57 import javax.sip.message.Response;
840 * either by a 1xx Provisional Response for an early dialog or a 200OK
841 * Response for a committed dialog.
877 * Get the last response. This is used internally by the implementation.
880 * @return the last response received (for client transactions) or sent (for
888 * Get the JAIN interface response
890 public Response getResponse() {
891 return (Response) this.lastResponse;
    [all...]
TLSMessageChannel.java 55 import javax.sip.message.Response;
157 // Can drop this after response is sent potentially.
353 // JvB: send a 400 response for requests (except ACK)
407 // For response, this has already been recorded in the outgoing
493 SIPResponse response = sipRequest local
494 .createResponse(Response.SERVICE_UNAVAILABLE);
498 // Be a good citizen and send a decent response code back.
501 response.setHeader(retryAfter);
502 this.sendMessage(response);
517 .logError("Dropping Badly formatted response message >>>
    [all...]
SIPServerTransaction.java 61 import javax.sip.message.Response;
81 * send response+-----------+
83 * | | Proceeding| |send response
90 * send response | |send response |
94 * send response+-----------+ send response |
130 * | |send response
132 * |send response |
135 * send response+-----------+send response
    [all...]
SIPDialog.java 105 import javax.sip.message.Response;
120 * INVITE transactions, a Dialog is created when a success message is received (i.e. a response
150 // Last response (JvB: either sent or received).
398 // resend last response.
405 * Issue 106. Section 13.3.1.4 RFC 3261 The 2xx response is passed to the transport
407 * until it reaches T2 seconds If the server retransmits the 2xx response for 64*T1
424 SIPResponse response = transaction.getLastResponse(); local
425 if (response.getStatusCode() == 200) {
428 // resend the last response.
430 transaction.sendMessage(response);
1461 SIPResponse response = st.getLastResponse(); local
2899 SIPResponse response = request.createResponse(statusCode); local
    [all...]
  /frameworks/base/core/java/android/accounts/
AccountManager.java 414 throw new AuthenticatorException("no result in response");
458 throw new AuthenticatorException("no result in response");
526 throw new AuthenticatorException("no result in response");
    [all...]

Completed in 336 milliseconds

1 2