HomeSort by: relevance | last modified time | path
    Searched defs:rbytes (Results 1 - 7 of 7) sorted by relevancy

  /src/usr.sbin/dumplfs/
misc.c 55 int rbytes; local in function:get
59 if ((rbytes = read(fd, p, len)) < 0)
61 if (rbytes != len)
62 errx(1, "%s: short read (%d, not %lu)", special, rbytes,
  /src/usr.bin/vmstat/
drvstats.h 46 u_int64_t *rbytes; /* # of bytes read. */ member in struct:_drive
  /src/sys/sys/
tape.h 54 uint64_t rbytes; member in struct:tape_sysctl
69 uint64_t rbytes; /* total bytes read */ member in struct:tape
iostat.h 66 u_int64_t rbytes; member in struct:io_sysctl
  /src/lib/libisns/
isns_thread.c 130 ssize_t rbytes; local in function:isns_kevent_pipe
137 rbytes = read(cfg_p->pipe_fds[0], &cmd_type,
139 if (rbytes < 0) {
145 pipe_nbytes -= (int)rbytes;
153 rbytes = read(cfg_p->pipe_fds[0], &trans_id,
155 if (rbytes < 0)
158 else if (rbytes != sizeof(trans_id))
163 pipe_nbytes -= (int)rbytes;
  /src/libexec/httpd/
cgi-bozo.c 119 ssize_t rbytes; local in function:finish_cgi_output
186 while ((rbytes = read(in, buf, sizeof buf)) > 0) {
189 while (rbytes) {
191 (size_t)rbytes);
193 rbytes -= wbytes;
383 ssize_t rbytes; local in function:bozo_process_cgi
655 while ((rbytes = bozo_read(httpd, STDIN_FILENO, buf, sizeof buf)) > 0) {
658 while (rbytes) {
659 wbytes = write(sv[0], buf, (size_t)rbytes);
661 rbytes -= wbytes
    [all...]
  /src/usr.bin/gzip/
gzip.c 1420 ssize_t rbytes; local in function:file_uncompress
1455 rbytes = read(fd, fourbytes, sizeof fourbytes);
1456 if (rbytes != sizeof fourbytes) {
1462 if (rbytes == -1)
1468 infile_newdata(rbytes);
1495 rbytes = pread(fd, name, sizeof(name) - 1, GZIP_ORIGNAME);
1496 if (rbytes < 0) {
1504 name[rbytes] = '\0';
1521 file, (int) rbytes, nf);

Completed in 17 milliseconds