Home
last modified time | relevance | path

Searched defs:Result (Results 1 – 22 of 22) sorted by relevance

/developtools/hdc/hdc_rust/src/host/
Dclient.rs46 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 …]
Dtask.rs40 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 …]
Dserver.rs31 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/
Dtask.rs46 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()
Dmain.rs59 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()
Dauth.rs191 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()
Dshell.rs49 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/
Drecord.go53 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/
Dtester.go28 type Result struct { struct
29 TestCaseName string
30 Status ResultStatus
/developtools/hdc/hdc_rust/src/serializer/
Dserialize.rs81 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/
Dbase.rs58 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()
Dbuffer.rs86 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()
Duart.rs145 fn write_all(&self, data: Vec<u8>) -> io::Result<()> { in write_all()
Dusb.rs147 fn write_all(&self, data: Vec<u8>) -> io::Result<()> { in write_all()
Duart_wrapper.rs136 fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { in fmt()
/developtools/hdc/hdc_rust/src/common/
Dfilemanager.rs27 pub fn remove_file(path: &str) -> std::io::Result<()> { in remove_file()
Duds.rs119 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()
Dforward.rs355 ) -> io::Result<()> { in forward_tcp_accept()
/developtools/integration_verification/tools/fotff/tester/common/
Dcommon.go36 Result string `json:"result"` member
/developtools/integration_verification/tools/fotff/pkg/gitee_common/
Dsteps_ci.go41 Result struct { member
Dget_newer_ci.go42 Result struct { member
/developtools/hdc/hdc_rust/src/
Dutils.rs41 pub async fn print_msg(buf: Vec<u8>) -> io::Result<()> { in print_msg()