/external/grpc-grpc/src/python/grpcio_tests/tests/http2/ |
D | negative_http2_client.py | 55 response_type=messages_pb2.COMPRESSABLE, 62 _validate_payload_type_and_length(first_response, messages_pb2.COMPRESSABLE, 67 messages_pb2.COMPRESSABLE, _RESPONSE_SIZE) 90 _validate_payload_type_and_length(response, messages_pb2.COMPRESSABLE, 97 _validate_payload_type_and_length(response, messages_pb2.COMPRESSABLE, 106 future.result(), messages_pb2.COMPRESSABLE, _RESPONSE_SIZE)
|
/external/grpc-grpc/src/python/grpcio_tests/tests/interop/ |
D | methods.py | 67 type=messages_pb2.COMPRESSABLE, 132 response_type=messages_pb2.COMPRESSABLE, 140 _validate_payload_type_and_length(response, messages_pb2.COMPRESSABLE, size) 181 response_type=messages_pb2.COMPRESSABLE, 190 _validate_payload_type_and_length(response, messages_pb2.COMPRESSABLE, 252 response_type=messages_pb2.COMPRESSABLE, 259 response, messages_pb2.COMPRESSABLE, response_size) 291 response_type=messages_pb2.COMPRESSABLE, 316 response_type=messages_pb2.COMPRESSABLE, 346 response_type=messages_pb2.COMPRESSABLE, [all …]
|
/external/grpc-grpc/src/php/tests/interop/ |
D | interop_client.php | 91 $request->setResponseType(Grpc\Testing\PayloadType::COMPRESSABLE); 94 $payload->setType(Grpc\Testing\PayloadType::COMPRESSABLE); 109 hardAssert($payload->getType() === Grpc\Testing\PayloadType::COMPRESSABLE, 269 $request->setResponseType(Grpc\Testing\PayloadType::COMPRESSABLE); 282 $payload->getType() === Grpc\Testing\PayloadType::COMPRESSABLE, 304 $request->setResponseType(Grpc\Testing\PayloadType::COMPRESSABLE); 318 $payload->getType() === Grpc\Testing\PayloadType::COMPRESSABLE, 364 $request->setResponseType(Grpc\Testing\PayloadType::COMPRESSABLE); 384 $request->setResponseType(Grpc\Testing\PayloadType::COMPRESSABLE); 409 $request->setResponseType(Grpc\Testing\PayloadType::COMPRESSABLE); [all …]
|
/external/grpc-grpc-java/interop-testing/src/main/java/io/grpc/testing/integration/ |
D | AbstractInteropTest.java | 21 import static io.grpc.testing.integration.Messages.PayloadType.COMPRESSABLE; 392 .setResponseType(PayloadType.COMPRESSABLE) in largeUnary() 398 .setType(PayloadType.COMPRESSABLE) in largeUnary() 503 .setResponseType(PayloadType.COMPRESSABLE) in serverStreaming() 516 .setType(PayloadType.COMPRESSABLE) in serverStreaming() 521 .setType(PayloadType.COMPRESSABLE) in serverStreaming() 526 .setType(PayloadType.COMPRESSABLE) in serverStreaming() 531 .setType(PayloadType.COMPRESSABLE) in serverStreaming() 695 .setType(PayloadType.COMPRESSABLE) in pingPong() 700 .setType(PayloadType.COMPRESSABLE) in pingPong() [all …]
|
D | TestServiceImpl.java | 115 .setType(compressable ? PayloadType.COMPRESSABLE : PayloadType.UNCOMPRESSABLE) in unaryCall() 428 .setType(compressable ? PayloadType.COMPRESSABLE : PayloadType.UNCOMPRESSABLE) 465 case COMPRESSABLE:
|
D | Http2Client.java | 208 .setResponseType(PayloadType.COMPRESSABLE) 213 .setType(PayloadType.COMPRESSABLE)
|
/external/grpc-grpc/src/python/grpcio_tests/tests/fork/ |
D | methods.py | 57 response_type=messages_pb2.COMPRESSABLE, 62 _validate_payload_type_and_length(response, messages_pb2.COMPRESSABLE, size) 68 response_type=messages_pb2.COMPRESSABLE, 72 _validate_payload_type_and_length(response, messages_pb2.COMPRESSABLE, size) 296 response_type=messages_pb2.COMPRESSABLE, 312 _validate_payload_type_and_length(response, messages_pb2.COMPRESSABLE,
|
/external/grpc-grpc/src/objective-c/examples/RemoteTestClient/ |
D | messages.proto | 26 COMPRESSABLE = 0; enumerator 50 // If response_type is COMPRESSABLE, this denotes the size before compression. 91 // If response_type is COMPRESSABLE, this denotes the size before compression.
|
/external/grpc-grpc/src/python/grpcio_tests/tests/protoc_plugin/protos/requests/r/ |
D | test_requests.proto | 27 // If response_type is COMPRESSABLE, this denotes the size before compression. 43 // If response_type is COMPRESSABLE, this denotes the size before compression.
|
/external/grpc-grpc/src/python/grpcio_tests/tests/protoc_plugin/ |
D | _python_plugin_test.py | 77 response.payload.payload_type = payload_pb2.COMPRESSABLE 85 response.payload.payload_type = payload_pb2.COMPRESSABLE 103 response.payload.payload_type = payload_pb2.COMPRESSABLE 113 response.payload.payload_type = payload_pb2.COMPRESSABLE 195 request.payload.payload_type = payload_pb2.COMPRESSABLE
|
D | beta_python_plugin_test.py | 145 response.payload.payload_type = self._payload_pb2.COMPRESSABLE 153 response.payload.payload_type = self._payload_pb2.COMPRESSABLE 171 response.payload.payload_type = self._payload_pb2.COMPRESSABLE 181 response.payload.payload_type = self._payload_pb2.COMPRESSABLE 260 request.payload.payload_type = payload_pb2.COMPRESSABLE
|
/external/grpc-grpc/src/php/tests/qps/ |
D | client.php | 103 $req->setResponseType(Grpc\Testing\PayloadType::COMPRESSABLE); 106 $payload->setType(Grpc\Testing\PayloadType::COMPRESSABLE);
|
/external/grpc-grpc/src/php/tests/qps/generated_code/Grpc/Testing/ |
D | PayloadType.php | 20 const COMPRESSABLE = 0; define in Grpc\\Testing\\PayloadType
|
/external/grpc-grpc/test/cpp/qps/ |
D | client.h | 73 req->set_response_type(grpc::testing::PayloadType::COMPRESSABLE); in ClientRequestCreator() 76 grpc::testing::PayloadType::COMPRESSABLE); in ClientRequestCreator() 84 req->set_response_type(grpc::testing::PayloadType::COMPRESSABLE); in ClientRequestCreator() 87 grpc::testing::PayloadType::COMPRESSABLE); in ClientRequestCreator()
|
D | server.h | 82 if (type != PayloadType::COMPRESSABLE) { in SetPayload()
|
/external/grpc-grpc-java/interop-testing/src/test/java/io/grpc/testing/integration/ |
D | TransportCompressionTest.java | 110 .setResponseType(PayloadType.COMPRESSABLE) 116 .setType(PayloadType.COMPRESSABLE)
|
D | Http2OkHttpTest.java | 119 .setResponseType(Messages.PayloadType.COMPRESSABLE); in receivedDataForFinishedStream()
|
/external/grpc-grpc/src/python/grpcio_tests/tests/protoc_plugin/protos/payload/ |
D | test_payload.proto | 21 COMPRESSABLE= 0; enumerator
|
/external/grpc-grpc-java/gae-interop-testing/gae-jdk8/src/main/java/io/grpc/testing/integration/ |
D | LongLivedChannel.java | 60 .setResponseType(Messages.PayloadType.COMPRESSABLE) in doGet()
|
/external/grpc-grpc-java/benchmarks/src/main/java/io/grpc/benchmarks/qps/ |
D | ClientConfiguration.java | 63 PayloadType payloadType = PayloadType.COMPRESSABLE;
|
/external/grpc-grpc-java/benchmarks/src/main/java/io/grpc/benchmarks/ |
D | Utils.java | 251 if (!Messages.PayloadType.COMPRESSABLE.equals(request.getResponseType())) { in makeResponse()
|
/external/grpc-grpc/src/proto/grpc/testing/ |
D | messages.proto | 33 COMPRESSABLE = 0; enumerator
|
/external/grpc-grpc/src/objective-c/tests/RemoteTestClient/ |
D | messages.proto | 35 COMPRESSABLE = 0; enumerator
|
/external/grpc-grpc-java/interop-testing/src/main/proto/grpc/testing/ |
D | messages.proto | 28 COMPRESSABLE = 0; enumerator
|
/external/grpc-grpc-java/benchmarks/src/main/proto/grpc/testing/ |
D | messages.proto | 35 COMPRESSABLE = 0; enumerator
|