OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ServiceDescriptor
(Results
1 - 19
of
19
) sorted by null
/external/protobuf/java/src/main/java/com/google/protobuf/
BlockingService.java
43
Descriptors.
ServiceDescriptor
getDescriptorForType();
Service.java
50
* Get the {@code
ServiceDescriptor
} describing this service and its methods.
52
Descriptors.
ServiceDescriptor
getDescriptorForType();
Descriptors.java
87
public List<
ServiceDescriptor
> getServices() {
155
public
ServiceDescriptor
findServiceByName(String name) {
165
if (result != null && result instanceof
ServiceDescriptor
&&
167
return (
ServiceDescriptor
)result;
326
private final
ServiceDescriptor
[] services;
352
services = new
ServiceDescriptor
[proto.getServiceCount()];
354
services[i] = new
ServiceDescriptor
(proto.getService(i), this, i);
370
for (final
ServiceDescriptor
service : services) {
[
all
...]
/external/protobuf/src/google/protobuf/compiler/python/
python_generator.h
50
class
ServiceDescriptor
;
121
void PrintServiceDescriptor(const
ServiceDescriptor
& descriptor) const;
122
void PrintServiceClass(const
ServiceDescriptor
& descriptor) const;
123
void PrintServiceStub(const
ServiceDescriptor
& descriptor) const;
134
const
ServiceDescriptor
& descriptor) const;
python_generator.cc
434
const
ServiceDescriptor
& descriptor) const {
441
"$service_name$ = descriptor.
ServiceDescriptor
(\n",
494
void Generator::PrintServiceClass(const
ServiceDescriptor
& descriptor) const {
507
void Generator::PrintServiceStub(const
ServiceDescriptor
& descriptor) const {
[
all
...]
/external/protobuf/src/google/protobuf/
descriptor.h
70
class
ServiceDescriptor
;
675
// Describes an RPC service. To get the
ServiceDescriptor
for a service,
678
//
ServiceDescriptor
. Use DescriptorPool to construct your own descriptors.
679
class LIBPROTOBUF_EXPORT
ServiceDescriptor
{
726
// of Allocate<
ServiceDescriptor
>() and AllocateArray<
ServiceDescriptor
>() in
730
ServiceDescriptor
() {}
734
GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(
ServiceDescriptor
);
738
// a service, first get its
ServiceDescriptor
, then call
739
//
ServiceDescriptor
::FindMethodByName(). Use DescriptorPool to construct you
[
all
...]
service.h
116
class
ServiceDescriptor
; // descriptor.h
138
// Get the
ServiceDescriptor
describing this service and its methods.
139
virtual const
ServiceDescriptor
* GetDescriptor() = 0;
descriptor.cc
230
const
ServiceDescriptor
* service_descriptor;
255
CONSTRUCTOR(
ServiceDescriptor
, SERVICE , service_descriptor )
[
all
...]
descriptor_unittest.cc
255
const
ServiceDescriptor
* foo_service_;
261
const
ServiceDescriptor
* bar_service_;
[
all
...]
/external/protobuf/src/google/protobuf/compiler/cpp/
cpp_service.h
57
explicit ServiceGenerator(const
ServiceDescriptor
* descriptor,
107
const
ServiceDescriptor
* descriptor_;
cpp_service.cc
45
ServiceGenerator::ServiceGenerator(const
ServiceDescriptor
* descriptor,
83
"static const ::google::protobuf::
ServiceDescriptor
* descriptor();\n"
92
"const ::google::protobuf::
ServiceDescriptor
* GetDescriptor();\n"
178
"const ::google::protobuf::
ServiceDescriptor
* $classname$::descriptor() {\n"
183
"const ::google::protobuf::
ServiceDescriptor
* $classname$::GetDescriptor() {\n"
cpp_unittest.cc
[
all
...]
/external/protobuf/src/google/protobuf/compiler/java/
java_service.h
54
explicit ServiceGenerator(const
ServiceDescriptor
* descriptor);
103
const
ServiceDescriptor
* descriptor_;
java_helpers.h
84
inline string ClassName(const
ServiceDescriptor
* descriptor) {
java_service.cc
46
ServiceGenerator::ServiceGenerator(const
ServiceDescriptor
* descriptor)
74
" com.google.protobuf.Descriptors.
ServiceDescriptor
\n"
95
"public final com.google.protobuf.Descriptors.
ServiceDescriptor
\n"
/external/protobuf/src/google/protobuf/compiler/javamicro/
javamicro_helpers.h
85
const
ServiceDescriptor
* descriptor) {
/external/protobuf/python/google/protobuf/
descriptor.py
482
class
ServiceDescriptor
(_NestedDescriptorBase):
499
super(
ServiceDescriptor
, self).__init__(
523
super(
ServiceDescriptor
, self).CopyToProto(proto)
533
containing_service: (
ServiceDescriptor
) The service that contains this
/external/protobuf/java/src/test/java/com/google/protobuf/
DescriptorsTest.java
42
import com.google.protobuf.Descriptors.
ServiceDescriptor
;
119
ServiceDescriptor
service = TestService.getDescriptor();
317
ServiceDescriptor
service = TestService.getDescriptor();
374
ServiceDescriptor
service =
/external/protobuf/python/google/protobuf/internal/
descriptor_test.py
95
self.my_service = descriptor.
ServiceDescriptor
(
Completed in 523 milliseconds