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

/freebsd-12-stable/bin/cp/
H A Dutils.c83 ssize_t wcount; local
172 bufp += wcount, wresid -= (size_t)wcount) {
173 wcount = write(to_fd, bufp, wresid);
174 if (wcount <= 0)
176 wtotal += wcount;
184 if (wcount >= (ssize_t)wresid)
187 if (wcount != (ssize_t)wresid) {
217 bufp += wcount, wresid -= wcount) {
[all...]
/freebsd-12-stable/sys/dev/smbus/
H A Dsmb.h52 int wcount; member in struct:smbcmd
H A Dsmb.c242 if (s->wcount < 0) {
246 if (s->wcount > SMB_MAXBLOCKSIZE)
247 s->wcount = SMB_MAXBLOCKSIZE;
248 if (s->wcount)
249 error = copyin(s->wbuf, buf, s->wcount);
253 s->wcount, buf));
H A Dsmbconf.h120 #define smbus_trans(bus,slave,cmd,op,wbuf,wcount,rbuf,rcount,actualp) \
122 wbuf, wcount, rbuf, rcount, actualp))
/freebsd-12-stable/usr.bin/mail/
H A Dcmd1.c171 char headline[LINESIZE], wcount[LINESIZE], *subjline, dispc, curind; local
197 sprintf(wcount, "%3ld/%-5ld", mp->m_lines, mp->m_size);
198 subjlen = screenwidth - 50 - strlen(wcount);
203 curind, dispc, mesg, name, hl.l_date, wcount);
206 curind, dispc, mesg, name, hl.l_date, wcount,
/freebsd-12-stable/usr.sbin/smbmsg/
H A Dsmbmsg.c141 c.wcount = 0;
217 c.wcount = oflag;
/freebsd-12-stable/usr.bin/sdiff/
H A Dsdiff.c185 ssize_t wcount; local
187 wcount = write(ofd, buf, (size_t)rcount);
188 if (-1 == wcount || rcount != wcount) {
/freebsd-12-stable/usr.sbin/pwd_mkdb/
H A Dpwd_mkdb.c596 int from_fd, rcount, to_fd, wcount; local
603 wcount = write(to_fd, buf, rcount);
604 if (rcount != wcount || wcount == -1) {
/freebsd-12-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-12-stable/libexec/rtld-elf/
H A Drtld.h100 volatile int wcount; /* Number of writers holding lock */ member in struct:Struct_LockInfo

Completed in 134 milliseconds