/external/libxml2/result/ |
D | att8.sax2 | 3 …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')
|
D | att8.sax | 3 SAX.startElement(ino:response, xmlns:ino='http://namespaces.softwareag.com/tamino/response2', xmlns…
|
/external/libxml2/result/noent/ |
D | att8.sax2 | 3 …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/ |
D | CacheResponse.java | 49 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/ |
D | CacheTest.java | 231 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 …]
|
D | ConnectionReuseTest.java | 198 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()
|
D | SocksProxyTest.java | 59 Response response2 = client.newCall(request2).execute(); in proxy() local 60 assertEquals("def", response2.body().string()); in proxy()
|
D | CallTest.java | 826 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()
|
D | URLConnectionTest.java | 1324 MockResponse response2 = new MockResponse(); in testEarlyDisconnectDoesntHarmPooling() local 1325 transferKind.setBody(response2, "LMNOPQRSTUV", 1024); in testEarlyDisconnectDoesntHarmPooling() 1326 server.enqueue(response2); in testEarlyDisconnectDoesntHarmPooling()
|
/external/python/httplib2/tests/ |
D | test_http.py | 235 response2, content2 = http.request(uri, "GET") 237 assert "content-location" in response2 243 assert response2.status == 200 244 assert response2["content-location"] == destination 246 assert response2.previous.status == 301 247 assert response2.previous.fromcache 318 response2, content2 = http.request(second_url, "GET") 326 assert response2.status == 200 329 assert response2["content-location"] == final_url 331 assert response2.previous.status == 302 [all …]
|
D | test_auth.py | 113 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/ |
D | OkApacheClientTest.java | 85 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/ |
D | CertificatePinnerChainValidationTest.java | 93 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/ |
D | ExcludedProxyTest.java | 80 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/llvm-project/llvm/test/tools/llvm-ar/ |
D | response.test | 11 # RUN: %python -c "import os; open(r'%t.response2.txt', 'w').write(r'%t2.a \"%t space.txt\"'+ '\n')" 12 # RUN: llvm-ar rc @%t.response2.txt
|
/external/libcups/systemv/ |
D | lpstat.c | 856 *response2; /* IPP response from remote server */ in show_classes() local 975 response2 = NULL; in show_classes() 1007 if ((response2 = cupsDoRequest(http2, request, "/")) != NULL) in show_classes() 1008 members = ippFindAttribute(response2, "member-names", IPP_TAG_NAME); in show_classes() 1020 if (response2) in show_classes() 1021 ippDelete(response2); in show_classes() 1046 if (response2) in show_classes() 1047 ippDelete(response2); in show_classes()
|
/external/robolectric-shadows/shadows/httpclient/src/test/java/org/robolectric/shadows/httpclient/ |
D | ShadowDefaultRequestDirectorTest.java | 247 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/rust/crates/quiche/deps/boringssl/src/crypto/trust_token/ |
D | trust_token_test.cc | 259 std::vector<uint8_t> response2(response, response + response_len); in TEST_P() local 260 response2.push_back(0); in TEST_P() 264 response2.data(), response2.size())); in TEST_P()
|
/external/grpc-grpc/test/cpp/interop/ |
D | interop_client.cc | 894 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/boringssl/src/crypto/trust_token/ |
D | trust_token_test.cc | 297 std::vector<uint8_t> response2(response, response + response_len); in TEST_P() local 298 response2.push_back(0); in TEST_P() 302 response2.data(), response2.size())); in TEST_P()
|
/external/grpc-grpc/src/csharp/Grpc.IntegrationTesting/ |
D | InteropClient.cs | 624 … var response2 = client.UnaryCall(uncompressedRequest, CreateClientCompressionMetadata(false)); in RunClientCompressedUnary() 625 Assert.AreEqual(314159, response2.Payload.Body.Length); in RunClientCompressedUnary()
|
/external/webrtc/p2p/base/ |
D | port_unittest.cc | 3004 const auto* response2 = port2->last_stun_msg(); in TEST_P() local 3005 ASSERT_TRUE(response2 != nullptr); in TEST_P() 3009 ASSERT_EQ(response2->type(), GOOG_PING_RESPONSE); in TEST_P() 3011 ASSERT_EQ(response2->type(), STUN_BINDING_RESPONSE); in TEST_P() 3252 const auto* response2 = port2->last_stun_msg(); in TEST_F() local 3253 ASSERT_TRUE(response2 != nullptr); in TEST_F() 3256 ASSERT_EQ(response2->type(), GOOG_PING_RESPONSE); in TEST_F() 3338 const auto* response2 = port2->last_stun_msg(); in TEST_F() local 3339 ASSERT_TRUE(response2 != nullptr); in TEST_F() 3342 ASSERT_EQ(response2->type(), GOOG_PING_RESPONSE); in TEST_F() [all …]
|
/external/llvm-project/lldb/unittests/Process/gdb-remote/ |
D | GDBRemoteCommunicationClientTest.cpp | 581 std::string response2 = R"(],"metabuffersize":8192,"threadid":35,"type":1}])"; in TEST_F() local 582 HandlePacket(server, expected_packet, response1+response2); in TEST_F()
|
/external/grpc-grpc-java/interop-testing/src/main/java/io/grpc/testing/integration/ |
D | AbstractInteropTest.java | 376 SimpleResponse response2 = in cacheableUnary() local 383 assertEquals(response1, response2); in cacheableUnary()
|