/external/chromium-trace/catapult/third_party/pyserial/serial/ |
D | serialcli.py | 11 import System.IO.Ports 17 return System.IO.Ports.SerialPort.GetPortNames()[portnum] 40 self._port_handle = System.IO.Ports.SerialPort(self.portstr) 62 self._port_handle.ReadTimeout = System.IO.Ports.SerialPort.InfiniteTimeout 70 self._port_handle.WriteTimeout = System.IO.Ports.SerialPort.InfiniteTimeout 94 …self._port_handle.Parity = getattr(System.IO.Ports.Parity, 'None') # reserved keyword in Py3k 96 self._port_handle.Parity = System.IO.Ports.Parity.Even 98 self._port_handle.Parity = System.IO.Ports.Parity.Odd 100 self._port_handle.Parity = System.IO.Ports.Parity.Mark 102 self._port_handle.Parity = System.IO.Ports.Parity.Space [all …]
|
/external/grpc-grpc/src/csharp/Grpc.Core.Tests/ |
D | ServerTest.cs | 36 … Ports = { new ServerPort("localhost", ServerPort.PickUnused, ServerCredentials.Insecure) } in StartAndShutdownServer() 47 … Ports = { new ServerPort("localhost", ServerPort.PickUnused, ServerCredentials.Insecure) } in StartAndKillServer() 58 … Ports = { new ServerPort("localhost", ServerPort.PickUnused, ServerCredentials.Insecure) } in PickUnusedPort() 61 var boundPort = server.Ports.Single(); in PickUnusedPort() 75 Ports = { in StartThrowsWithUnboundPorts() 89 … Ports = { new ServerPort("localhost", ServerPort.PickUnused, ServerCredentials.Insecure) } in CannotModifyAfterStarted() 92 …Assert.Throws(typeof(InvalidOperationException), () => server.Ports.Add("localhost", 9999, ServerC… in CannotModifyAfterStarted()
|
D | MockServiceHelper.cs | 134 Ports = { { Host, ServerPort.PickUnused, ServerCredentials.Insecure } } in GetServer() 147 …channel = new Channel(Host, GetServer().Ports.Single().BoundPort, ChannelCredentials.Insecure, cha… in GetChannel()
|
/external/grpc-grpc/src/csharp/Grpc.IntegrationTesting/ |
D | MetadataCredentialsTest.cs | 48 … Ports = { { Host, ServerPort.PickUnused, TestCredentials.CreateSslServerCredentials() } } in Init() 76 … channel = new Channel(Host, server.Ports.Single().BoundPort, channelCredentials, options); in MetadataCredentials() 85 …channel = new Channel(Host, server.Ports.Single().BoundPort, TestCredentials.CreateSslCredentials(… in MetadataCredentials_PerCall() 110 … channel = new Channel(Host, server.Ports.Single().BoundPort, channelCredentials, options); in MetadataCredentials_Composed() 120 …channel = new Channel(Host, server.Ports.Single().BoundPort, TestCredentials.CreateSslCredentials(… in MetadataCredentials_ComposedPerCall() 145 … channel = new Channel(Host, server.Ports.Single().BoundPort, channelCredentials, options); in MetadataCredentials_InterceptorLeavesMetadataEmpty() 162 … channel = new Channel(Host, server.Ports.Single().BoundPort, channelCredentials, options); in MetadataCredentials_InterceptorThrows()
|
D | InteropServer.cs | 78 server.Ports.Add(host, port, TestCredentials.CreateSslServerCredentials()); in Run() 82 server.Ports.Add(host, options.Port, ServerCredentials.Insecure); in Run()
|
D | QpsWorker.cs | 75 Ports = { new ServerPort(host, options.DriverPort, ServerCredentials.Insecure )} in RunAsync() 77 int boundPort = server.Ports.Single().BoundPort; in RunAsync()
|
D | GeneratedServiceBaseTest.cs | 46 Ports = { { Host, ServerPort.PickUnused, SslServerCredentials.Insecure } } in Init() 49 … channel = new Channel(Host, server.Ports.Single().BoundPort, ChannelCredentials.Insecure); in Init()
|
D | InteropClientServerTest.cs | 48 … Ports = { { Host, ServerPort.PickUnused, TestCredentials.CreateSslServerCredentials() } } in Init() 56 int port = server.Ports.Single().BoundPort; in Init()
|
D | CustomErrorDetailsTest.cs | 52 Ports = { { Host, ServerPort.PickUnused, ServerCredentials.Insecure } } in Init() 56 … channel = new Channel(Host, server.Ports.Single().BoundPort, ChannelCredentials.Insecure); in Init()
|
D | SslCredentialsTest.cs | 59 Ports = { { Host, ServerPort.PickUnused, serverCredentials } } in Init() 68 … channel = new Channel(Host, server.Ports.Single().BoundPort, clientCredentials, options); in Init()
|
D | ServerRunners.cs | 85 Ports = { new ServerPort("[::]", config.Port, credentials) } in CreateStarted() 131 return server.Ports.Single().BoundPort;
|
/external/rust/crates/grpcio-sys/grpc/test/distrib/csharp/DistribTest/ |
D | Program.cs | 35 … Ports = { new ServerPort("localhost", ServerPort.PickUnused, ServerCredentials.Insecure) } in Main() 39 …Channel channel = new Channel("localhost", server.Ports.Single().BoundPort, ChannelCredentials.Ins… in Main()
|
/external/grpc-grpc/src/csharp/Grpc.HealthCheck.Tests/ |
D | HealthClientServerTest.cs | 49 Ports = { { Host, ServerPort.PickUnused, ServerCredentials.Insecure } } in Init() 52 … channel = new Channel(Host, server.Ports.Single().BoundPort, ChannelCredentials.Insecure); in Init()
|
/external/grpc-grpc/src/csharp/Grpc.Reflection.Tests/ |
D | ReflectionClientServerTest.cs | 50 Ports = { { Host, ServerPort.PickUnused, ServerCredentials.Insecure } } in Init() 53 … channel = new Channel(Host, server.Ports.Single().BoundPort, ChannelCredentials.Insecure); in Init()
|
/external/grpc-grpc/src/csharp/Grpc.Examples.Tests/ |
D | MathClientServerTests.cs | 47 Ports = { { Host, ServerPort.PickUnused, ServerCredentials.Insecure } } in Init() 50 … channel = new Channel(Host, server.Ports.Single().BoundPort, ChannelCredentials.Insecure); in Init()
|
/external/grpc-grpc/src/csharp/Grpc.Examples.MathServer/ |
D | MathServer.cs | 34 Ports = { { Host, Port, ServerCredentials.Insecure } } in Main()
|
/external/grpc-grpc/examples/csharp/RouteGuide/RouteGuideServer/ |
D | Program.cs | 35 Ports = { new ServerPort("localhost", Port, ServerCredentials.Insecure) } in Main()
|
/external/grpc-grpc/examples/csharp/HelloworldLegacyCsproj/GreeterServer/ |
D | Program.cs | 40 Ports = { new ServerPort("localhost", Port, ServerCredentials.Insecure) } in Main()
|
/external/grpc-grpc/examples/csharp/Helloworld/GreeterServer/ |
D | Program.cs | 40 Ports = { new ServerPort("localhost", Port, ServerCredentials.Insecure) } in Main()
|
/external/chromium-trace/catapult/third_party/pyserial/serial/tools/ |
D | list_ports_windows.py | 127 Ports = serial.to_bytes([80, 111, 114, 116, 115]) # "Ports" variable 134 Ports,
|
/external/grpc-grpc/examples/csharp/HelloworldXamarin/iOS/ |
D | ViewController.cs | 62 Ports = { new ServerPort("localhost", Port, ServerCredentials.Insecure) } in SayHello()
|
/external/grpc-grpc/examples/csharp/HelloworldXamarin/Droid/ |
D | MainActivity.cs | 53 Ports = { new ServerPort("localhost", Port, ServerCredentials.Insecure) } in SayHello()
|
/external/arm-trusted-firmware/docs/plat/ |
D | index.rst | 1 Platform Ports
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/ |
D | PPCScheduleP9.td | 69 // Issue Ports 79 //Even Exec Ports 83 //Odd Exec Ports 167 // Issue Ports
|
/external/llvm-project/llvm/lib/Target/PowerPC/ |
D | PPCScheduleP9.td | 70 // Issue Ports 80 //Even Exec Ports 84 //Odd Exec Ports 168 // Issue Ports
|