/external/ukey2/src/main/java/com/google/security/cryptauth/lib/securegcm/ |
D | TransportCryptoOps.java | 44 public enum PayloadType { enum in TransportCryptoOps 64 PayloadType(SecureGcmProto.Type type) { in PayloadType() method in TransportCryptoOps.PayloadType 72 public static PayloadType valueOf(SecureGcmProto.Type type) { in valueOf() 73 return PayloadType.valueOf(type.getNumber()); in valueOf() 76 public static PayloadType valueOf(int type) { in valueOf() 77 for (PayloadType payloadType : PayloadType.values()) { in valueOf() 90 private final PayloadType payloadType; 93 public Payload(PayloadType payloadType, byte[] message) { in Payload() 101 public PayloadType getPayloadType() { in getPayloadType() 176 return new Payload(PayloadType.valueOf(metadata.getType()), parsed.getBody().toByteArray()); in verifydecryptServerMessage() [all …]
|
D | D2DConnectionContext.java | 22 import com.google.security.cryptauth.lib.securegcm.TransportCryptoOps.PayloadType; 65 new Payload(PayloadType.DEVICE_TO_DEVICE_MESSAGE, in encodeMessageToPeer() 104 if (!PayloadType.DEVICE_TO_DEVICE_MESSAGE.equals(payload.getPayloadType())) { in decodeMessageFromPeer()
|
D | EnrollmentCryptoOps.java | 21 import com.google.security.cryptauth.lib.securegcm.TransportCryptoOps.PayloadType; 159 .setType(PayloadType.ENROLLMENT.getType()) in encryptEnrollmentMessage() 210 (outerMetadata.getType() == PayloadType.ENROLLMENT.getType()) in decryptEnrollmentMessage()
|
D | D2DCryptoOps.java | 23 import com.google.security.cryptauth.lib.securegcm.TransportCryptoOps.PayloadType; 172 return new Payload(PayloadType.valueOf(metadata.getType()), parsed.getBody().toByteArray()); in verifydecryptPayload() 221 if (!PayloadType.DEVICE_TO_DEVICE_RESPONDER_HELLO_PAYLOAD.equals( in decryptResponderHelloMessage()
|
D | D2DDiffieHellmanKeyExchangeHandshake.java | 22 import com.google.security.cryptauth.lib.securegcm.TransportCryptoOps.PayloadType; 190 new Payload(PayloadType.DEVICE_TO_DEVICE_RESPONDER_HELLO_PAYLOAD, in makeResponderHelloWithPayload()
|
/external/libchrome/base/containers/ |
D | mru_cache.h | 53 class PayloadType, 61 typedef std::pair<KeyType, PayloadType> value_type; 223 class PayloadType, 225 class MRUCache : public MRUCacheBase<KeyType, PayloadType, CompareType> { 227 using ParentType = MRUCacheBase<KeyType, PayloadType, CompareType>; 249 template <class KeyType, class PayloadType, class HashType = std::hash<KeyType>> 251 : public MRUCacheBase<KeyType, PayloadType, HashType, MRUCacheHashMap> { 254 MRUCacheBase<KeyType, PayloadType, HashType, MRUCacheHashMap>;
|
/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; 89 import io.grpc.testing.integration.Messages.PayloadType; 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() [all …]
|
D | TestServiceImpl.java | 32 import io.grpc.testing.integration.Messages.PayloadType; 115 .setType(compressable ? PayloadType.COMPRESSABLE : PayloadType.UNCOMPRESSABLE) in unaryCall() 428 .setType(compressable ? PayloadType.COMPRESSABLE : PayloadType.UNCOMPRESSABLE) 463 private boolean compressableResponse(PayloadType responseType) {
|
D | Http2Client.java | 33 import io.grpc.testing.integration.Messages.PayloadType; 208 .setResponseType(PayloadType.COMPRESSABLE) 213 .setType(PayloadType.COMPRESSABLE)
|
/external/grpc-grpc/src/objective-c/examples/RemoteTestClient/ |
D | messages.proto | 24 enum PayloadType { enum 38 PayloadType type = 1; 47 PayloadType response_type = 1; 105 PayloadType response_type = 1;
|
/external/grpc-grpc/src/python/grpcio_tests/tests/protoc_plugin/protos/payload/ |
D | test_payload.proto | 19 enum PayloadType { enum 31 PayloadType payload_type = 1;
|
/external/grpc-grpc/src/proto/grpc/testing/ |
D | messages.proto | 31 enum PayloadType { enum 39 PayloadType type = 1; 55 PayloadType response_type = 1; 135 PayloadType response_type = 1;
|
/external/grpc-grpc-java/interop-testing/src/test/java/io/grpc/testing/integration/ |
D | TransportCompressionTest.java | 45 import io.grpc.testing.integration.Messages.PayloadType; 110 .setResponseType(PayloadType.COMPRESSABLE) 116 .setType(PayloadType.COMPRESSABLE)
|
D | ConcurrencyTest.java | 29 import io.grpc.testing.integration.Messages.PayloadType; 114 .setResponseType(PayloadType.RANDOM); in run()
|
/external/grpc-grpc-java/benchmarks/src/main/proto/grpc/testing/ |
D | messages.proto | 33 enum PayloadType { enum 42 PayloadType type = 1; 59 PayloadType response_type = 1; 140 PayloadType response_type = 1;
|
/external/grpc-grpc-java/interop-testing/src/main/proto/grpc/testing/ |
D | messages.proto | 26 enum PayloadType { enum 41 PayloadType type = 1; 58 PayloadType response_type = 1; 143 PayloadType response_type = 1;
|
/external/grpc-grpc/src/objective-c/tests/RemoteTestClient/ |
D | messages.proto | 33 enum PayloadType { enum 42 PayloadType type = 1; 59 PayloadType response_type = 1; 140 PayloadType response_type = 1;
|
/external/grpc-grpc/test/cpp/qps/ |
D | server.h | 80 static bool SetPayload(PayloadType type, int size, Payload* payload) { in SetPayload() 82 if (type != PayloadType::COMPRESSABLE) { in SetPayload()
|
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()
|
/external/grpc-grpc-java/benchmarks/src/main/java/io/grpc/benchmarks/qps/ |
D | ClientConfiguration.java | 28 import io.grpc.benchmarks.proto.Messages.PayloadType; 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() 256 Messages.PayloadType type = request.getResponseType(); in makeResponse() 267 public static SimpleRequest makeRequest(Messages.PayloadType payloadType, int reqLength, in makeRequest()
|
/external/grpc-grpc/src/python/grpcio_tests/tests/protoc_plugin/protos/requests/r/ |
D | test_requests.proto | 24 PayloadType response_type = 1; 56 PayloadType response_type = 1;
|
/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 | 13 class PayloadType class
|