Searched refs:Response (Results 1 - 25 of 35) sorted by relevance

12

/external/nist-sip/java/gov/nist/javax/sip/message/
H A DResponseExt.java3 import javax.sip.message.Response;
6 *Extension for the jain-sip Response interface. This is a convenience
9 public interface ResponseExt extends Response, MessageExt {
H A DMessageFactoryImpl.java257 // Standard Response Creation methods
260 * Creates a new Response message of type specified by the statusCode
286 public Response createResponse(int statusCode, CallIdHeader callId,
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,
413 // Response Creation methods based on a Request
416 * Creates a new Response messag
[all...]
/external/nist-sip/java/javax/sip/
H A DServerTransaction.java3 import javax.sip.message.Response;
6 void sendResponse(Response response)
H A DResponseEvent.java4 import javax.sip.message.Response;
8 private Response mResponse;
12 Dialog dialog, Response response) {
23 public Response getResponse() {
H A DDialog.java9 import javax.sip.message.Response;
65 Request createPrack(Response relResponse)
67 Response createReliableProvisionalResponse(int statusCode)
74 void sendReliableProvisionalResponse(Response relResponse)
H A DSipProvider.java6 import javax.sip.message.Response;
49 void sendResponse(Response response) throws SipException;
/external/nist-sip/java/gov/nist/javax/sip/
H A DResponseEventExt.java6 import javax.sip.message.Response;
16 Dialog dialog, Response response) {
H A DDialogFilter.java69 import javax.sip.message.Response;
110 SIPResponse sipResponse = sipRequest.createResponse(Response.REQUEST_PENDING);
141 SIPResponse sipResponse = sipRequest.createResponse(Response.BAD_REQUEST);
173 .createResponse(Response.CALL_OR_TRANSACTION_DOES_NOT_EXIST);
195 * Send back a LOOP Detected Response.
202 SIPResponse sipResponse = sipRequest.createResponse(Response.LOOP_DETECTED);
222 * Send back an error Response.
233 SIPResponse sipResponse = sipRequest.createResponse(Response.SERVER_INTERNAL_ERROR);
585 .createResponse(Response.CALL_OR_TRANSACTION_DOES_NOT_EXIST);
653 .createResponse(Response
[all...]
H A DEventScanner.java301 && (sipResponse.getStatusCode() == Response.CALL_OR_TRANSACTION_DOES_NOT_EXIST || sipResponse
302 .getStatusCode() == Response.REQUEST_TIMEOUT)) {
/external/nist-sip/java/gov/nist/javax/sip/clientauthutils/
H A DAuthenticationHelper.java12 import javax.sip.message.Response;
30 * the specified Response (Challenge) and appends it to the challenged
55 public abstract ClientTransaction handleChallenge(Response challenge,
H A DAuthenticationHelperImpl.java49 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) {
/external/nist-sip/java/javax/sip/message/
H A DMessageFactory.java32 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;
H A DResponse.java5 public interface Response extends Message { interface in inherits:Message
/external/smack/src/org/jivesoftware/smack/sasl/
H A DSASLAnonymous.java58 getSASLAuthentication().send(new Response());
H A DSASLMechanism.java146 responseStanza = new Response();
149 responseStanza = new Response(StringUtils.encodeBase64(response, false));
244 public class Response extends Packet { class in class:SASLMechanism
247 public Response() { method in class:SASLMechanism.Response
251 public Response(String authenticationText) { method in class:SASLMechanism.Response
/external/webkit/Source/WebKit/android/WebCoreSupport/
H A DWebRequest.cpp295 m_loadState = Response;
341 m_loadState = Response;
391 ASSERT(m_loadState < Response, "Redirect after receiving response");
449 m_loadState = Response;
478 ASSERT(m_loadState < Response, "Redirect after receiving response");
509 ASSERT(m_loadState == Response || m_loadState == GotData, "StartReading in state other than RESPONSE and GOTDATA");
539 ASSERT(m_loadState == Response || m_loadState == GotData, "read in state other than RESPONSE and GOTDATA");
558 ASSERT(m_loadState == Response || m_loadState == GotData, "OnReadCompleted in state other than RESPONSE and GOTDATA");
H A DWebRequest.h39 Response, enumerator in enum:android::LoadState
/external/webkit/Source/WebCore/inspector/front-end/
H A DCookieParser.js72 this._addCookie(kv, WebInspector.Cookie.Type.Response);
209 Response: 1
/external/ppp/pppd/plugins/radius/etc/
H A Ddictionary.microsoft9 ATTRIBUTE MS-CHAP-Response 1 string Microsoft
38 ATTRIBUTE MS-CHAP2-Response 25 string Microsoft
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/httplib2/
H A D__init__.py82 __all__ = ['Http', 'Response', 'ProxyInfo', 'HttpLib2Error',
885 response = Response(response)
984 being and instance of the 'Response' class, the second being
1069 response.previous = Response(info)
1086 response = Response(info)
1109 merged_response = Response(info)
1126 response = Response(info)
1139 response = Response( {
1147 response = Response( {
1161 class Response(dic class in inherits:dict
[all...]
/external/chromium/net/http/
H A Dhttp_cache_unittest.cc1010 struct Response { struct in namespace:__anon3079
2279 const Response& net_response_1,
2280 const Response& net_response_2,
2281 const Response& cached_response_2,
2289 static const Response kUnexpectedResponse = {
2382 static const Response kNetResponse1 = {
2390 static const Response kNetResponse2 = {
2408 static const Response kNetResponse1 = {
2417 static const Response kNetResponse2 = {
2436 static const Response kNetResponse
[all...]
/external/nist-sip/java/gov/nist/javax/sip/stack/
H A DSIPTransaction.java57 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.
890 public Response getResponse() {
891 return (Response) this.lastResponse;
H A DTLSMessageChannel.java55 import javax.sip.message.Response;
494 .createResponse(Response.SERVICE_UNAVAILABLE);
H A DSIPServerTransaction.java61 import javax.sip.message.Response;
191 // The pending reliable Response Timer
850 this.sendMessage(transactionRequest.createResponse(Response.OK));
873 * @param messageToSend Response to process and send.
971 * in Section 17). Response retransmissions cease when an ACK request
1231 * @see javax.sip.ServerTransaction#sendResponse(javax.sip.message.Response)
1233 public void sendResponse(Response response) throws SipException {
1271 "Response Expires time exceeds request Expires time : See RFC 3265 3.1.1");
1284 throw new SipException("Response does not belong to this transaction.");
1535 protected void sendReliableProvisionalResponse(Response relRespons
[all...]
/external/libppp/src/
H A Dchap_ms.c180 int PasswordLen, char *Response)
187 ChallengeResponse(Challenge, PasswordHash, Response);
178 GenerateNTResponse(char *AuthenticatorChallenge, char *PeerChallenge, char *UserName, char *Password, int PasswordLen, char *Response) argument

Completed in 660 milliseconds

12