Searched refs:home (Results 51 - 75 of 90) sorted by relevance

1234

/freebsd-12-stable/usr.sbin/pw/
H A Dpwupd.h65 char *home; /* Where to create home directory */ member in struct:userconf
/freebsd-12-stable/contrib/tcsh/
H A Dsh.glob.c75 Char *name, *u, *home, *res; local
87 home = gethdir(name);
88 if (home == NULL) {
99 if (home[0] == '/' && home[1] == '\0' && s[0] == '/')
102 res = Strspl(home, s);
103 xfree(home);
H A Dsh.file.c353 const Char *o, *home; local
363 home = varval(STRhome);
372 home = str2short(pw->pw_dir);
374 return Strspl(home, o);
H A Dsh.sem.c139 Char *name, *home; local
142 home = gethdir(name);
143 if (home != NULL) {
144 Strbuf_append(&buf, home);
145 xfree(home);
H A Dsh.c619 fast = 1; /* No home -> can't read scripts */
2341 * Extract a home directory from the password file
2343 * user whose home directory is sought is currently.
2344 * We return home directory of the user, or NULL.
2347 gethdir(const Char *home) argument
2354 if (*home == '\0') {
2364 if ((h = gettilde(home)) == NULL)
/freebsd-12-stable/contrib/less/
H A Dcmdbuf.c263 * Put the cursor at "home" (just after the prompt),
1406 char *home; local
1425 home = lgetenv("HOME");
1426 if (isnullenv(home))
1429 home = lgetenv("INIT");
1430 if (isnullenv(home))
1434 len = (int) (strlen(home) + strlen(LESSHISTFILE) + 2);
1436 SNPRINTF2(name, len, "%s/%s", home, LESSHISTFILE);
H A Djump.c329 home();
/freebsd-12-stable/contrib/bmake/unit-tests/
H A Dmodmisc.mk14 MOD_HOMES=S,/home/,/homes/,
28 @echo "path='${path:S,home,homes,:${MOD_NODOT}}'"
/freebsd-12-stable/usr.sbin/ctm/mkCTM/
H A DmkCTM20 set CTMSW /home/ctm/SW
/freebsd-12-stable/crypto/heimdal/lib/krb5/
H A Dconfig_file.c425 * current users home directory. The behavior can be disabled and
430 const char *home = NULL; local
434 "Access to home directory not allowed");
439 home = getenv("HOME");
441 if (home == NULL) {
444 home = pw->pw_dir;
446 if (home) {
447 asprintf(&newfname, "%s%s", home, &fname[1]);
/freebsd-12-stable/contrib/ncurses/ncurses/tinfo/
H A Dwrite_entry.c205 char *home = _nc_home_terminfo(); local
207 if (home != 0) {
208 destination = home;
/freebsd-12-stable/contrib/wpa/hostapd/
H A Dhostapd_cli.c1931 char *home; local
1936 home = CONFIG_HOSTAPD_CLI_HISTORY_DIR;
1938 home = getenv("HOME");
1940 if (home) {
1942 int hfile_len = os_strlen(home) + 1 + os_strlen(fname) + 1;
1945 os_snprintf(hfile, hfile_len, "%s/%s", home, fname);
/freebsd-12-stable/bin/sh/
H A Dexpand.c370 char *home; local
396 home = lookupvar("HOME");
399 home = pw != NULL ? pw->pw_dir : NULL;
402 if (home == NULL || *home == '\0')
404 strtodest(home, flag, VSNORMAL, 1, NULL);
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DFormat.h43 virtual void home(); // Out of line virtual method.
/freebsd-12-stable/usr.sbin/etcupdate/tests/
H A Dpreworld_test.sh116 john:<password>:1001:1001::0:0:John Baldwin:/home/john:/bin/tcsh
/freebsd-12-stable/crypto/heimdal/lib/hx509/
H A Dsoftp11.c817 char *home = NULL; local
823 home = getenv("HOME");
825 if (fn == NULL && home == NULL) {
828 home = pw->pw_dir;
831 if (home)
832 asprintf(&fn, "%s/.soft-token.rc", home);
/freebsd-12-stable/contrib/ipfilter/
H A DMakefile409 -I/home/dr146992/pfil -I/home/dr146992/ipf -f \
/freebsd-12-stable/release/tools/
H A Darm.subr92 chroot ${CHROOTDIR} mkdir -p ${DESTDIR}/home/freebsd
96 -c 'FreeBSD User' -d '/home/freebsd' -s '/bin/csh'
/freebsd-12-stable/crypto/heimdal/appl/ftp/ftp/
H A Dmain.c136 * Set up the home directory in case we're globbing.
141 home = homedir;
H A Dcmds.c45 char *home = "/"; variable
1054 argc++, argv[1] = home;
/freebsd-12-stable/usr.sbin/ancontrol/
H A Dancontrol.c1337 int home; local
1344 home = 1;
1346 home = 0;
1378 printf("\tThe active transmit key is %d\n", 4 * home + k->mac[0]);
1392 /* set home or not home mode */
/freebsd-12-stable/contrib/opie/
H A Dopielogin.c20 opie_key for key blocks. Do the home directory chdir() after
184 extern char *home;
1307 home = thisuser.pw_dir;
H A Dopieftpd.c169 extern char *home; /* pointer to home directory for glob */
588 lreply(230, "No directory! Logging in with home=/");
652 home = pw->pw_dir; /* home dir for globbing */
/freebsd-12-stable/crypto/heimdal/appl/telnet/telnet/
H A Dcommands.c2000 char *home = getenv("HOME");
2003 home ? home : "");
1992 char *home = getenv("HOME"); local
/freebsd-12-stable/contrib/wpa/wpa_supplicant/
H A Dwpa_cli.c2678 "optional home realm)\n");
3544 "<addr> <home realm> = get HS20 nai home realm list" },
4288 char *home; local
4296 home = CONFIG_WPA_CLI_HISTORY_DIR;
4298 home = getenv("HOME");
4300 if (home) {
4302 int hfile_len = os_strlen(home) + 1 + os_strlen(fname) + 1;
4305 os_snprintf(hfile, hfile_len, "%s/%s", home, fname);

Completed in 322 milliseconds

1234