Searched refs:wd (Results 1 - 25 of 54) sorted by relevance

123

/freebsd-current/usr.bin/systat/
H A Dsysput.c41 sysputspaces(WINDOW *wd, int row, int lcol, int width) argument
46 mvwaddstr(wd, row, lcol, str60 + sizeof(str60) - width - 1);
50 sysputstrs(WINDOW *wd __unused, int row, int lcol, int width)
56 * XXX wnd instead of wd?
62 sysputXs(WINDOW *wd __unused, int row, int lcol, int width)
68 * XXX wnd instead of wd?
74 sysputuint64(WINDOW *wd, int row, int lcol, int width, uint64_t val, int flags) argument
93 mvwaddstr(wd, row, lcol, start);
97 sysputstrs(wd, row, lcol, width);
101 sysputwuint64(WINDOW *wd, in argument
110 sysputpage(WINDOW *wd, int row, int lcol, int width, uint64_t pages, int flags) argument
[all...]
/freebsd-current/usr.sbin/config/
H A Dmkmakefile.cc387 configword wd; local
407 wd = get_word(fp);
408 if (wd.eof()) {
412 if (wd.eol())
414 if (wd[0] == '#')
416 while (!(wd = get_word(fp)).eof() && !wd.eol())
420 if (eq(wd, "include")) {
421 wd = get_quoted_word(fp);
422 if (wd
[all...]
H A Dmkoptions.cc361 configword wd; local
368 while (!(wd = get_word(fp)).eof()) {
369 if (wd.eol())
371 if (wd[0] == '#') {
372 while (!(wd = get_word(fp)).eof() && !wd.eol())
376 optname = ns(wd);
377 wd = get_word(fp);
378 if (wd.eof()) {
382 if (wd
[all...]
/freebsd-current/contrib/bearssl/T0/
H A DWordData.cs63 WordData wd = TC.Lookup(baseBlobName) as WordData;
64 if (wd == null) {
69 wd.Resolve();
70 blob = wd.blob;
71 offset += wd.offset;
/freebsd-current/usr.bin/ruptime/
H A Druptime.c181 struct whod *wd; local
211 wd = &hsp->hs_wd;
212 cc = read(fd, wd, sizeof(*wd));
217 if (host != NULL && strcasecmp(wd->wd_hostname, host) != 0)
219 if (LEFTEARTH(wd->wd_recvtime))
222 if (hostnamewidth < (int)strlen(wd->wd_hostname))
223 hostnamewidth = (int)strlen(wd->wd_hostname);
227 w = iwidth(wd->wd_loadav[i] / 100) + 3;
231 for (hsp->hs_nusers = 0, we = &wd
[all...]
/freebsd-current/tools/test/stress2/misc/
H A Dexeci386.sh37 wd=/tmp/execi386.dir
38 mkdir -p $wd
40 cd $wd
85 rm -rf $wd
H A Dnfs15.sh69 wd=$mntpoint/nfs15.dir
70 rm -rf $wd
71 mkdir $wd
73 (cd $wd; /tmp/nfs15)
74 rm -rf $wd
H A Dnfs16.sh53 wd=$mntpoint/nfs16.dir
54 rm -rf $wd
55 mkdir $wd
57 (cd $wd; /tmp/nfs16)
58 rm -rf $wd
H A Dsignal.sh38 wd=/tmp/signal.dir
39 rm -rf $wd
40 mkdir -p $wd
41 cd $wd
246 rm -rf $wd /tmp/waitthread
H A Dwrite.sh65 wd=`dirname $diskimage`
66 wd="$wd/write.dir"
67 rm -rf $wd
68 mkdir -p $wd
70 (cd $wd; /tmp/write)
73 rm -rf /tmp/write $wd
H A Dnfs15lockd.sh69 wd=$mntpoint/nfs15lockd-`jot -rc 8 a z | tr -d '\n'`.dir
70 rm -rf $wd
71 mkdir $wd
74 (cd $wd; /tmp/nfs15lockd) &
92 rm -rf $wd
H A Dnfs15lockd3.sh77 wd=$mntpoint/nfs15lockd3-`jot -rc 8 a z | tr -d '\n'`.dir
78 rm -rf $wd
79 mkdir $wd
81 (cd $wd; /tmp/nfs15lockd3) &
99 rm -rf $wd
H A Dmsync.sh137 wd(void)
164 wd(); function
/freebsd-current/tools/test/stress2/include/
H A Dstress.h41 char *wd; member in struct:__anon16129
/freebsd-current/tools/test/stress2/lib/
H A Dmain.c191 if (stat(op->wd, &sb) == -1) {
192 if (mkdir(op->wd, 0770) == -1)
194 err(1, "mkdir(%s) %s:%d", op->wd, __FILE__, __LINE__);
196 errx(1, "No RWX access to %s", op->wd);
204 if (chdir(op->wd) == -1)
205 err(1, "chdir(%s) %s:%d", op->wd, __FILE__, __LINE__);
H A Doptions.c112 op->wd = cp;
149 op->wd = strdup("/tmp/stressX");
175 op->wd = strdup(optarg);
/freebsd-current/contrib/bearssl/tools/
H A Dbrssl.c68 WSADATA wd; local
71 r = WSAStartup(MAKEWORD(2, 2), &wd);
/freebsd-current/usr.sbin/rwhod/
H A Drwhod.c344 struct whod wd; local
366 cc = recvfrom(s, &wd, sizeof(wd), 0, (struct sockaddr *)&from,
383 if (wd.wd_vers != WHODVERSION)
385 if (wd.wd_type != WHODTYPE_STATUS)
387 if (!verify(wd.wd_hostname, sizeof(wd.wd_hostname))) {
392 (void) snprintf(path, sizeof(path), "whod.%s", wd.wd_hostname);
414 wd.wd_sendtime = ntohl(wd
[all...]
/freebsd-current/lib/libcalendar/
H A Dcalendar.c252 int nd, wd; local
265 if ((wd = weekday(nd)) > 3)
266 return (nd - wd + 7);
268 return (nd - wd);
/freebsd-current/tests/sys/fs/fusefs/
H A Dreadlink.cc146 char buf[MAXPATHLEN], wd[MAXPATHLEN], want[MAXPATHLEN]; local
155 ASSERT_NE(nullptr, getcwd(wd, sizeof(wd))) << strerror(errno);
156 len = snprintf(want, sizeof(want), "%s/mountpoint%s", wd, dst);
/freebsd-current/usr.bin/rwho/
H A Drwho.c53 #define WHDRSIZE (ssize_t)(sizeof(wd) - sizeof(wd.wd_we))
60 static struct whod wd; variable in typeref:struct:whod
63 char myhost[sizeof(wd.wd_hostname)];
90 w = &wd;
137 cc = read(f, (char *)&wd, sizeof(struct whod));
/freebsd-current/contrib/ntp/include/
H A Dntp_calgps.h133 gpsntp_from_gpscal(TcGpsDatum *wd) { argument
134 return gpsntp_from_gpscal_ex(wd, FALSE);
/freebsd-current/contrib/llvm-project/lldb/source/Host/posix/
H A DProcessLauncherPosixFork.cpp104 std::string wd; member in struct:__anon1253::ForkLaunchInfo
144 if (!info.wd.empty() && 0 != ::chdir(info.wd.c_str()))
252 wd(info.GetWorkingDirectory().GetPath()),
/freebsd-current/contrib/bsddialog/lib/
H A Ddatebox.c103 int wd; local
106 wd = 23*mm/9 + dd + 4 + yy/4 - yy/100 + yy/400;
107 wd %= 7;
109 return (wd);
261 int ndays, i, y, x, wd, h, w; local
278 wd = week_day(yy, mm, 1);
280 x = 5 + (4 * wd); /* x has to be 6 with week number */
288 wd++;
289 if (wd > 6) {
290 wd
[all...]
/freebsd-current/stand/liblua/
H A Dgfx_utils.c143 uint32_t x0, y0, x1, y1, wd; local
156 wd = luaL_checknumber(L, 5);
157 gfx_fb_line(x0, y0, x1, y1, wd);

Completed in 149 milliseconds

123