Home
last modified time | relevance | path

Searched refs:exit_status (Results 1 – 3 of 3) sorted by relevance

/DragonOS/user/apps/user-manage/src/error/
H A Derror.rs29 pub fn error_handle(error: String, exit_status: ExitStatus) { in error_handle()
31 exit(exit_status as i32); in error_handle()
/DragonOS/user/apps/user-manage/src/check/
H A Dcheck.rs168 if let Ok(exit_status) = r { in check_group_gid()
169 if exit_status.code() != Some(0) { in check_group_gid()
/DragonOS/user/apps/user-manage/src/executor/
H A Dexecutor.rs46 let exit_status = match file_path { in open_file() localVariable
55 ErrorHandler::error_handle(format!("Can't open file: {}", file_path), exit_status); in open_file()