Home
last modified time | relevance | path

Searched refs:rpc (Results 1 – 13 of 13) sorted by relevance

/device/google/cuttlefish/host/commands/control_env_proxy_server/
Dcontrol_env_proxy.proto22 rpc CallUnaryMethod (CallUnaryMethodRequest) returns (CallUnaryMethodReply) {}
23 rpc ListServices (google.protobuf.Empty) returns (ListServicesReply) {}
24 rpc ListMethods (ListMethodsRequest) returns (ListMethodsReply) {}
25 rpc ListReqResType (ListReqResTypeRequest) returns (ListReqResTypeReply) {}
26 rpc TypeInformation (TypeInformationRequest) returns (TypeInformationReply) {}
/device/google/trout/hal/vehicle/2.0/proto/
DVehicleServer.proto49 rpc GetAllPropertyConfig(google.protobuf.Empty) returns (stream VehiclePropConfig) {}
52 rpc SetProperty(WrappedVehiclePropValue) returns (VehicleHalCallStatus) {}
55 rpc SendAllPropertyValuesToStream(google.protobuf.Empty) returns (google.protobuf.Empty) {}
58 rpc StartPropertyValuesStream(google.protobuf.Empty) returns (stream WrappedVehiclePropValue) {}
/device/google/trout/hal/dumpstate/1.1/proto/
DDumpstateServer.proto36 rpc GetSystemLogs(google.protobuf.Empty) returns (stream DumpstateBuffer) {}
38 rpc GetAvailableServices(google.protobuf.Empty) returns (ServiceNameList) {}
40 rpc GetServiceLogs(ServiceLogRequest) returns (stream DumpstateBuffer) {}
/device/google/trout/tools/tracing/proto/
DTracingVM.proto42 rpc StartTracing(StartTracingRequest) returns (RequestStatus) {}
44 rpc StopTracing(TracingSessionIdentifier) returns (RequestStatus) {}
46 rpc GetTracingFile(TracingSessionIdentifier) returns (stream TracingFileBuffer) {}
/device/google/cuttlefish/host/commands/secure_env/rust/
Dlib.rs29 use kmr_ta_nonsecure::{rpc, soft};
31 use kmr_wire::rpc::MINIMUM_SUPPORTED_KEYS_IN_CSR;
126 let rpc: Box<dyn kmr_ta::device::RetrieveRpcArtifacts> = in ta_main() localVariable
151 rpc, in ta_main()
Dtpm.rs90 impl crate::rpc::DeriveBytes for TpmHmac {
197 pub type RpcArtifacts = crate::rpc::Artifacts<TpmHmac>;
/device/google/cuttlefish/host/commands/gnss_grpc_proxy/
Dgnss_grpc_proxy.proto26 rpc SendNmea (SendNmeaRequest) returns (SendNmeaReply) {}
29 rpc SendGps (SendGpsRequest) returns (SendGpsReply) {}
32 rpc SendGpsVector (SendGpsCoordinatesRequest) returns (SendGpsCoordinatesReply) {}
/device/google/cuttlefish/host/commands/openwrt_control_server/
Dopenwrt_control.proto22 rpc LuciRpc (LuciRpcRequest) returns (LuciRpcReply) {}
23 rpc OpenwrtIpaddr (google.protobuf.Empty) returns (OpenwrtIpaddrReply) {}
/device/google/cuttlefish/host/commands/screen_recording_server/
Dscreen_recording.proto22 rpc StartRecording (google.protobuf.Empty) returns (StartRecordingResponse) {}
23 rpc StopRecording (google.protobuf.Empty) returns (StopRecordingResponse) {}
/device/google/cuttlefish/host/commands/echo_server/
Decho.proto20 rpc Echo (EchoRequest) returns (EchoReply) {}
/device/google/cuttlefish/host/commands/casimir_control_server/
Dcasimir_control.proto22 rpc SendApdu (SendApduRequest) returns (SendApduReply) {}
/device/google/trout/hal/audiocontrol/aidl/1.0/proto/
DAudioFocusControl.proto39 rpc AudioRequests(AudioFocusControlMessage) returns (google.protobuf.Empty) {}
/device/google/cuttlefish/guest/hals/keymint/rust/src/
Dkeymint_hal_main.rs130 let rpc_service = kmr_hal::rpc::Device::new_as_binder(channel.clone()); in inner_main()