/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 | SslCredentialsTest.cs | 59 Ports = { { Host, ServerPort.PickUnused, serverCredentials } } in Init() 68 … channel = new Channel(Host, server.Ports.Single().BoundPort, clientCredentials, options); 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 | ServerRunners.cs | 85 Ports = { new ServerPort("[::]", config.Port, credentials) } in CreateStarted() 131 return server.Ports.Single().BoundPort;
|
/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/swiftshader/third_party/llvm-7.0/llvm/lib/Target/PowerPC/ |
D | PPCScheduleP9.td | 51 // Issue Ports 61 //Even Exec Ports 65 //Odd Exec Ports 120 // Issue Ports
|
/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/selinux/policycoreutils/po/ |
D | de.po | 548 msgstr "Konnte Ports nicht auflisten" 568 msgstr "Konnte Ports nicht auflisten" 1763 msgid "<b>TCP Ports</b>" 1764 msgstr "<b>TCP-Ports</b>" 1773 msgstr "Erlaubt %s das Binden an alle UDP-Ports" 1784 msgid "Unreserved Ports (>1024)" 1785 msgstr "Nicht reservierte Ports (>1024)" 1792 "Geben Sie eine kommagetrennte Liste mit UDP-Ports oder Portbereichen ein, an " 1797 msgid "Select Ports" 1798 msgstr "Ports auswählen" [all …]
|
/external/grpc-grpc/examples/csharp/HelloworldXamarin/Droid/ |
D | MainActivity.cs | 53 Ports = { new ServerPort("localhost", Port, ServerCredentials.Insecure) } in SayHello()
|
/external/u-boot/drivers/net/phy/ |
D | Kconfig | 57 hex "Bitmask of PHY Ports" 60 hex "Bitmask of PHYless serdes Ports"
|
/external/grpc-grpc/doc/csharp/ |
D | server_reflection.md | 27 Ports = { { "localhost", 50051, ServerCredentials.Insecure } }
|