/external/pigweed/pw_rpc/public/pw_rpc/ |
D | payloads_view.h | 148 MethodType method_type, in PayloadsView() argument 153 std::get<0>(PacketTypesWithPayload(method_type)), in PayloadsView() 154 std::get<1>(PacketTypesWithPayload(method_type)), in PayloadsView() 173 MethodType method_type) { in PacketTypesWithPayload() argument 174 switch (method_type) { in PacketTypesWithPayload()
|
/external/pigweed/pw_rpc/public/pw_rpc/internal/ |
D | call.h | 64 constexpr CallProperties(MethodType method_type, in CallProperties() argument 67 : bits_((static_cast<uint8_t>(method_type) << 0) | in CallProperties() 75 constexpr MethodType method_type() const { in method_type() function 250 return HasClientStream(properties_.method_type()); in has_client_stream() 254 return HasServerStream(properties_.method_type()); in has_server_stream()
|
D | test_method_context.h | 104 MethodType method_type, in InvocationContext() argument 106 : method_type_(method_type), in InvocationContext()
|
/external/pigweed/pw_protobuf/py/pw_protobuf/ |
D | proto_tree.py | 562 method_type: Type, 568 self._type = method_type 726 method_type = ProtoServiceMethod.Type.BIDIRECTIONAL_STREAMING 728 method_type = ProtoServiceMethod.Type.CLIENT_STREAMING 730 method_type = ProtoServiceMethod.Type.SERVER_STREAMING 732 method_type = ProtoServiceMethod.Type.UNARY 743 service, method.name, method_type, request_node, response_node
|
/external/wpa_supplicant_8/src/eap_common/ |
D | eap_gpsk_common.c | 346 size_t seed_len, u8 method_type) in eap_gpsk_derive_mid_helper() argument 379 os_memcpy(pos, &method_type, 1); in eap_gpsk_derive_mid_helper() 422 u8 method_type, u8 *sid, size_t *sid_len) in eap_gpsk_derive_session_id() argument 464 method_type); in eap_gpsk_derive_session_id() 466 sid[0] = method_type; in eap_gpsk_derive_session_id()
|
D | eap_gpsk_common.h | 61 u8 method_type, u8 *sid, size_t *sid_len);
|
/external/libabigail/include/ |
D | abg-fwd.h | 182 class method_type; variable 185 typedef shared_ptr<method_type> method_type_sptr; 508 const method_type* 511 method_type* 945 get_method_type_name(const method_type*, bool internal = false); 948 get_method_type_name(const method_type&, bool internal = false); 980 get_pretty_representation(const method_type&, bool internal = false); 983 get_pretty_representation(const method_type*, bool internal = false);
|
/external/rust/crates/grpcio/src/ |
D | server.rs | 32 method_type: MethodType, field 37 pub fn new(method_type: MethodType, cb: F) -> Handler<F> { in new() 38 Handler { method_type, cb } in new() 45 fn method_type(&self) -> MethodType; in method_type() method 63 fn method_type(&self) -> MethodType { in method_type() function 64 self.method_type in method_type()
|
/external/libabigail/src/ |
D | abg-hash.cc | 462 struct method_type::hash 465 operator()(const method_type& t) const in operator ()() 485 operator()(const method_type* t) in operator ()() 525 if (const method_type* m = dynamic_cast<const method_type*>(t)) in operator ()() 527 method_type::hash h; in operator ()() 1025 if (const method_type* d = dynamic_cast<const method_type*>(t)) in operator ()() 1026 return method_type::hash()(*d); in operator ()()
|
/external/rust/crates/grpcio-compiler/src/ |
D | codegen.rs | 215 fn method_type(&self) -> (MethodType, String) { in method_type() method 269 w.field_entry("ty", &self.method_type().1); in write_definition() 396 match self.method_type().0 { in write_client() 494 let (req, req_type, resp_type) = match self.method_type().0 { in write_service() 515 let add = match self.method_type().0 { in write_bind()
|
D | prost_codegen.rs | 482 let method_type = MethodType::from_method(method); in generate_server_methods() localVariable 483 let request_arg = match method_type { in generate_server_methods() 493 let response_type = match method_type { in generate_server_methods()
|
/external/grpc-grpc/src/compiler/ |
D | csharp_generator.cc | 187 std::string GetCSharpMethodType(MethodType method_type) { in GetCSharpMethodType() argument 188 switch (method_type) { in GetCSharpMethodType() 447 MethodType method_type = GetMethodType(method); in GenerateClientStub() local 449 if (method_type == METHODTYPE_NO_STREAMING) { in GenerateClientStub() 491 if (method_type == METHODTYPE_NO_STREAMING) { in GenerateClientStub()
|
/external/rust/crates/quiche/deps/boringssl/src/crypto/bio/ |
D | bio.c | 382 int method_type, mask; in BIO_find_type() local 391 method_type = bio->method->type; in BIO_find_type() 394 if (method_type & type) { in BIO_find_type() 397 } else if (method_type == type) { in BIO_find_type()
|
/external/cronet/third_party/boringssl/src/crypto/bio/ |
D | bio.c | 387 int method_type, mask; in BIO_find_type() local 396 method_type = bio->method->type; in BIO_find_type() 399 if (method_type & type) { in BIO_find_type() 402 } else if (method_type == type) { in BIO_find_type()
|
/external/boringssl/src/crypto/bio/ |
D | bio.c | 387 int method_type, mask; in BIO_find_type() local 396 method_type = bio->method->type; in BIO_find_type() 399 if (method_type & type) { in BIO_find_type() 402 } else if (method_type == type) { in BIO_find_type()
|
/external/grpc-grpc/include/grpcpp/impl/codegen/ |
D | rpc_method.h | 48 RpcType method_type() const { return method_type_; } in method_type() function
|
/external/pigweed/pw_rpc/ |
D | call_test.cc | 67 static_assert(props_1.method_type() == MethodType::kBidirectionalStreaming); in TEST() 73 static_assert(props_2.method_type() == MethodType::kClientStreaming); in TEST() 79 static_assert(props_3.method_type() == MethodType::kUnary); in TEST()
|
/external/rust/crates/grpcio-sys/grpc/src/cpp/server/ |
D | server_cc.cc | 398 ctx_->ctx.set_server_rpc_info(method_->name(), method_->method_type(), in Run() 473 has_request_payload_(method->method_type() == in SyncRequest() 475 method->method_type() == in SyncRequest() 533 has_request_payload_(method->method_type() == in CallbackRequest() 535 method->method_type() == in CallbackRequest() 642 ? req_->method_->method_type() in Run() 994 switch (method->method_type()) { in PayloadHandlingForMethod()
|
/external/rust/crates/grpcio-sys/grpc/spm-cpp-include/grpcpp/impl/codegen/ |
D | rpc_method.h | 66 RpcType method_type() const { return method_type_; } in method_type() function
|
D | server_interface.h | 263 registered_method->name(), registered_method->method_type()) { in NoPayloadAsyncRequest() 281 registered_method->name(), registered_method->method_type()), in PayloadAsyncRequest()
|
/external/rust/crates/grpcio-sys/grpc/include/grpcpp/impl/codegen/ |
D | rpc_method.h | 66 RpcType method_type() const { return method_type_; } in method_type() function
|
D | server_interface.h | 263 registered_method->name(), registered_method->method_type()) { in NoPayloadAsyncRequest() 281 registered_method->name(), registered_method->method_type()), in PayloadAsyncRequest()
|
/external/apache-commons-bcel/src/main/java/org/apache/bcel/verifier/structurals/ |
D | InstConstraintVisitor.java | 412 Type method_type = mg.getType(); in visitReturnInstruction() local 413 if (method_type == Type.BOOLEAN || in visitReturnInstruction() 414 method_type == Type.BYTE || in visitReturnInstruction() 415 method_type == Type.SHORT || in visitReturnInstruction() 416 method_type == Type.CHAR) { in visitReturnInstruction() 417 method_type = Type.INT; in visitReturnInstruction() 421 if (method_type != Type.VOID) { in visitReturnInstruction() 429 if (method_type == Type.VOID) { in visitReturnInstruction() 448 if (! ( method_type.equals( stack().peek() ))) { in visitReturnInstruction() 449 …traintViolated(o, "Current method has return type of '"+mg.getType()+"' expecting a '"+method_type+ in visitReturnInstruction()
|
/external/grpc-grpc/src/cpp/server/ |
D | server_cc.cc | 148 method->method_type() == internal::RpcMethod::NORMAL_RPC || in SyncRequest() 149 method->method_type() == internal::RpcMethod::SERVER_STREAMING), in SyncRequest() 481 switch (method->method_type()) { in PayloadHandlingForMethod()
|
/external/pigweed/pw_rpc/pwpb/public/pw_rpc/pwpb/internal/ |
D | method.h | 264 MethodType method_type, in CallUnaryRequest() argument 273 internal::PwpbServerCall server_writer(context.ClaimLocked(), method_type); in CallUnaryRequest()
|