Home
last modified time | relevance | path

Searched refs:FileContainingSymbol (Results 1 – 5 of 5) sorted by relevance

/third_party/grpc/src/csharp/Grpc.Reflection.Tests/
DSymbolRegistryTest.cs39 public void FileContainingSymbol() in FileContainingSymbol() method in Grpc.Reflection.Tests.SymbolRegistryTest
41 …Google.Protobuf.WellKnownTypes.Duration.Descriptor.File, registry.FileContainingSymbol("google.pro… in FileContainingSymbol()
42 …Assert.AreSame(ReflectionReflection.Descriptor, registry.FileContainingSymbol("grpc.reflection.v1a… in FileContainingSymbol()
43 …Assert.AreSame(ReflectionReflection.Descriptor, registry.FileContainingSymbol("grpc.reflection.v1a… in FileContainingSymbol()
44 …Assert.AreSame(ReflectionReflection.Descriptor, registry.FileContainingSymbol("grpc.reflection.v1a… in FileContainingSymbol()
45 Assert.IsNull(registry.FileContainingSymbol("somepackage.Nonexistent")); in FileContainingSymbol()
DReflectionClientServerTest.cs87 public async Task FileContainingSymbol() in FileContainingSymbol() method in Grpc.Reflection.Tests.ReflectionClientServerTest
91 FileContainingSymbol = "grpc.reflection.v1alpha.ServerReflection" in FileContainingSymbol()
102 FileContainingSymbol = "somepackage.Nonexistent" in FileContainingSymbol_NotFound()
/third_party/grpc/src/csharp/Grpc.Reflection/
DReflectionServiceImpl.cs81 case ServerReflectionRequest.MessageRequestOneofCase.FileContainingSymbol: in ProcessRequest()
82 return FileContainingSymbol(request.FileContainingSymbol); in ProcessRequest()
109 ServerReflectionResponse FileContainingSymbol(string symbol) in FileContainingSymbol() method in Grpc.Reflection.ReflectionServiceImpl
111 FileDescriptor file = symbolRegistry.FileContainingSymbol(symbol); in FileContainingSymbol()
DReflection.cs111 case MessageRequestOneofCase.FileContainingSymbol: in ServerReflectionRequest()
112 FileContainingSymbol = other.FileContainingSymbol; in ServerReflectionRequest()
166 public string FileContainingSymbol { property in Grpc.Reflection.V1Alpha.ServerReflectionRequest
167 …get { return messageRequestCase_ == MessageRequestOneofCase.FileContainingSymbol ? (string) messag…
170 messageRequestCase_ = MessageRequestOneofCase.FileContainingSymbol;
230 FileContainingSymbol = 4, enumerator
262 if (FileContainingSymbol != other.FileContainingSymbol) return false; in Equals()
275 …if (messageRequestCase_ == MessageRequestOneofCase.FileContainingSymbol) hash ^= FileContainingSym… in GetHashCode()
304 if (messageRequestCase_ == MessageRequestOneofCase.FileContainingSymbol) { in WriteTo()
306 output.WriteString(FileContainingSymbol); in WriteTo()
[all …]
DSymbolRegistry.cs64 public FileDescriptor FileContainingSymbol(string symbol) in FileContainingSymbol() method in Grpc.Reflection.SymbolRegistry