/external/nist-sip/java/gov/nist/javax/sip/ |
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/chromium/net/http/ |
http_cache_unittest.cc | 571 // Helper function for reading response info from the disk cache. 588 // Helper function for writing response info into the disk cache. 737 const net::HttpResponseInfo* response = trans->GetResponseInfo(); local 738 ASSERT_TRUE(response); 741 *response_info = *response; 768 net::HttpResponseInfo* response) { 770 cache, trans_info, MockHttpRequest(trans_info), response); 776 net::HttpResponseInfo response; local 777 RunTransactionTestWithResponseInfo(cache, trans_info, &response); 778 response.headers->GetNormalizedHeaders(response_headers) 993 net::HttpResponseInfo response; local 3410 net::HttpResponseInfo response; local 3454 net::HttpResponseInfo response; local 3496 net::HttpResponseInfo response; local 4094 net::HttpResponseInfo response; local 4298 net::HttpResponseInfo response; local 4345 net::HttpResponseInfo response; local 4456 net::HttpResponseInfo response; local 4508 net::HttpResponseInfo response; local 4859 net::HttpResponseInfo response; local 4884 net::HttpResponseInfo response; local 4921 net::HttpResponseInfo response; local 4953 net::HttpResponseInfo response; local [all...] |
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
InspectorResourceAgent.cpp | 103 virtual void didReceiveResponse(unsigned long identifier, const ResourceResponse& response) 105 WTF::TextEncoding textEncoding(response.textEncodingName()); 112 m_statusCode = response.httpStatusCode(); 113 m_responseHeaders = response.httpHeaderFields(); 232 static PassRefPtr<TypeBuilder::Network::Response> buildObjectForResourceResponse(const ResourceResponse& response, DocumentLoader* loader) 234 if (response.isNull()) 240 if (response.resourceLoadInfo() && response.resourceLoadInfo()->httpStatusCode) { 241 status = response.resourceLoadInfo()->httpStatusCode [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...] |
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/httplib2/ |
__init__.py | 82 __all__ = ['Http', 'Response', 'ProxyInfo', 'HttpLib2Error', 114 def __init__(self, desc, response, content): 115 self.response = response 153 def _get_end2end_headers(response): 155 hopbyhop.extend([x.strip() for x in response.get('connection', '').split(',')]) 156 return [header for header in response.keys() if header not in hopbyhop] 343 def _decompressContent(response, new_content): 346 encoding = response.get('content-encoding', None) 352 response['content-length'] = str(len(content) 436 def response(self, response, content): member in class:Authentication 499 def response(self, response, content): member in class:DigestAuthentication 570 def response(self, response, content): member in class:HmacDigestAuthentication [all...] |
/external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-python/httplib2/ |
__init__.py | 82 __all__ = ['Http', 'Response', 'ProxyInfo', 'HttpLib2Error', 114 def __init__(self, desc, response, content): 115 self.response = response 153 def _get_end2end_headers(response): 155 hopbyhop.extend([x.strip() for x in response.get('connection', '').split(',')]) 156 return [header for header in response.keys() if header not in hopbyhop] 343 def _decompressContent(response, new_content): 346 encoding = response.get('content-encoding', None) 352 response['content-length'] = str(len(content) 436 def response(self, response, content): member in class:Authentication 499 def response(self, response, content): member in class:DigestAuthentication 570 def response(self, response, content): member in class:HmacDigestAuthentication [all...] |
/external/libppp/src/ |
chap_ms.c | 76 u_char UseNT; /* If 1, ignore the LANMan response field */ 121 ChallengeResponse(u_char *challenge, u_char *pwHash, u_char *response) 128 DesEncrypt(challenge, ZPasswordHash + 0, response + 0); 129 DesEncrypt(challenge, ZPasswordHash + 7, response + 8); 130 DesEncrypt(challenge, ZPasswordHash + 14, response + 16); 180 int PasswordLen, char *Response) 187 ChallengeResponse(Challenge, PasswordHash, Response); 227 * "Magic" constants used in response generation 387 since passwordHash is in a 24-byte buffer, response is written in there */ 391 u_char response[24] local [all...] |
/external/chromium_org/chromeos/dbus/ |
bluetooth_adapter_client.cc | 207 // either by result of a signal or response to a GetAll() or Get() 215 // Called when a response for successful method call is received. 217 dbus::Response* response) { 218 DCHECK(response); 222 // Called when a response for a failed method call is received. 224 dbus::ErrorResponse* response) { 225 // Error response has optional error message argument. 228 if (response) { 229 dbus::MessageReader reader(response); [all...] |
bluetooth_profile_manager_client.cc | 195 // Called when a response for successful method call is received. 197 dbus::Response* response) { 198 DCHECK(response); 202 // Called when a response for a failed method call is received. 204 dbus::ErrorResponse* response) { 205 // Error response has optional error message argument. 208 if (response) { 209 dbus::MessageReader reader(response); 210 error_name = response->GetErrorName() [all...] |
bluetooth_device_client.cc | 298 // either by result of a signal or response to a GetAll() or Get() 306 // Called when a response for successful method call is received. 308 dbus::Response* response) { 309 DCHECK(response); 313 // Called when a response for a failed method call is received. 315 dbus::ErrorResponse* response) { 316 // Error response has optional error message argument. 319 if (response) { 320 dbus::MessageReader reader(response); [all...] |
nfc_client_helpers.cc | 16 void OnSuccess(const base::Closure& callback, dbus::Response* response) { 17 DCHECK(response); 22 dbus::ErrorResponse* response) { 23 // Error response has optional error message argument. 26 if (response) { 27 dbus::MessageReader reader(response); 28 error_name = response->GetErrorName();
|
power_manager_client.cc | 315 // Makes a method call to power manager with no arguments and no response. 387 void OnGetPowerSupplyPropertiesMethod(dbus::Response* response) { 388 if (!response) { 394 dbus::MessageReader reader(response); 401 << " response"; 407 dbus::Response* response) { 408 if (!response) { 413 dbus::MessageReader reader(response); [all...] |
/external/okhttp/src/main/java/com/squareup/okhttp/ |
OkHttpClient.java | 169 * Sets the response cache to be used to read and write cached responses. 172 * response cache will be used. 209 * Sets the verifier used to confirm that response certificates apply to 324 public void enqueue(Request request, Response.Receiver responseReceiver) {
|
/frameworks/base/core/java/android/accounts/ |
AccountManager.java | 496 throw new AuthenticatorException("no result in response"); 537 throw new AuthenticatorException("no result in response"); 581 throw new AuthenticatorException("no result in response"); 649 throw new AuthenticatorException("no result in response"); [all...] |
/external/chromium_org/net/http/ |
http_cache_unittest.cc | 65 // Tests the load timing values of a request that receives a cached response. 211 const net::HttpResponseInfo* response = trans->GetResponseInfo(); local 212 ASSERT_TRUE(response); 215 *response_info = *response; 276 net::HttpResponseInfo* response) { 278 cache, trans_info, MockHttpRequest(trans_info), response); 284 net::HttpResponseInfo* response, 288 cache, trans_info, MockHttpRequest(trans_info), response, 296 net::HttpResponseInfo response; local 297 RunTransactionTestWithResponseInfo(cache, trans_info, &response); 307 net::HttpResponseInfo response; local 537 net::HttpResponseInfo response; local 4062 net::HttpResponseInfo response; local 4110 net::HttpResponseInfo response; local 4152 net::HttpResponseInfo response; local 4755 net::HttpResponseInfo response; local 4980 net::HttpResponseInfo response; local 5020 net::HttpResponseInfo response; local 5067 net::HttpResponseInfo response; local 5288 net::HttpResponseInfo response; local 5342 net::HttpResponseInfo response; local 5763 net::HttpResponseInfo response; local 5788 net::HttpResponseInfo response; local 5829 net::HttpResponseInfo response; local 5864 net::HttpResponseInfo response; local 6149 net::HttpResponseInfo response; local 6203 net::HttpResponseInfo response; local 6249 net::HttpResponseInfo response; local [all...] |
/external/chromium_org/chrome/browser/resources/image_loader/ |
image_loader_client.js | 84 * @param {function(Object)=} opt_callback Response handling callback. 85 * The response is passed as a hash array. 89 opt_callback = opt_callback || function(response) {}; 97 * callback to pass the response back to the requester. 99 * @param {Object} message Response message as a hash array. 123 * @param {function} callback Callback used to return response.
|
/external/chromium_org/content/browser/devtools/ |
render_view_devtools_agent_host.cc | 147 scoped_refptr<DevToolsProtocol::Response> overridden_response =
|
/external/chromium_org/dbus/ |
object_manager.cc | 144 void ObjectManager::OnGetManagedObjects(Response* response) { 145 if (response != NULL) { 146 MessageReader reader(response);
|
object_manager_unittest.cc | 110 void MethodCallback(Response* response) {
|
/external/chromium_org/net/tools/quic/ |
quic_spdy_server_stream_test.cc | 118 // Check if response already exists and matches. 119 const QuicInMemoryCache::Response* cached_response =
|
/external/chromium_org/webkit/browser/appcache/ |
appcache_url_request_job.cc | 146 // provides a response. The sequence goes like this... 151 // 3. Then we ask then we ask the handler to compute a response. 152 // 4. Finally we deilver that response to the caller. 169 // If the handler is spun up, ask it to compute a response. 227 const AppCacheExecutableHandler::Response& response) { 229 if (response.use_network) { 236 if (!response.cached_resource_url.is_empty()) { 237 AppCacheEntry* entry_ptr = cache_->GetEntry(response.cached_resource_url); 245 if (!response.redirect_url.is_empty()) [all...] |
/external/chromium_org/net/websockets/ |
websocket_channel_test.cc | 412 // Prepares a fake response. Fake responses will be returned from ReadFrames() 417 // |async| is SYNC, the response will be returned synchronously. |error| is 426 responses_.push_back(new Response(async, error, CreateFrameVector(frames))); 434 responses_.push_back(new Response(async, error, frames.Pass())); 437 // Prepares a fake error response (ie. there is no data). 440 new Response(async, error, ScopedVector<WebSocketFrame>())); 472 struct Response { 473 Response(IsSync async, int error, ScopedVector<WebSocketFrame> frames) 482 DISALLOW_COPY_AND_ASSIGN(Response); 484 ScopedVector<Response> responses_ [all...] |