Home
last modified time | relevance | path

Searched refs:echo_client (Results 1 – 6 of 6) sorted by relevance

/developtools/hdc/hdc_rust/src/daemon/
Ddaemon_unity.rs34 async fn echo_client(session_id: u32, channel_id: u32, message: &str) { in echo_client() function
45 echo_client(session_id, channel_id, "Set device run mode successful.").await; in echo_device_mode_result()
51 echo_client(session_id, channel_id, msg.as_str()).await; in echo_device_mode_result()
58 echo_client(session_id, channel_id, "Reboot successful.").await; in echo_reboot_result()
61 echo_client(session_id, channel_id, msg.as_str()).await; in echo_reboot_result()
73 echo_client(session_id, channel_id, "Set root run mode successful.").await; in echo_root_run_mode_result()
79 echo_client(session_id, channel_id, msg.as_str()).await; in echo_root_run_mode_result()
147 echo_client(session_id, channel_id, "Remount successful.").await; in remount_device()
149 echo_client(session_id, channel_id, "Remount failed.").await; in remount_device()
215 echo_client(session_id, channel_id, "[Empty]").await; in do_jdwp_list()
[all …]
Dtask.rs324 hdc::common::hdctransfer::echo_client( in dispatch_task()
/developtools/hdc/hdc_rust/src/host/
Dhost_app.rs171 self.echo_client(message); in check_install_continue()
173 self.echo_client(String::from("AppMod finish")); in check_install_continue()
182 fn echo_client(&mut self, message: String) { in echo_client() method
/developtools/hdc/hdc_rust/src/common/
Dforward.rs275 echo_client(session_id, channel_id, "Forwardport result: Ok").await; in check_command()
299 echo_client(session_id, channel_id, "Forwardport result: Failed").await; in check_command()
539 echo_client(session_id, channel_id, "Unix pipe bind failed").await; in server_socket_bind_listen()
545 echo_client(session_id, channel_id, "Unix pipe listen failed").await; in server_socket_bind_listen()
699 echo_client( in setup_jdwp_point()
723 async fn echo_client(session_id: u32, channel_id: u32, message: &str) { in echo_client() function
747 echo_client(session_id, channel_id, "localabstract connect fail").await; in daemon_connect_pipe()
1090 echo_client(session_id, channel_id, "forward arguments parse is fail").await; in print_error_info()
1092 echo_client(session_id, channel_id, error.as_str()).await; in print_error_info()
Dhdcfile.rs115 hdctransfer::echo_client(session_id, channel_id, err_msg.as_bytes().to_vec()).await; in check_local_path()
121 hdctransfer::echo_client(session_id, channel_id, msg.as_bytes().to_vec()).await; in echo_finish()
320 hdctransfer::echo_client( in on_all_transfer_finish()
390 hdctransfer::echo_client( in command_dispatch()
Dhdctransfer.rs385 pub async fn echo_client(session_id: u32, channel_id: u32, payload: Vec<u8>) { in echo_client() function