Lines Matching refs:channel
142 fn channel_execute<T, R, S>(channel: &mut T, req: R) -> binder::Result<S> in channel_execute()
178 let rsp_data = channel.execute(&req_data)?; in channel_execute()
234 fn channel(&self) -> MutexGuard<T>; in channel() method
243 channel_execute(self.channel().deref_mut(), req) in execute()
248 pub fn send_hal_info<T: SerializedChannel>(channel: &mut T) -> binder::Result<()> { in send_hal_info()
256 let _rsp: kmr_wire::SetHalInfoResponse = channel_execute(channel, req)?; in send_hal_info()
262 channel: &mut T, in send_boot_info()
266 let _rsp: kmr_wire::SetBootInfoResponse = channel_execute(channel, req)?; in send_boot_info()
272 channel: &mut T, in send_attest_ids()
277 let _rsp: kmr_wire::SetAttestationIdsResponse = channel_execute(channel, req)?; in send_attest_ids()
282 pub fn early_boot_ended<T: SerializedChannel>(channel: &mut T) -> binder::Result<()> { in early_boot_ended()
285 let _rsp: kmr_wire::EarlyBootEndedResponse = channel_execute(channel, req)?; in early_boot_ended()