Home
last modified time | relevance | path

Searched refs:FindMethodByName (Results 1 – 11 of 11) sorted by relevance

/external/grpc-grpc/test/cpp/end2end/
Dproto_server_reflection_test.cc94 desc_pool_->FindMethodByName(method); in CompareMethod()
96 ref_desc_pool_->FindMethodByName(method); in CompareMethod()
/external/protobuf/csharp/src/Google.Protobuf/Reflection/
DServiceDescriptor.cs76 public MethodDescriptor FindMethodByName(String name) in FindMethodByName() method in Google.Protobuf.Reflection.ServiceDescriptor
/external/grpc-grpc/test/cpp/util/
Dproto_file_parser.cc190 desc_pool_->FindMethodByName(full_method_name); in GetMessageTypeFromMethod()
209 desc_pool_->FindMethodByName(full_method_name); in IsStreaming()
Dgrpc_tool.cc393 desc_pool.FindMethodByName(method_name); in ListServices()
408 desc_pool.FindMethodByName(service_name); in ListServices()
/external/protobuf/src/google/protobuf/
Ddescriptor_unittest.cc1443 TEST_F(ServiceDescriptorTest, FindMethodByName) { in TEST_F() argument
1444 EXPECT_EQ(foo_ , service_ ->FindMethodByName("Foo")); in TEST_F()
1445 EXPECT_EQ(bar_ , service_ ->FindMethodByName("Bar")); in TEST_F()
1446 EXPECT_EQ(foo2_, service2_->FindMethodByName("Foo")); in TEST_F()
1447 EXPECT_EQ(baz2_, service2_->FindMethodByName("Baz")); in TEST_F()
1449 EXPECT_TRUE(service_ ->FindMethodByName("NoSuchMethod") == NULL); in TEST_F()
1450 EXPECT_TRUE(service_ ->FindMethodByName("Baz" ) == NULL); in TEST_F()
1451 EXPECT_TRUE(service2_->FindMethodByName("Bar" ) == NULL); in TEST_F()
2712 const MethodDescriptor* method = service->FindMethodByName("Foo"); in TEST()
3138 const MethodDescriptor* method = service->FindMethodByName("Method"); in TEST()
[all …]
Ddescriptor.h1020 const MethodDescriptor* FindMethodByName(const string& name) const;
1418 const MethodDescriptor* FindMethodByName(const string& name) const;
Ddescriptor.cc1263 const MethodDescriptor* DescriptorPool::FindMethodByName( in FindMethodByName() function in google::protobuf::DescriptorPool
1466 ServiceDescriptor::FindMethodByName(const string& key) const { in FindMethodByName() function in google::protobuf::ServiceDescriptor
/external/protobuf/python/google/protobuf/internal/
Ddescriptor_test.py148 method_descriptor = service_descriptor.FindMethodByName("Foo")
334 method_descriptor = service_descriptor.FindMethodByName("Method")
/external/grpc-grpc/doc/
Dserver_reflection_tutorial.md178 desc_pool->FindMethodByName("helloworld.Greeter.SayHello");
/external/protobuf/python/google/protobuf/
Ddescriptor.py725 def FindMethodByName(self, name): member in ServiceDescriptor
/external/protobuf/src/google/protobuf/compiler/cpp/
Dcpp_unittest.cc1252 foo_(descriptor_->FindMethodByName("Foo")), in GeneratedServiceTest()
1253 bar_(descriptor_->FindMethodByName("Bar")), in GeneratedServiceTest()