Home
last modified time | relevance | path

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

/DragonOS/kernel/src/libs/
H A Dkeyboard_parser.rs178 scancode_status.home = true; in handle_func0()
184 scancode_status.home = false; in handle_func0()
449 home: bool, field
478 home: false, in new()
/DragonOS/user/apps/user-manage/src/check/
H A Dcheck.rs208 info.home = Some(Self::home(&info.username)); in check()
215 fn home(username: &String) -> String { in home() method
216 let mut home = String::new(); in home() localVariable
222 home = data[5].to_string(); in home()
234 home in home()
298 fn check_home(home: &String) { in check_home()
299 if fs::File::open(home).is_ok() { in check_home()
300 ErrorHandler::error_handle(format!("{} already exists", home), ExitStatus::InvalidArg); in check_home()
H A Dinfo.rs31 pub home: Option<String>, field
/DragonOS/user/apps/user-manage/
H A DREADME.md7 useradd -c \<comment\> -d \<home\> -G \<group\> -g \<gid\> -s \<shell\> -u \<uid\> username
/DragonOS/docs/kernel/debug/
H A Ddebug-kernel-with-gdb.md145 Breakpoint 12 at 0xffff8000001f8f16: file /home/heyicong/.cargo/registry/src/mirrors.tuna.tsinghua.…
151 …at /home/heyicong/.cargo/registry/src/mirrors.tuna.tsinghua.edu.cn-df7c3c540f42cdbd/thingbuf-0.1.4…
294 …at /home/heyicong/.cargo/registry/src/mirrors.tuna.tsinghua.edu.cn-df7c3c540f42cdbd/thingbuf-0.1.4…
/DragonOS/user/apps/user-manage/src/executor/
H A Dexecutor.rs71 let home = info.home_dir.clone(); in execute() localVariable
73 if dir_builder.create(home.clone()).is_err() { in execute()
75 format!("unable to create {}", home), in execute()
186 if let Some(home) = info.home.clone() { in execute()
187 std::fs::remove_dir_all(home).unwrap(); in execute()