Home
last modified time | relevance | path

Searched refs:response3 (Results 1 – 9 of 9) sorted by relevance

/external/python/httplib2/tests/
Dtest_auth.py117 response3, content = http.request(uri, "GET")
118 info3 = httplib2._parse_www_authenticate(response3, "authentication-info")
119 assert response3.status == 200
Dtest_http.py321 response3, content3 = http.request(uri, "GET")
337 assert response3.status == 200
341 assert response3.previous.status == 302
342 assert not response3.previous.fromcache
/external/okhttp/okhttp-apache/src/test/java/com/squareup/okhttp/apache/
DOkApacheClientTest.java173 HttpResponse response3 = client.execute(request3); in contentType() local
174 Header[] headers3 = response3.getHeaders("Content-Type"); in contentType()
176 assertNull(response3.getEntity().getContentType()); in contentType()
/external/u-boot/drivers/mmc/
Darm_pl180_mmci.h156 u32 response3; /* 0x20*/ member
Darm_pl180_mmci.c65 cmd->response[3] = readl(&host->base->response3); in wait_for_command_end()
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
DCacheTest.java333 Response response3 = client.newCall(request3).execute(); in redirectToCachedResult() local
334 assertEquals("DEF", response3.body().string()); in redirectToCachedResult()
1829 Response response3 = get(server.url("/a")); in conditionalHitUpdatesCache() local
1830 assertEquals("A", response3.body().string()); in conditionalHitUpdatesCache()
1831 assertEquals("GET, HEAD", response3.header("Allow")); in conditionalHitUpdatesCache()
2231 Response response3 = get(invalid); in assertConditionallyCached() local
2232 assertEquals("B", response3.body().string()); in assertConditionallyCached()
2233 assertEquals(HttpURLConnection.HTTP_OK, response3.code()); in assertConditionallyCached()
2234 assertEquals("B-OK", response3.message()); in assertConditionallyCached()
/external/grpc-grpc/test/cpp/interop/
Dinterop_client.cc916 SimpleResponse response3; in DoCacheableUnary() local
920 serviceStub_.Get()->CacheableUnaryCall(&context3, request1, &response3); in DoCacheableUnary()
925 response3.payload().body().c_str()); in DoCacheableUnary()
928 GPR_ASSERT(response3.payload().body() != response1.payload().body()); in DoCacheableUnary()
/external/autotest/client/common_lib/cros/
Ddev_server_unittest.py495 response3 = {'host_logs': {'a': 'log'}, 'cros_au_log': 'logs'}
548 mox.IgnoreArg()).AndReturn(response3)
/external/grpc-grpc-java/interop-testing/src/main/java/io/grpc/testing/integration/
DAbstractInteropTest.java379 SimpleResponse response3 = in cacheableUnary() local
384 assertNotEquals(response1, response3); in cacheableUnary()