Searched refs:grpc_root_server_port (Results 1 – 3 of 3) sorted by relevance
/packages/modules/Bluetooth/system/blueberry/tests/gd/cert/ |
D | gd_device.py | 145 …def __init__(self, grpc_port: str, grpc_root_server_port: str, signal_port: str, cmd: List[str], l… 164 self.grpc_root_server_port = int(grpc_root_server_port) 217 if self.grpc_root_server_port != -1: 219 … self.grpc_root_server_channel = grpc.insecure_channel("localhost:%d" % self.grpc_root_server_port) 242 if self.grpc_root_server_port != -1: 277 if self.grpc_root_server_port != -1: 314 …def __init__(self, grpc_port: str, grpc_root_server_port: str, signal_port: str, cmd: List[str], l… 316 …super().__init__(grpc_port, grpc_root_server_port, signal_port, cmd, label, MOBLY_CONTROLLER_CONFI… 337 ports_needed = [self.grpc_port, self.grpc_root_server_port 338 ] if self.grpc_root_server_port != -1 else [self.grpc_port] [all …]
|
/packages/modules/Bluetooth/system/gd/facade/ |
D | grpc_root_server.h | 32 void StartServer(const std::string& address, int grpc_root_server_port, int grpc_port);
|
D | grpc_root_server.cc | 155 void GrpcRootServer::StartServer(const std::string& address, int grpc_root_server_port, int grpc_po… in StartServer() argument 159 std::string listening_port = address + ":" + std::to_string(grpc_root_server_port); in StartServer()
|