Home
last modified time | relevance | path

Searched refs:serverInfo (Results 1 – 4 of 4) sorted by relevance

/device/google/trout/hal/vehicle/2.0/
DVirtualizationGrpcServer.cpp26 auto serverInfo = vhal_impl::VirtualizedVhalServerInfo::fromCommandLine(argc, argv, &err); in main() local
27 CHECK(serverInfo.has_value()) << err; in main()
29 auto server = vhal_impl::makeGrpcVehicleServer(*serverInfo); in main()
DVirtualizedVehicleService.cpp44 auto serverInfo = vhal_impl::VirtualizedVhalServerInfo::fromRoPropertyStore(); in main() local
45 CHECK(serverInfo.has_value()) << "Invalid server CID/port combination"; in main()
46 LOG(INFO) << "Connecting to vsock server at " << serverInfo->vsock.str(); in main()
49 auto connector = vhal_impl::makeGrpcVehicleClient(serverInfo->getServerUri()); in main()
DGrpcVehicleServer.cpp42 explicit GrpcVehicleServerImpl(const VirtualizedVhalServerInfo& serverInfo) in GrpcVehicleServerImpl() argument
43 : mServiceAddr(serverInfo.getServerUri()), in GrpcVehicleServerImpl()
45 serverInfo.powerStateMarkerFilePath)), in GrpcVehicleServerImpl()
46 mPowerStateListener(serverInfo.powerStateSocket, serverInfo.powerStateMarkerFilePath) { in GrpcVehicleServerImpl()
128 GrpcVehicleServerPtr makeGrpcVehicleServer(const VirtualizedVhalServerInfo& serverInfo) { in makeGrpcVehicleServer() argument
129 return std::make_unique<GrpcVehicleServerImpl>(serverInfo); in makeGrpcVehicleServer()
DGrpcVehicleServer.h49 GrpcVehicleServerPtr makeGrpcVehicleServer(const VirtualizedVhalServerInfo& serverInfo);