| 48 | } |
| 49 | |
| 50 | ::grpc::Status GRPCService::GetDeviceHandles(::grpc::ServerContext* context, |
| 51 | const GetDeviceHandlesRequest* arg, |
| 52 | GetDeviceHandlesResponse* result) { |
| 53 | return DelegateRPC([this, arg, result]() { |
| 54 | return service_->GetDeviceHandles(arg, result); |
| 55 | }); |
| 56 | } |
| 57 | |
| 58 | ::grpc::Status GRPCService::Compile(::grpc::ServerContext* /*context*/, |
| 59 | const CompileRequest* arg, |
nothing calls this directly
no test coverage detected