Searched refs:wcount (Results 1 - 10 of 10) sorted by relevance

/freebsd-11-stable/bin/cp/
H A Dutils.c81 ssize_t wcount; local
170 bufp += wcount, wresid -= (size_t)wcount) {
171 wcount = write(to_fd, bufp, wresid);
172 if (wcount <= 0)
174 wtotal += wcount;
182 if (wcount >= (ssize_t)wresid)
185 if (wcount != (ssize_t)wresid) {
215 bufp += wcount, wresid -= wcount) {
[all...]
/freebsd-11-stable/sys/dev/smbus/
H A Dsmb.h50 int wcount; member in struct:smbcmd
H A Dsmb.c240 if (s->wcount < 0) {
244 if (s->wcount > SMB_MAXBLOCKSIZE)
245 s->wcount = SMB_MAXBLOCKSIZE;
246 if (s->wcount)
247 error = copyin(s->wbuf, buf, s->wcount);
251 s->wcount, buf));
H A Dsmbconf.h118 #define smbus_trans(bus,slave,cmd,op,wbuf,wcount,rbuf,rcount,actualp) \
120 wbuf, wcount, rbuf, rcount, actualp))
/freebsd-11-stable/usr.bin/mail/
H A Dcmd1.c168 char headline[LINESIZE], wcount[LINESIZE], *subjline, dispc, curind; local
194 sprintf(wcount, "%3ld/%-5ld", mp->m_lines, mp->m_size);
195 subjlen = screenwidth - 50 - strlen(wcount);
200 curind, dispc, mesg, name, hl.l_date, wcount);
203 curind, dispc, mesg, name, hl.l_date, wcount,
/freebsd-11-stable/usr.sbin/smbmsg/
H A Dsmbmsg.c141 c.wcount = 0;
217 c.wcount = oflag;
/freebsd-11-stable/usr.bin/sdiff/
H A Dsdiff.c186 ssize_t wcount; local
188 wcount = write(ofd, buf, (size_t)rcount);
189 if (-1 == wcount || rcount != wcount) {
/freebsd-11-stable/sys/dev/rp/
H A Drp.c1092 int i, count, wcount; local
1106 for( i = 0, wcount = count >> 1; wcount > 0; i += 2, wcount-- ) {
/freebsd-11-stable/usr.sbin/pwd_mkdb/
H A Dpwd_mkdb.c697 int from_fd, rcount, to_fd, wcount; local
704 wcount = write(to_fd, buf, rcount);
705 if (rcount != wcount || wcount == -1) {
/freebsd-11-stable/libexec/rtld-elf/
H A Drtld.h98 volatile int wcount; /* Number of writers holding lock */ member in struct:Struct_LockInfo

Completed in 389 milliseconds