Searched refs:home (Results 1 - 25 of 111) sorted by relevance

12345

/openbsd-current/lib/libcurses/tinfo/
H A Dhome_terminfo.c57 char *home; local
59 if ((home = getenv("HOME")) != 0) {
60 size_t want = (strlen(home) + sizeof(PRIVATE_INFO));
62 _nc_SPRINTF(MyBuffer, _nc_SLIMIT(want) PRIVATE_INFO, home);
/openbsd-current/usr.bin/ftp/
H A Dsmall.h21 extern char *home;
/openbsd-current/games/backgammon/common_source/
H A Done.c45 if (g[i] != home && board[g[i]] * cturn < -1)
56 if (g[i] == home && *offptr < 0)
60 if (g[i] != home) {
62 board[home] -= cturn;
72 if (abs(home - g[i]) < 7 && abs(home - p[i]) > 6) {
112 for (i = home - 6 * cturn; i != home; i += cturn)
114 return(abs(home - i));
131 if (g[i] != home) {
[all...]
H A Dallow.c68 if ((p[i] += cturn) == home) {
92 if (g[i] * cturn > home) {
94 g[i] = home;
H A Dinit.c82 int home; variable
/openbsd-current/usr.sbin/ypserv/ypinit/
H A DMakefile.main5 passwd group hosts ethers rpc services protocols netid netgroup amd.home aliases : _SUBDIRUSE
H A DMakefile.yp26 all: passwd group hosts ethers rpc services protocols netid netgroup amd.home aliases
269 amd.home.time: $(AMDDIR)/amd.home
284 $(MAKEDBM) - amd.home; \
286 $(ECHO) "updated amd.home"; \
288 $(YPPUSH) -d $(DOMAIN) amd.home; \
289 $(ECHO) "pushed amd.home"; \
329 amd.home: amd.home.time
342 $(AMDDIR)/amd.home
[all...]
/openbsd-current/games/canfield/cfscores/
H A Dcfscores.c61 const char *home; local
67 home = getenv("HOME");
68 if (home == NULL || *home == '\0')
71 ret = snprintf(scorepath, sizeof(scorepath), "%s/%s", home,
74 errc(1, ENAMETOOLONG, "%s/%s", home, ".cfscores");
/openbsd-current/games/robots/
H A Dmain.c59 char *home; local
64 home = getenv("HOME");
65 if (home == NULL || *home == '\0')
68 ret = snprintf(Scorefile, sizeof(Scorefile), "%s/%s", home,
71 errc(1, ENAMETOOLONG, "%s/%s", home, ".robots.scores");
/openbsd-current/usr.sbin/ypserv/ypxfr/
H A Dypxfr_1perday.sh14 /usr/sbin/ypxfr amd.home
/openbsd-current/distrib/special/more/
H A Dtermcap.c67 char *p, *cp, *dummy, **fname, *home; local
94 else if ((home = getenv("HOME")) == NULL || *home == '\0' ||
95 snprintf(pathbuf, sizeof(pathbuf), "%s/%s", home,
/openbsd-current/games/battlestar/
H A Dcommand6.c103 const char *home; local
106 home = getenv("HOME");
107 if (home == NULL || *home == '\0')
109 ret = snprintf(scorefile, sizeof(scorefile), "%s/%s", home,
112 errc(1, ENAMETOOLONG, "%s/%s", home, ".battlestar.scores");
/openbsd-current/gnu/usr.bin/perl/dist/Test/t/
H A Dmultiline.t14 Jojo left his home in Tucson, Arizona
20 Get back Jojo Go home
37 Get back Loretta Go home
42 Get home Loretta
/openbsd-current/games/hack/
H A Dhack.pager.c308 home();
323 home();
399 home(); perror (fnam); flags.toplin = 1;
437 char *home; local
447 home = getenv("HOME");
448 if (home == NULL || *home == '\0')
449 home = "/";
450 (void) chdir(home);
/openbsd-current/gnu/usr.bin/gcc/gcc/
H A Dprotector.c330 rtx home = DECL_RTL (types); local
332 if (GET_CODE (home) == MEM
333 && (GET_CODE (XEXP (home, 0)) == MEM
335 (GET_CODE (XEXP (home, 0)) == REG
336 && XEXP (home, 0) != virtual_stack_vars_rtx
337 && REGNO (XEXP (home, 0)) != HARD_FRAME_POINTER_REGNUM
338 && REGNO (XEXP (home, 0)) != STACK_POINTER_REGNUM
340 && REGNO (XEXP (home, 0)) != ARG_POINTER_REGNUM
734 rtx home; local
747 home
989 rtx home = DECL_RTL (types); local
1265 rtx home; local
1371 rtx home; local
2165 rtx home; local
2242 rtx home; local
[all...]
/openbsd-current/usr.bin/tmux/
H A Dtmux.c113 expand_path(const char *path, const char *home) argument
120 if (home == NULL)
122 xasprintf(&expanded, "%s%s", home, path + 1);
148 const char *home = find_home(); local
158 expanded = expand_path(next, home);
328 static const char *home; local
330 if (home != NULL)
331 return (home);
333 home = getenv("HOME");
334 if (home
[all...]
/openbsd-current/gnu/usr.bin/perl/ext/File-Glob/t/
H A Dbasic.t56 # look up the user's home directory
61 my ($name, $home);
65 ($name, $home) = (getpwuid($>))[0,7];
68 skip "$> has no home directory", 1
69 unless defined $home && defined $name && -d $home;
76 is_deeply (\@a, [$home],
77 "GLOB_TILDE expands patterns that start with '~' to user name home directories"
108 $ENV{USERPROFILE} = 'sweet win32 home';
114 my $home
[all...]
/openbsd-current/gnu/usr.bin/perl/cpan/libnet/lib/Net/
H A DNetrc.pm27 my ($home, $file);
30 $home = $ENV{HOME} || `pwd`;
31 chomp($home);
32 $file = ($home =~ /:$/ ? $home . "netrc" : $home . ":netrc");
37 $home = eval { (getpwuid($>))[7] } || $ENV{HOME};
38 $home ||= $ENV{HOMEDRIVE} . ($ENV{HOMEPATH} || '') if defined $ENV{HOMEDRIVE};
39 if (-e $home . "/.netrc") {
40 $file = $home
[all...]
/openbsd-current/usr.bin/less/
H A Dforwback.c148 home();
162 home();
267 home();
/openbsd-current/usr.sbin/dhcpd/
H A Ddhcpd.conf29 option name-servers bb.home.vix.com, gw.home.vix.com;
89 server-name "bb.home.vix.com";
/openbsd-current/etc/examples/
H A Dypldap.conf27 attribute home maps to "homeDirectory"
/openbsd-current/distrib/macppc/iso/
H A DMakefile4 RELXDIR?= /home/relx-${MACHINE}
5 RELDIR?= /home/rel-${MACHINE}
/openbsd-current/distrib/hppa/iso/
H A DMakefile4 RELXDIR?= /home/relx-${MACHINE}
5 RELDIR?= /home/rel-${MACHINE}
/openbsd-current/usr.bin/indent/
H A Dargs.c165 char *home; local
168 home = getenv("HOME");
169 if (home != NULL && *home != '\0') {
170 if (snprintf(fname, sizeof fname, "%s/%s", home, prof) >= sizeof fname) {
171 warnc(ENAMETOOLONG, "%s/%s", home, prof);
/openbsd-current/games/atc/
H A Dlog.c108 char *home; local
113 home = getenv("HOME");
114 if (home == NULL || *home == '\0')
116 ret = snprintf(scorefile, sizeof(scorefile), "%s/%s", home,
119 errc(1, ENAMETOOLONG, "%s/%s", home, ".atc.scores");

Completed in 211 milliseconds

12345