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

1234

/freebsd-9.3-release/usr.bin/csup/
H A Dauth.c167 char *home, *line, authfile[FILENAME_MAX]; local
171 home = getenv("HOME");
172 if (home == NULL) {
176 snprintf(authfile, sizeof(authfile), "%s/%s", home, AUTHFILE);
/freebsd-9.3-release/contrib/cvs/src/
H A Dfilesubr.c986 /* Return the home directory. Returns a pointer to storage
989 called. Returns NULL if there is no home directory.
991 Note that for a pserver server, this may return root's home
994 get_homedir which remembers root's home directory in the static
1006 The whole concept of a "home directory" on the server is pretty
1012 static char *home = NULL;
1016 if (home != NULL)
1017 return home;
1020 home = env;
1023 home
1011 static char *home = NULL; local
[all...]
/freebsd-9.3-release/contrib/ncurses/ncurses/tinfo/
H A Dread_termcap.c776 char *home; local
808 if ((home = getenv("HOME")) != 0 && *home != '\0'
809 && strchr(home, ' ') == 0
810 && strlen(home) < sizeof(temp) - 10) { /* setup path */
811 sprintf(temp, "%s/", home); /* $HOME first */
H A Dwrite_entry.c203 char *home = _nc_home_terminfo(); local
205 if (home != 0) {
206 destination = home;
/freebsd-9.3-release/contrib/less/
H A Dcmdbuf.c327 * Put the cursor at "home" (just after the prompt),
1367 char *home; local
1382 home = lgetenv("HOME");
1383 if (home == NULL || *home == '\0')
1386 home = lgetenv("INIT");
1387 if (home == NULL || *home == '\0')
1391 len = strlen(home) + strlen(LESSHISTFILE) + 2;
1393 SNPRINTF2(name, len, "%s/%s", home, LESSHISTFIL
[all...]
H A Djump.c303 home();
H A Dfuncs.h12 public void home ();
/freebsd-9.3-release/usr.sbin/pw/
H A Dpw.h83 char *home; /* Where to create home directory */ member in struct:userconf
/freebsd-9.3-release/contrib/ncurses/misc/
H A Dterminfo.src351 cup=\E[%i%p1%d;%p2%dH, home=\E[H,
525 home=\E[H, ht=^I, il1=\E[L$<5*/>, ind=\ED, kbs=^H,
546 dch1=\E[P, dl1=\E[M, ed=\E[J, el=\E[K, home=\E[H, ht=^I,
618 cup=\E[%i%p1%d;%p2%dH, cuu1=\E[A, el=\E[k, home=\E[H,
671 ech=\E[%p1%dX, ed=\E[J, el=\E[K, el1=\E[1K, home=\E[H,
721 el1=\E[1K, flash=\E[?5h\E[?5l$<200/>, home=\E[H,
805 # \E* move cursor to home, as as \E[H
828 el=\E[K, home=\E[H, ht=^I, il=\E[%p1%dL, il1=\E[L, ind=^J,
880 home=\E[H, hpa=\E[%i%p1%dG, ht=^I, ich=\E[%p1%d@,
948 ed=\E[m\E[J, el=\E[m\E[K, el1=\E[1K, home
[all...]
H A Demx.src178 home=\E[H,
204 home=\E[H,
446 home=\E[H,
512 home=\E[H,
820 home=\EE0;0;,
/freebsd-9.3-release/contrib/tcsh/
H A Dsh.glob.c79 Char *name, *u, *home, *res; local
86 home = gethdir(name);
87 if (home == NULL) {
98 if (home[0] == '/' && home[1] == '\0' && s[0] == '/')
101 res = Strspl(home, s);
102 xfree(home);
H A Dsh.file.c356 const Char *o, *home; local
366 home = varval(STRhome);
375 home = str2short(pw->pw_dir);
377 return Strspl(home, o);
H A Dsh.sem.c143 Char *name, *home; local
146 home = gethdir(name);
147 if (home != NULL) {
148 Strbuf_append(&buf, home);
149 xfree(home);
/freebsd-9.3-release/usr.sbin/ctm/mkCTM/
H A DmkCTM20 set CTMSW /home/ctm/SW
/freebsd-9.3-release/contrib/lukemftpd/src/
H A Dftpcmd.y1112 char *path, *home, *result;
1119 home = homedir;
1124 home = hpw->pw_dir;
1126 home = $1;
1128 len = strlen(home) + 1;
1133 strlcpy(result, home, len);
/freebsd-9.3-release/bin/sh/
H A Dexpand.c316 char *home; local
342 if ((home = lookupvar("HOME")) == NULL)
347 home = pw->pw_dir;
349 if (*home == '\0')
353 STPUTS_QUOTES(home, SQSYNTAX, expdest);
355 STPUTS(home, expdest);
/freebsd-9.3-release/contrib/llvm/include/llvm/Support/
H A DFormat.h44 virtual void home(); // Out of line virtual method.
/freebsd-9.3-release/tools/regression/usr.sbin/etcupdate/
H A Dpreworld.sh115 john:<password>:1001:1001::0:0:John Baldwin:/home/john:/bin/tcsh
/freebsd-9.3-release/contrib/wpa/wpa_supplicant/
H A Dwpa_cli.c2003 char *home, *hfile = NULL; local
2010 home = getenv("HOME");
2011 if (home) {
2013 int hfile_len = os_strlen(home) + 1 + os_strlen(fname) + 1;
2017 res = os_snprintf(hfile, hfile_len, "%s/%s", home,
/freebsd-9.3-release/crypto/heimdal/lib/hx509/
H A Dsoftp11.c843 char *fn = NULL, *home = NULL; local
849 home = getenv("HOME");
851 if (fn == NULL && home == NULL) {
854 home = pw->pw_dir;
857 if (home)
858 asprintf(&fn, "%s/.soft-token.rc", home);
/freebsd-9.3-release/contrib/ipfilter/
H A DMakefile408 -I/home/dr146992/pfil -I/home/dr146992/ipf -f \
/freebsd-9.3-release/sys/dev/ixgb/
H A DREADME54 example, use /home/username/ixgb or /usr/local/src/ixgb.
/freebsd-9.3-release/crypto/heimdal/appl/ftp/ftp/
H A Dmain.c136 * Set up the home directory in case we're globbing.
141 home = homedir;
/freebsd-9.3-release/sys/boot/pc98/boot0.5/
H A Dsyscons.s234 # cursor home and off
/freebsd-9.3-release/usr.sbin/ancontrol/
H A Dancontrol.c1336 int home; local
1343 home = 1;
1345 home = 0;
1377 printf("\tThe active transmit key is %d\n", 4 * home + k->mac[0]);
1391 /* set home or not home mode */

Completed in 221 milliseconds

1234