HomeSort by relevance Sort by last modified time
    Searched full:response (Results 76 - 100 of 3607) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/qemu/android/protocol/
ui-common.h 39 /* UI control command response header.
40 * If UI control command assumes a response from the remote end, the response
41 * must start with this header, immediately followed by the response data buffer.
47 /* Byte size of the buffer containing response data immediately following
48 * this header. If there are no response data for the command, this field
  /external/apache-http/src/org/apache/http/client/
HttpClient.java 88 * @return the response to the request. This is always a final response,
89 * never an intermediate response with an 1xx status code.
109 * @return the response to the request. This is always a final response,
110 * never an intermediate response with an 1xx status code.
131 * @return the response to the request. This is always a final response,
132 * never an intermediate response with an 1xx status code.
154 * @return the response to the request. This is always a final response
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/api/tabs/pin/
inject.js 9 chrome.extension.sendRequest({toggle_pin: true}, function(response) {
10 // Do stuff on successful response
  /external/oauth/core/src/main/java/net/oauth/
OAuthProblemException.java 28 * response that conforms to the OAuth <a
59 Object response = getParameters().get(HttpMessage.RESPONSE);
60 if (response != null) {
61 msg = response.toString();
74 response = getHttpStatusCode();
75 if (response != null) {
76 return HttpResponseMessage.STATUS_CODE + " " + response;
  /external/webkit/Source/WebCore/loader/appcache/
ApplicationCacheResource.cpp 34 ApplicationCacheResource::ApplicationCacheResource(const KURL& url, const ResourceResponse& response, unsigned type, PassRefPtr<SharedBuffer> data, const String& path)
35 : SubstituteResource(url, response, data)
57 HTTPHeaderMap::const_iterator end = response().httpHeaderFields().end();
58 for (HTTPHeaderMap::const_iterator it = response().httpHeaderFields().begin(); it != end; ++it)
62 m_estimatedSizeInStorage += sizeof(int); // response().m_httpStatusCode
63 m_estimatedSizeInStorage += response().url().string().length() * sizeof(UChar);
65 m_estimatedSizeInStorage += response().mimeType().length() * sizeof(UChar);
66 m_estimatedSizeInStorage += response().textEncodingName().length() * sizeof(UChar);
  /external/webkit/Source/WebKit/mac/WebView/
WebNavigationData.mm 34 NSURLResponse *response;
48 [response release];
58 - (id)initWithURLString:(NSString *)url title:(NSString *)title originalRequest:(NSURLRequest *)request response:(NSURLResponse *)response hasSubstituteData:(BOOL)hasSubstituteData clientRedirectSource:(NSString *)redirectSource
65 _private->response = [response retain];
87 - (NSURLResponse *)response
89 return _private->response;
  /external/wpa_supplicant_8/src/eap_common/
chap.c 16 size_t challenge_len, u8 *response)
27 return md5_vector(3, addr, len, response);
  /frameworks/volley/tests/src/com/android/volley/mock/
MockRequest.java 21 import com.android.volley.Response;
22 import com.android.volley.Response.ErrorListener;
64 protected void deliverResponse(byte[] response) {
96 protected Response<byte[]> parseNetworkResponse(NetworkResponse response) {
98 return Response.success(response.data, CacheTestUtils.makeRandomCacheEntry(response.data));
  /external/chromium/chrome/browser/debugger/
extension_ports_remote_service.cc 42 // Response:
55 // Response:
60 // a response from the extension.
160 DictionaryValue response; local
163 response.SetString(kCommandKey, command);
169 response.SetInteger(kResultKey, RESULT_NO_SERVICE);
170 SendResponse(response, message.tool(), message.destination());
180 response.SetInteger(kResultKey, RESULT_UNKNOWN_COMMAND);
182 ConnectCommand(content, &response);
185 response.SetInteger(kResultKey, RESULT_UNKNOWN_COMMAND)
    [all...]
devtools_remote_service.cc 62 static const std::string kOkResponse = "ok"; // "Ping" response
65 DictionaryValue response; local
68 response.SetString(kCommandKey, command);
71 response.SetInteger(kResultKey, Result::kOk);
72 response.SetString(kDataKey, kOkResponse);
74 response.SetInteger(kResultKey, Result::kOk);
75 response.SetString(kDataKey, kVersion);
94 response.SetInteger(kResultKey, Result::kOk);
95 response.Set(kDataKey, data);
99 response.SetInteger(kResultKey, Result::kUnknownCommand)
    [all...]
  /external/oauth/core/src/main/java/net/oauth/client/
URLConnectionResponse.java 31 * The response part of a URLConnection, encapsulated as an OAuthMessage.
39 * Construct an OAuthMessage from the HTTP response, including parameters
41 * come first, followed by the ones from the response body.
109 StringBuilder response = new StringBuilder(); local
119 response.append(firstLine).append(EOL);
122 response.append(name).append(": ");
125 response.append(value).append(EOL);
127 response.append(EOL);
129 response.append(new String(((ExcerptInputStream) body)
132 into.put(HttpMessage.RESPONSE, response.toString())
    [all...]
  /external/oauth/core/src/main/java/net/oauth/client/httpclient4/
HttpMethodResponse.java 47 * Construct an OAuthMessage from the HTTP response, including parameters
49 * come first, followed by the ones from the response body.
51 public HttpMethodResponse(HttpRequestBase request, HttpResponse response, byte[] requestBody,
56 this.httpResponse = response;
121 StringBuilder response = new StringBuilder(); local
123 response.append(value).append(EOL);
127 response.append(name).append(": ").append(value).append(EOL);
129 response.append(EOL);
131 response.append(new String(((ExcerptInputStream) body).getExcerpt(),
134 into.put(HttpMessage.RESPONSE, response.toString())
    [all...]
  /external/v8/test/mjsunit/
debug-scripts-request.js 51 var response = safeEval(json_response);
53 assertTrue(response.success, json_response);
55 assertFalse(response.success, json_response);
78 var response = safeEval(dcp.processDebugJSONRequest(request));
79 assertTrue(response.success);
82 assertEquals(2, response.body.length);
83 var script = response.body[0];
86 var response = safeEval(dcp.processDebugJSONRequest(request));
87 assertTrue(response.success);
88 assertEquals(1, response.body.length)
    [all...]
debug-handle.js 61 var response = safeEval(dcp.processDebugJSONRequest(request));
62 assertTrue(response.success, request + ' -> ' + response.message);
64 return response.body.handle;
68 // Send a lookup request and return the evaluated JSON response.
84 var response = safeEval(dcp.processDebugJSONRequest(request));
86 assertTrue(response.success, request + ' -> ' + response.message);
88 assertFalse(response.success, request + ' -> ' + response.message)
    [all...]
  /external/chromium/chrome/browser/sync/engine/
syncer_proto_util_unittest.cc 149 ClientToServerResponse response; local
150 EXPECT_FALSE(SyncerProtoUtil::VerifyResponseBirthday(lookup, &response));
153 response.set_store_birthday("flan");
154 EXPECT_TRUE(SyncerProtoUtil::VerifyResponseBirthday(lookup, &response));
158 response.clear_store_birthday();
159 EXPECT_TRUE(SyncerProtoUtil::VerifyResponseBirthday(lookup, &response));
163 response.set_store_birthday("meat");
164 EXPECT_FALSE(SyncerProtoUtil::VerifyResponseBirthday(lookup, &response));
166 response.set_error_code(ClientToServerResponse::CLEAR_PENDING);
167 EXPECT_FALSE(SyncerProtoUtil::VerifyResponseBirthday(lookup, &response));
198 ClientToServerResponse response; local
225 ClientToServerResponse response; local
    [all...]
  /external/chromium/net/http/
http_vary_data_unittest.cc 18 scoped_refptr<net::HttpResponseHeaders> response; member in struct:__anon5087::TestTransaction
24 response = new net::HttpResponseHeaders(temp);
48 EXPECT_FALSE(v.Init(t.request, *t.response));
59 EXPECT_TRUE(v.Init(t1.request, *t1.response));
65 EXPECT_FALSE(v.Init(t2.request, *t2.response));
77 EXPECT_TRUE(v.Init(a.request, *a.response));
79 EXPECT_FALSE(v.MatchesRequest(b.request, *b.response));
90 EXPECT_TRUE(v.Init(a.request, *a.response));
92 EXPECT_FALSE(v.MatchesRequest(b.request, *b.response));
103 EXPECT_TRUE(v.Init(a.request, *a.response));
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
NetworkManager.js 86 _updateResourceWithResponse: function(resource, response)
88 if (!response)
91 resource.mimeType = response.mimeType;
92 resource.statusCode = response.status;
93 resource.statusText = response.statusText;
94 resource.responseHeaders = response.headers;
95 if (response.headersText)
96 resource.responseHeadersText = response.headersText;
97 if (response.requestHeaders)
98 resource.requestHeaders = response.requestHeaders
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
SimulatedCommands.java 755 * cause code returned as Integer in Message.obj.response
792 * response.obj is an AsyncResult
793 * response.obj.result is an int[2]
794 * response.obj.result[0] is received signal strength (0-31, 99)
795 * response.obj.result[1] is bit error rate (0-7, 99)
823 * ((AsyncResult)response.obj).result is an int[] with every
842 public void sendTerminalResponse(String contents, Message response) {
843 resultSuccess(response, null);
850 public void sendEnvelope(String contents, Message response) {
851 resultSuccess(response, null)
    [all...]
  /frameworks/opt/net/voip/src/java/com/android/server/sip/
SipSessionGroup.java 79 import javax.sip.message.Response;
122 // external address observed from any response
397 Response response = evt.getResponse(); local
398 ViaHeader viaHeader = (ViaHeader)(response.getHeader(
450 return Response.CALL_OR_TRANSACTION_DOES_NOT_EXIST;
454 if (dialog == null) return Response.DECLINE;
459 return Response.CALL_OR_TRANSACTION_DOES_NOT_EXIST;
466 return Response.CALL_OR_TRANSACTION_DOES_NOT_EXIST;
468 return Response.OK
477 int response = processInviteWithReplaces(event, replaces); local
951 Response response = event.getResponse(); local
977 Response response = event.getResponse(); local
    [all...]
  /external/chromium/net/ftp/
ftp_network_transaction.cc 71 // Returns the error class for given response code. Caller should ensure
117 // The text returned in response to the EPSV command MUST be:
120 bool ExtractPortFromEPSVResponse(const net::FtpCtrlResponse& response,
122 if (response.lines.size() != 1)
124 const char* ptr = response.lines[0].c_str();
150 bool ExtractPortFromPASVResponse(const net::FtpCtrlResponse& response,
152 if (response.lines.size() != 1)
154 const char* ptr = response.lines[0].c_str();
160 ptr = response.lines[0].c_str(); // Try without bracket.
170 // Ignore the IP address supplied in the response. We are always goin
340 FtpCtrlResponse response = ctrl_response_buffer_->PopResponse(); local
    [all...]
  /external/apache-http/src/org/apache/http/
HttpResponse.java 39 * An HTTP response.
50 * Obtains the status line of this response.
60 * Sets the status line of this response.
62 * @param statusline the status line of this response
67 * Sets the status line of this response.
77 * Sets the status line of this response with a reason phrase.
86 * Updates the status line of this response with a new status code.
107 * Updates the status line of this response with a new reason phrase.
124 * Obtains the message entity of this response, if any.
127 * @return the response entity, o
    [all...]
  /external/chromium/webkit/glue/
alt_error_page_resource_fetcher.cc 42 const WebURLResponse& response,
44 // A null response indicates a network error.
45 if (!response.isNull() && response.httpStatusCode() == 200) {
  /external/nist-sip/java/javax/sip/
Dialog.java 9 import javax.sip.message.Response;
65 Request createPrack(Response relResponse)
67 Response createReliableProvisionalResponse(int statusCode)
74 void sendReliableProvisionalResponse(Response relResponse)
  /external/nist-sip/java/javax/sip/header/
AuthenticationInfoHeader.java 21 void setResponse(String response) throws ParseException;
  /external/webkit/LayoutTests/http/tests/appcache/resources/
subframe-2.html 6 alert("FAIL, unexpected response: " + req.responseText);

Completed in 371 milliseconds

1 2 34 5 6 7 8 91011>>