Lines Matching refs:stub
75 fn on_remote_request(stub: &dyn IDeviceStatus, code: u32, data: &BorrowedMsgParcel<'_>,
83 info!(LOG_LABEL, "Call stub.enable()");
84 stub.enable(intention, data, reply)
87 info!(LOG_LABEL, "Call stub.disable()");
88 stub.disable(intention, data, reply)
91 info!(LOG_LABEL, "Call stub.start()");
92 stub.start(intention, data, reply)
95 info!(LOG_LABEL, "Call stub.stop()");
96 stub.stop(intention, data, reply)
99 info!(LOG_LABEL, "Call stub.add_watch()");
100 stub.add_watch(intention, id, data, reply)
103 info!(LOG_LABEL, "Call stub.remove_watch()");
104 stub.remove_watch(intention, id, data, reply)
107 info!(LOG_LABEL, "Call stub.set_param()");
108 stub.set_param(intention, id, data, reply)
111 info!(LOG_LABEL, "Call stub.get_param()");
112 stub.get_param(intention, id, data, reply)
115 info!(LOG_LABEL, "Call stub.control()");
116 stub.control(intention, id, data, reply)
123 stub: FusionIpcStub(on_remote_request),