/developtools/hdc/hdc_rust/src/host/ |
D | client.rs | 46 pub async fn run_client_mode(parsed_cmd: ParsedCommand) -> io::Result<()> { in run_client_mode() 103 async fn execute_command(&mut self) -> io::Result<()> { in execute_command() 129 pub async fn handshake(&mut self) -> io::Result<()> { in handshake() 159 async fn unity_task(&mut self) -> io::Result<()> { in unity_task() 164 async fn shell_task(&mut self) -> io::Result<()> { in shell_task() 225 async fn general_task(&mut self) -> io::Result<()> { in general_task() 240 async fn bug_report_task(&mut self) -> io::Result<()> { in bug_report_task() 252 async fn file_send_task(&mut self) -> io::Result<()> { in file_send_task() 267 async fn loop_recv(&mut self) -> io::Result<()> { in loop_recv() 288 async fn app_install_task(&mut self) -> io::Result<()> { in app_install_task() [all …]
|
D | task.rs | 40 pub async fn channel_task_dispatch(task_info: TaskInfo) -> io::Result<()> { in channel_task_dispatch() 93 async fn channel_hilog_task(task_info: TaskInfo) -> io::Result<()> { in channel_hilog_task() 113 async fn channel_bug_report_task(task_info: TaskInfo) -> io::Result<()> { in channel_bug_report_task() 128 async fn channel_file_task(task_info: TaskInfo) -> io::Result<()> { in channel_file_task() 185 async fn channel_unity_task(task_info: TaskInfo) -> io::Result<()> { in channel_unity_task() 208 async fn channel_shell_task(task_info: TaskInfo) -> io::Result<()> { in channel_shell_task() 258 async fn channel_connect_task(task_info: TaskInfo) -> io::Result<()> { in channel_connect_task() 331 async fn channel_list_targets_task(task_info: TaskInfo) -> io::Result<()> { in channel_list_targets_task() 348 ) -> io::Result<()> { in tcp_handle_deamon() 370 async fn session_task_dispatch(task_message: TaskMessage, session_id: u32) -> io::Result<()> { in session_task_dispatch() [all …]
|
D | server.rs | 31 pub async fn run_server_mode(addr_str: String) -> io::Result<()> { in run_server_mode() 115 async fn handle_client(stream: TcpStream) -> io::Result<()> { in handle_client()
|
/developtools/hdc/hdc_rust/src/daemon/ |
D | task.rs | 46 async fn daemon_shell_task(task_message: TaskMessage, session_id: u32) -> io::Result<()> { in daemon_shell_task() 95 async fn daemon_channel_close(task_message: TaskMessage, session_id: u32) -> io::Result<()> { in daemon_channel_close() 110 async fn daemon_file_task(task_message: TaskMessage, session_id: u32) -> io::Result<()> { in daemon_file_task() 219 async fn daemon_hilog_task(task_message: TaskMessage, session_id: u32) -> io::Result<()> { in daemon_hilog_task() 238 async fn daemon_bug_report_task(task_message: TaskMessage, session_id: u32) -> io::Result<()> { in daemon_bug_report_task() 302 pub async fn dispatch_task(task_message: TaskMessage, session_id: u32) -> io::Result<()> { in dispatch_task()
|
D | main.rs | 59 async fn handle_message(res: io::Result<TaskMessage>, session_id: u32) -> io::Result<()> { in handle_message() 80 async fn tcp_handle_client(stream: TcpStream) -> io::Result<()> { in tcp_handle_client() 110 async fn tcp_daemon_start(port: u16) -> io::Result<()> { in tcp_daemon_start() 160 async fn uart_handle_client(fd: i32) -> io::Result<()> { in uart_handle_client() 257 async fn usb_handle_client(_config_fd: i32, bulkin_fd: i32, bulkout_fd: i32) -> io::Result<()> { in usb_handle_client()
|
D | auth.rs | 191 pub async fn handshake_task(task_message: TaskMessage, session_id: u32) -> io::Result<()> { in handshake_task() 326 async fn validate_signature(signature: String, session_id: u32) -> io::Result<()> { in validate_signature() 382 fn write_known_hosts_pubkey(pubkey: &String) -> io::Result<()> { in write_known_hosts_pubkey()
|
D | shell.rs | 49 pub fn set_pts(&mut self, pts: &Pts) -> io::Result<()> { in set_pts() 119 fn flush(&mut self) -> io::Result<()> { in flush() 143 pub fn session_leader(&self) -> impl FnMut() -> io::Result<()> { in session_leader()
|
/developtools/integration_verification/tools/fotff/rec/ |
D | record.go | 53 func HandleResults(t tester.Tester, dev string, pkgName string, results []tester.Result) []string { 67 func handlePassResults(pkgName string, results []tester.Result) { 80 func handleFailResults(t tester.Tester, dev string, pkgName string, results []tester.Result) []stri…
|
/developtools/integration_verification/tools/fotff/tester/ |
D | tester.go | 28 type Result struct { struct 29 TestCaseName string 30 Status ResultStatus
|
/developtools/hdc/hdc_rust/src/serializer/ |
D | serialize.rs | 81 fn parse(&mut self, _: Vec<u8>) -> io::Result<()> { in parse() 110 fn parse(&mut self, input: Vec<u8>) -> io::Result<()> { in parse() 154 fn parse(&mut self, input: Vec<u8>) -> io::Result<()> { in parse() 206 fn parse(&mut self, input: Vec<u8>) -> io::Result<()> { in parse() 264 fn parse(&mut self, input: Vec<u8>) -> io::Result<()> { in parse() 303 fn parse(&mut self, input: Vec<u8>) -> io::Result<()> { in parse() 339 fn parse(&mut self, input: Vec<u8>) -> io::Result<()> { in parse() 371 fn parse(&mut self, input: Vec<u8>) -> io::Result<()> { in parse() 405 fn parse(&mut self, input: Vec<u8>) -> io::Result<()> { in parse()
|
/developtools/hdc/hdc_rust/src/transfer/ |
D | base.rs | 58 fn write_all(&self, data: Vec<u8>) -> io::Result<()>; in write_all() 73 ) -> io::Result<()> { in unpack_task_message_lock() 167 ) -> io::Result<()> { in unpack_task_message()
|
D | buffer.rs | 86 pub async fn send_channel_message(channel_id: u32, buf: Vec<u8>) -> io::Result<()> { in send_channel_message() 136 async fn put(session_id: u32, data: TaskMessage) -> io::Result<()> { in put() 175 pub async fn put(session_id: u32, data: Vec<u8>) -> io::Result<()> { in put() 224 pub async fn send_channel_msg(channel_id: u32, level: EchoLevel, msg: String) -> io::Result<()> { in send_channel_msg()
|
D | uart.rs | 145 fn write_all(&self, data: Vec<u8>) -> io::Result<()> { in write_all()
|
D | usb.rs | 147 fn write_all(&self, data: Vec<u8>) -> io::Result<()> { in write_all()
|
D | uart_wrapper.rs | 136 fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { in fmt()
|
/developtools/hdc/hdc_rust/src/common/ |
D | filemanager.rs | 27 pub fn remove_file(path: &str) -> std::io::Result<()> { in remove_file()
|
D | uds.rs | 119 pub fn wrap_bind(socket_fd: i32, addr: &UdsAddr) -> Result<()> { in wrap_bind() 234 pub fn wrap_bind(socket_fd: i32, addr: &UdsAddr) -> Result<()> { in wrap_bind() 255 pub fn wrap_connect(socket_fd: i32, addr: &UdsAddr) -> Result<()> { in wrap_connect()
|
D | forward.rs | 355 ) -> io::Result<()> { in forward_tcp_accept()
|
/developtools/integration_verification/tools/fotff/tester/common/ |
D | common.go | 36 Result string `json:"result"` member
|
/developtools/integration_verification/tools/fotff/pkg/gitee_common/ |
D | steps_ci.go | 41 Result struct { member
|
D | get_newer_ci.go | 42 Result struct { member
|
/developtools/hdc/hdc_rust/src/ |
D | utils.rs | 41 pub async fn print_msg(buf: Vec<u8>) -> io::Result<()> { in print_msg()
|