Lines Matching refs:req
156 fn channel_execute<T, R, S>(channel: &mut T, req: R) -> binder::Result<S> in channel_execute()
166 req.to_cbor_value().map_err(failed_cbor)?, in channel_execute()
252 fn execute<R, S>(&self, req: R) -> binder::Result<S> in execute()
257 channel_execute(self.channel().deref_mut(), req) in execute()
263 let req = env::populate_hal_info().map_err(|e| { in send_hal_info() localVariable
269 info!("HAL->TA: environment info is {:?}", req); in send_hal_info()
270 let _rsp: kmr_wire::SetHalInfoResponse = channel_execute(channel, req)?; in send_hal_info()
279 let req = kmr_wire::SetHalVersionRequest { aidl_version }; in send_hal_info() localVariable
281 let result: binder::Result<kmr_wire::SetHalVersionResponse> = channel_execute(channel, req); in send_hal_info()
292 req: kmr_wire::SetBootInfoRequest, in send_boot_info()
294 info!("boot->TA: boot info is {:?}", req); in send_boot_info()
295 let _rsp: kmr_wire::SetBootInfoResponse = channel_execute(channel, req)?; in send_boot_info()
304 let req = kmr_wire::SetAttestationIdsRequest { ids }; in send_attest_ids() localVariable
305 info!("provision->attestation IDs are {:?}", req); in send_attest_ids()
306 let _rsp: kmr_wire::SetAttestationIdsResponse = channel_execute(channel, req)?; in send_attest_ids()
313 let req = kmr_wire::EarlyBootEndedRequest {}; in early_boot_ended() localVariable
314 let _rsp: kmr_wire::EarlyBootEndedResponse = channel_execute(channel, req)?; in early_boot_ended()