Home
last modified time | relevance | path

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

/busybox-1.35.0/coreutils/
Dnohup.c56 char *home; in nohup_main() local
76 home = getenv("HOME"); in nohup_main()
77 if (home) { in nohup_main()
78 nohupout = concat_path_file(home, nohupout); in nohup_main()
/busybox-1.35.0/qemu_multiarch_testing/hdc.dir/
Dinit6 cp -a /mnt /home || { echo "cp: $?"; exit 1; }
7 cd /home/mnt || { echo "cd: $?"; exit 1; }
Dbuild49 mount -o remount,ro /home
/busybox-1.35.0/libbb/
Dlineedit.c725 const char *home = NULL; in username_path_completion() local
729 home = get_homedir_or_NULL(); in username_path_completion()
737 home = entry->pw_dir; in username_path_completion()
739 if (home) { in username_path_completion()
740 ud = concat_path_file(home, ud); in username_path_completion()
2027 const char *home; in parse_and_put_prompt() local
2031 else if ((home = get_homedir_or_NULL()) != NULL && home[0]) { in parse_and_put_prompt()
2035 after_home_user = is_prefixed_with(cwd_buf, home); in parse_and_put_prompt()
/busybox-1.35.0/archival/libarchive/bz/
DREADME74 bzip2's "home" is http://www.bzip.org/
/busybox-1.35.0/testsuite/
Dmakedevs.device_table.txt40 /home/default d 2755 1000 1000 - - - - -
/busybox-1.35.0/docs/
Dcontributing.txt8 The Busybox home page is at: http://busybox.net/
219 - the comp.lang.c FAQ: http://home.datacomm.ch/t_wolf/tw/c/index.html#Sources
/busybox-1.35.0/examples/var_service/
DREADME234 622 0:00 busybox httpd -p80 -vvv -f -h /home/httpd_root
/busybox-1.35.0/editors/
Dvi.c4962 const char *home = getenv("HOME"); local
4964 if (home && *home) {
4965 char *exrc = concat_path_file(home, ".exrc");
/busybox-1.35.0/shell/
Dash.c6505 const char *home; in exptilde() local
6531 home = lookupvar("HOME"); in exptilde()
6536 home = pw->pw_dir; in exptilde()
6539 if (!home) in exptilde()
6541 strtodest(home, flag | EXP_QUOTED); in exptilde()
Dhush.c10799 const char *home = get_local_var_value("HOME"); in builtin_cd() local
10800 newdir = home ? home : "/"; in builtin_cd()