Home
last modified time | relevance | path

Searched refs:response2 (Results 1 – 21 of 21) sorted by relevance

/external/libxml2/result/
Datt8.sax23 …ttp://namespaces.softwareag.com/tamino/response2', 2, xmlns:ino='http://namespaces.softwareag.com/…
11 SAX.startElementNs(message, ino, 'http://namespaces.softwareag.com/tamino/response2', 0, 1, 0, ino:…
12 SAX.startElementNs(messageline, ino, 'http://namespaces.softwareag.com/tamino/response2', 0, 0, 0)
14 SAX.endElementNs(messageline, ino, 'http://namespaces.softwareag.com/tamino/response2')
15 SAX.endElementNs(message, ino, 'http://namespaces.softwareag.com/tamino/response2')
23 SAX.startElementNs(message, ino, 'http://namespaces.softwareag.com/tamino/response2', 0, 1, 0, ino:…
24 SAX.startElementNs(messageline, ino, 'http://namespaces.softwareag.com/tamino/response2', 0, 0, 0)
26 SAX.endElementNs(messageline, ino, 'http://namespaces.softwareag.com/tamino/response2')
27 SAX.endElementNs(message, ino, 'http://namespaces.softwareag.com/tamino/response2')
28 SAX.endElementNs(response, ino, 'http://namespaces.softwareag.com/tamino/response2')
Datt8.sax3 SAX.startElement(ino:response, xmlns:ino='http://namespaces.softwareag.com/tamino/response2', xmlns…
/external/libxml2/result/noent/
Datt8.sax23 …ttp://namespaces.softwareag.com/tamino/response2', 2, xmlns:ino='http://namespaces.softwareag.com/…
11 SAX.startElementNs(message, ino, 'http://namespaces.softwareag.com/tamino/response2', 0, 1, 0, ino:…
12 SAX.startElementNs(messageline, ino, 'http://namespaces.softwareag.com/tamino/response2', 0, 0, 0)
14 SAX.endElementNs(messageline, ino, 'http://namespaces.softwareag.com/tamino/response2')
15 SAX.endElementNs(message, ino, 'http://namespaces.softwareag.com/tamino/response2')
23 SAX.startElementNs(message, ino, 'http://namespaces.softwareag.com/tamino/response2', 0, 1, 0, ino:…
24 SAX.startElementNs(messageline, ino, 'http://namespaces.softwareag.com/tamino/response2', 0, 0, 0)
26 SAX.endElementNs(messageline, ino, 'http://namespaces.softwareag.com/tamino/response2')
27 SAX.endElementNs(message, ino, 'http://namespaces.softwareag.com/tamino/response2')
28 SAX.endElementNs(response, ino, 'http://namespaces.softwareag.com/tamino/response2')
/external/okhttp/samples/guide/src/main/java/com/squareup/okhttp/recipes/
DCacheResponse.java49 Response response2 = client.newCall(request).execute(); in run() local
50 if (!response2.isSuccessful()) throw new IOException("Unexpected code " + response2); in run()
52 String response2Body = response2.body().string(); in run()
53 System.out.println("Response 2 response: " + response2); in run()
54 System.out.println("Response 2 cache response: " + response2.cacheResponse()); in run()
55 System.out.println("Response 2 network response: " + response2.networkResponse()); in run()
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
DCacheTest.java231 Response response2 = client.newCall(request).execute(); in testResponseCaching() local
232 BufferedSource in2 = response2.body().source(); in testResponseCaching()
235 assertEquals(200, response2.code()); in testResponseCaching()
236 assertEquals("Fantastic", response2.message()); in testResponseCaching()
268 Response response2 = client.newCall(request).execute(); // Cached! in secureResponseCaching() local
269 assertEquals("ABC", response2.body().string()); in secureResponseCaching()
275 assertEquals(suite, response2.handshake().cipherSuite()); in secureResponseCaching()
276 assertEquals(localCerts, response2.handshake().localCertificates()); in secureResponseCaching()
277 assertEquals(serverCerts, response2.handshake().peerCertificates()); in secureResponseCaching()
278 assertEquals(peerPrincipal, response2.handshake().peerPrincipal()); in secureResponseCaching()
[all …]
DConnectionReuseTest.java198 Response response2 = client.newCall(request).execute(); in http2ConnectionsAreSharedBeforeResponseIsConsumed() local
200 response2.body().string(); // Discard the response body. in http2ConnectionsAreSharedBeforeResponseIsConsumed()
220 Response response2 = client.newCall(request).execute(); in connectionsAreEvicted() local
221 assertEquals("b", response2.body().string()); in connectionsAreEvicted()
DSocksProxyTest.java59 Response response2 = client.newCall(request2).execute(); in proxy() local
60 assertEquals("def", response2.body().string()); in proxy()
DCallTest.java826 Response response2 = client.newCall(request2).execute(); in reusedSinksGetIndependentTimeoutInstances() local
827 assertEquals(200, response2.code()); in reusedSinksGetIndependentTimeoutInstances()
847 Response response2 = client.newCall(request2).execute(); in reusedSourcesGetIndependentTimeoutInstances() local
848 BufferedSource body2 = response2.body().source(); in reusedSourcesGetIndependentTimeoutInstances()
1041 Response response2 = client.newCall(request2).execute(); in matchingPinnedCertificate() local
1042 assertNotSame(response2.handshake(), response1.handshake()); in matchingPinnedCertificate()
1043 response2.body().close(); in matchingPinnedCertificate()
1098 Response response2 = client.newCall(request2).execute(); in postBodyRetransmittedOnFailureRecovery() local
1099 assertEquals("def", response2.body().string()); in postBodyRetransmittedOnFailureRecovery()
DURLConnectionTest.java1312 MockResponse response2 = new MockResponse(); in testEarlyDisconnectDoesntHarmPooling() local
1313 transferKind.setBody(response2, "LMNOPQRSTUV", 1024); in testEarlyDisconnectDoesntHarmPooling()
1314 server.enqueue(response2); in testEarlyDisconnectDoesntHarmPooling()
/external/python/httplib2/tests/
Dtest_http.py237 response2, content2 = http.request(uri, "GET")
239 assert "content-location" in response2
245 assert response2.status == 200
246 assert response2["content-location"] == destination
248 assert response2.previous.status == 301
249 assert response2.previous.fromcache
320 response2, content2 = http.request(second_url, "GET")
328 assert response2.status == 200
331 assert response2["content-location"] == final_url
333 assert response2.previous.status == 302
[all …]
Dtest_auth.py113 response2, _ = http.request(uri, "GET")
114 info2 = httplib2._parse_www_authenticate(response2, "authentication-info")
/external/okhttp/okhttp-apache/src/test/java/com/squareup/okhttp/apache/
DOkApacheClientTest.java85 HttpResponse response2 = client.execute(request2); in headers() local
86 Header[] headers2 = response2.getHeaders("Foo"); in headers()
165 HttpResponse response2 = client.execute(request2); in contentType() local
166 Header[] headers2 = response2.getHeaders("Content-Type"); in contentType()
169 assertNotNull(response2.getEntity().getContentType()); in contentType()
170 assertEquals("application/json", response2.getEntity().getContentType().getValue()); in contentType()
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/tls/
DCertificatePinnerChainValidationTest.java93 Response response2 = call2.execute(); in pinRootNotPresentInChain() local
94 assertEquals("def", response2.body().string()); in pinRootNotPresentInChain()
148 Response response2 = call2.execute(); in pinIntermediatePresentInChain() local
149 assertEquals("def", response2.body().string()); in pinIntermediatePresentInChain()
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
DExcludedProxyTest.java80 String response2 = ""; in test_usingProxy() local
84 response2 += new String(b2, 0, count2); in test_usingProxy()
85 assertTrue("Response to POST method invalid", response2 in test_usingProxy()
/external/robolectric-shadows/shadows/httpclient/src/test/java/org/robolectric/shadows/httpclient/
DShadowDefaultRequestDirectorTest.java247 HttpResponse response2 = requestDirector.execute(null, new HttpGet("www.example.com"), null); in shouldHandleMultipleInvocations() local
252 assertThat(response2.getStatusLine().getStatusCode()).isEqualTo(201); in shouldHandleMultipleInvocations()
253 assertThat(getStringContent(response2)).isEqualTo("another happy response body"); in shouldHandleMultipleInvocations()
/external/u-boot/drivers/mmc/
Darm_pl180_mmci.h155 u32 response2; /* 0x1c*/ member
Darm_pl180_mmci.c64 cmd->response[2] = readl(&host->base->response2); in wait_for_command_end()
/external/grpc-grpc/test/cpp/interop/
Dinterop_client.cc894 SimpleResponse response2; in DoCacheableUnary() local
898 serviceStub_.Get()->CacheableUnaryCall(&context2, request, &response2); in DoCacheableUnary()
903 response2.payload().body().c_str()); in DoCacheableUnary()
907 GPR_ASSERT(response2.payload().body() == response1.payload().body()); in DoCacheableUnary()
/external/grpc-grpc/src/csharp/Grpc.IntegrationTesting/
DInteropClient.cs624 … var response2 = client.UnaryCall(uncompressedRequest, CreateClientCompressionMetadata(false)); in RunClientCompressedUnary()
625 Assert.AreEqual(314159, response2.Payload.Body.Length); in RunClientCompressedUnary()
/external/autotest/client/common_lib/cros/
Ddev_server_unittest.py494 response2 = (True, 'Completed')
540 json.dumps(response2))
/external/grpc-grpc-java/interop-testing/src/main/java/io/grpc/testing/integration/
DAbstractInteropTest.java376 SimpleResponse response2 = in cacheableUnary() local
383 assertEquals(response1, response2); in cacheableUnary()