HomeSort by relevance Sort by last modified time
    Searched refs:Response (Results 251 - 275 of 436) sorted by null

<<1112131415161718

  /external/tensorflow/tensorflow/core/distributed_runtime/rpc/eager/
grpc_eager_service_impl.cc 40 method##Response>:: \
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
Http1xStream.java 21 import com.squareup.okhttp.Response;
50 * <li>{@link #readResponse Read response headers}.
51 * <li>Open a source to read the response body. Either {@link
57 * the request body. Exchanges that do not have a response body can call {@link
126 @Override public Response.Builder readResponseHeaders() throws IOException {
130 @Override public ResponseBody openResponseBody(Response response) throws IOException {
131 Source source = getTransferStream(response);
132 return new RealResponseBody(response.headers(), Okio.buffer(source));
135 private Source getTransferStream(Response response) throws IOException
    [all...]
Http2xStream.java 22 import com.squareup.okhttp.Response;
148 @Override public Response.Builder readResponseHeaders() throws IOException {
217 /** Returns headers for a name value block containing a SPDY response. */
218 public static Response.Builder readSpdy3HeadersList(List<Header> headerBlock) throws IOException {
245 return new Response.Builder()
252 /** Returns headers for a name value block containing an HTTP/2 response. */
253 public static Response.Builder readHttp2HeadersList(List<Header> headerBlock) throws IOException {
270 return new Response.Builder()
277 @Override public ResponseBody openResponseBody(Response response) throws IOException
    [all...]
  /external/okhttp/repackaged/okhttp/src/main/java/com/android/okhttp/internal/http/
Http1xStream.java 22 import com.android.okhttp.Response;
51 * <li>{@link #readResponse Read response headers}.
52 * <li>Open a source to read the response body. Either {@link
58 * the request body. Exchanges that do not have a response body can call {@link
128 @Override public Response.Builder readResponseHeaders() throws IOException {
132 @Override public ResponseBody openResponseBody(Response response) throws IOException {
133 Source source = getTransferStream(response);
134 return new RealResponseBody(response.headers(), Okio.buffer(source));
137 private Source getTransferStream(Response response) throws IOException
    [all...]
Http2xStream.java 23 import com.android.okhttp.Response;
150 @Override public Response.Builder readResponseHeaders() throws IOException {
219 /** Returns headers for a name value block containing a SPDY response. */
220 public static Response.Builder readSpdy3HeadersList(List<Header> headerBlock) throws IOException {
247 return new Response.Builder()
254 /** Returns headers for a name value block containing an HTTP/2 response. */
255 public static Response.Builder readHttp2HeadersList(List<Header> headerBlock) throws IOException {
272 return new Response.Builder()
279 @Override public ResponseBody openResponseBody(Response response) throws IOException
    [all...]
  /external/v8/src/inspector/
v8-inspector-session-impl.cc 198 Response V8InspectorSessionImpl::findInjectedScript(
203 if (!context) return Response::Error("Cannot find context with specified id");
208 return Response::Error("Execution was terminated");
209 return Response::Error("Cannot access specified execution context");
215 return Response::OK();
218 Response V8InspectorSessionImpl::findInjectedScript(
241 Response response = unwrapObject(toString16(objectId), object, context, local
243 if (!response.isSuccess()) {
245 String16 errorMessage = response.errorMessage()
259 Response response = RemoteObjectId::parse(objectId, &remoteId); local
    [all...]
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/tls/
CertificatePinnerChainValidationTest.java 22 import com.squareup.okhttp.Response;
83 Response response1 = call1.execute();
93 Response response2 = call2.execute();
138 Response response1 = call1.execute();
148 Response response2 = call2.execute();
  /external/nist-sip/java/gov/nist/javax/sip/message/
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/libchrome/dbus/
message.cc 385 // Response implementation.
388 Response::Response() = default;
390 std::unique_ptr<Response> Response::FromRawMessage(DBusMessage* raw_message) {
394 std::unique_ptr<Response> response(new Response());
395 response->Init(raw_message);
396 return response;
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Ufs/UfsPassThruDxe/
UfsPassThruHci.c 208 Dump QUERY RESPONSE UPIU result for debugging.
220 DEBUG ((EFI_D_VERBOSE, "Query Response with Parameter Not Readable\n"));
223 DEBUG ((EFI_D_VERBOSE, "Query Response with Parameter Not Writeable\n"));
226 DEBUG ((EFI_D_VERBOSE, "Query Response with Parameter Already Written\n"));
229 DEBUG ((EFI_D_VERBOSE, "Query Response with Invalid Length\n"));
232 DEBUG ((EFI_D_VERBOSE, "Query Response with Invalid Value\n"));
235 DEBUG ((EFI_D_VERBOSE, "Query Response with Invalid Selector\n"));
238 DEBUG ((EFI_D_VERBOSE, "Query Response with Invalid Index\n"));
241 DEBUG ((EFI_D_VERBOSE, "Query Response with Invalid Idn\n"));
244 DEBUG ((EFI_D_VERBOSE, "Query Response with Invalid Opcode\n"));
    [all...]
  /external/python/httplib2/
libhttplib2.tex 121 A 3xx redirect response code was provided but no Location: header
139 The headers claimed that the content of the response was compressed but the
178 \begin{classdesc}{Response}{info}
179 Response is a subclass of \class{dict} and instances of this
235 The return value is a tuple of (response, content), the first being and instance of the
236 \class{Response} class, the second being a string that contains the response entity body.
285 those error conditions will be turned into \class{Response} objects
292 Defaults to \code{False}. If \code{True}, then any etags present in the cached response
324 \subsection{Response Objects
    [all...]
  /external/libbrillo/brillo/http/
http_connection_fake.cc 86 std::unique_ptr<Response> response{new Response{shared_from_this()}};
87 success_callback.Run(1, std::move(response));
  /external/nanohttpd/core/src/test/java/fi/iki/elonen/
HttpServerTest.java 64 public Response response = newFixedLengthResponse(""); field in class:HttpServerTest.TestServer
99 public Response serve(IHTTPSession session) {
113 return this.response;
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
CallTest.java 383 Response response = client.newCall(request).execute(); local
384 assertEquals(200, response.code());
574 Response response = call.execute(); local
575 response.body().close();
655 @Override public void onResponse(Response response) throws IOException {
712 @Override public void onResponse(Response response) throws IOException
739 Response response = client.newCall(request).execute(); local
    [all...]
  /external/okhttp/samples/crawler/src/main/java/com/squareup/okhttp/sample/
Crawler.java 22 import com.squareup.okhttp.Response;
92 Response response = client.newCall(request).execute(); local
93 String responseSource = response.networkResponse() != null
94 ? ("(network: " + response.networkResponse().code() + " over " + response.protocol() + ")")
96 int responseCode = response.code();
100 String contentType = response.header("Content-Type");
102 response.body().close();
106 Document document = Jsoup.parse(response.body().string(), url.toString())
    [all...]
  /external/okhttp/samples/guide/src/main/java/com/squareup/okhttp/recipes/
CustomTrust.java 22 import com.squareup.okhttp.Response;
50 Response response = client.newCall(request).execute(); local
51 if (!response.isSuccessful()) throw new IOException("Unexpected code " + response);
53 Headers responseHeaders = response.headers();
58 System.out.println(response.body().string());
  /external/syzkaller/vendor/google.golang.org/api/googleapi/transport/
apikey.go 25 func (t *APIKey) RoundTrip(req *http.Request) (*http.Response, error) {
  /external/caliper/lib/
jsr311-api-1.1.1.jar 
  /cts/tests/tests/syncmanager/src/android/content/syncmanager/cts/
CtsSyncManagerTest.java 41 import android.content.syncmanager.cts.SyncManagerCtsProto.Payload.Response;
189 Response res = mRpc.invoke(APP1_PACKAGE,
229 final Response res = mRpc.invoke(APP1_PACKAGE,
254 Response res = mRpc.invoke(APP1_PACKAGE,
294 // final Response res = mRpc.invoke(APP1_PACKAGE,
304 // final Response res = mRpc.invoke(APP1_PACKAGE,
  /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/python/apitools/apitools/base/py/
transfer_test.py 32 def assertRangeAndContentRangeCompatible(self, request, response):
39 self.assertIn('content-range', response.info)
40 response_header = response.info['content-range']
107 make_request.return_value = http_wrapper.Response(
135 make_request.return_value = http_wrapper.Response(
169 return http_wrapper.Response(
179 return http_wrapper.Response(
  /external/python/google-api-python-client/tests/
test_errors.py 51 response = httplib2.Response(headers)
52 response.reason = reason
53 return response, data
60 """Test a nicely formed, expected error response."""
  /external/python/oauth2client/tests/contrib/
test_metadata.py 35 httplib2.Response(
  /external/skia/tools/skiaserve/urlhandlers/
BreakHandler.cpp 12 #include "../Response.h"
14 using namespace Response;
  /external/skqp/tools/skiaserve/urlhandlers/
BreakHandler.cpp 12 #include "../Response.h"
14 using namespace Response;

Completed in 3507 milliseconds

<<1112131415161718