HomeSort by: relevance | last modified time | path
    Searched defs:rlen (Results 1 - 25 of 136) sorted by relevancy

1 2 3 4 5 6

  /src/sys/dev/microcode/ral/
build.c 33 ssize_t rlen; local in function:output
42 rlen = write(fd, ucode, size);
43 if (rlen == -1)
45 if (rlen != size)
build.c 33 ssize_t rlen; local in function:output
42 rlen = write(fd, ucode, size);
43 if (rlen == -1)
45 if (rlen != size)
  /src/sys/dev/microcode/rum/
build.c 33 ssize_t rlen; local in function:output
42 rlen = write(fd, ucode, size);
43 if (rlen == -1)
45 if (rlen != size)
build.c 33 ssize_t rlen; local in function:output
42 rlen = write(fd, ucode, size);
43 if (rlen == -1)
45 if (rlen != size)
  /src/sys/dev/microcode/run/
build.c 33 ssize_t rlen; local in function:output
42 rlen = write(fd, ucode, size);
43 if (rlen == -1)
45 if (rlen != size)
build.c 33 ssize_t rlen; local in function:output
42 rlen = write(fd, ucode, size);
43 if (rlen == -1)
45 if (rlen != size)
  /src/sys/dev/microcode/zyd/
build.c 32 ssize_t rlen; local in function:output
41 rlen = write(fd, ucode, size);
42 if (rlen == -1)
44 if (rlen != size)
build.c 32 ssize_t rlen; local in function:output
41 rlen = write(fd, ucode, size);
42 if (rlen == -1)
44 if (rlen != size)
  /src/games/boggle/mkindex/
mkindex.c 57 int clen, rlen, prev, i; local in function:main
63 while (nextword(stdin, buf, &clen, &rlen) != NULL) {
95 * rlen to the strlen() of the real word
98 nextword(FILE *fp, char *buffer, int *clen, int *rlen)
121 *rlen = (int) (p - buf);
122 *clen = *rlen - *clen;
mkindex.c 57 int clen, rlen, prev, i; local in function:main
63 while (nextword(stdin, buf, &clen, &rlen) != NULL) {
95 * rlen to the strlen() of the real word
98 nextword(FILE *fp, char *buffer, int *clen, int *rlen)
121 *rlen = (int) (p - buf);
122 *clen = *rlen - *clen;
  /src/sys/dev/hyperv/
hvheartbeat.c 115 uint32_t rlen; local in function:hvheartbeat_channel_cb
119 &rlen, &rid, 0);
120 if (error || rlen == 0) {
123 device_xname(vsc->sc_dev), error, rlen);
127 if (rlen < sizeof(*hdr)) {
129 device_xname(vsc->sc_dev), rlen);
136 error = vmbusic_negotiate(vsc, hdr, &rlen,
143 if (rlen < VMBUS_ICMSG_HEARTBEAT_SIZE_MIN) {
145 device_xname(vsc->sc_dev), rlen);
159 (void) vmbusic_sendresp(vsc, ch, vsc->sc_buf, rlen, rid)
    [all...]
hvheartbeat.c 115 uint32_t rlen; local in function:hvheartbeat_channel_cb
119 &rlen, &rid, 0);
120 if (error || rlen == 0) {
123 device_xname(vsc->sc_dev), error, rlen);
127 if (rlen < sizeof(*hdr)) {
129 device_xname(vsc->sc_dev), rlen);
136 error = vmbusic_negotiate(vsc, hdr, &rlen,
143 if (rlen < VMBUS_ICMSG_HEARTBEAT_SIZE_MIN) {
145 device_xname(vsc->sc_dev), rlen);
159 (void) vmbusic_sendresp(vsc, ch, vsc->sc_buf, rlen, rid)
    [all...]
hvshutdown.c 137 uint32_t rlen; local in function:hvshutdown_channel_cb
142 &rlen, &rid, 0);
143 if (error || rlen == 0) {
146 device_xname(vsc->sc_dev), error, rlen);
150 if (rlen < sizeof(*hdr)) {
152 device_xname(vsc->sc_dev), rlen);
159 error = vmbusic_negotiate(vsc, hdr, &rlen, VMBUS_SHUTDOWN_FWVER,
166 if (rlen < VMBUS_ICMSG_SHUTDOWN_SIZE_MIN) {
168 device_xname(vsc->sc_dev), rlen);
191 (void) vmbusic_sendresp(vsc, ch, vsc->sc_buf, rlen, rid)
    [all...]
hvshutdown.c 137 uint32_t rlen; local in function:hvshutdown_channel_cb
142 &rlen, &rid, 0);
143 if (error || rlen == 0) {
146 device_xname(vsc->sc_dev), error, rlen);
150 if (rlen < sizeof(*hdr)) {
152 device_xname(vsc->sc_dev), rlen);
159 error = vmbusic_negotiate(vsc, hdr, &rlen, VMBUS_SHUTDOWN_FWVER,
166 if (rlen < VMBUS_ICMSG_SHUTDOWN_SIZE_MIN) {
168 device_xname(vsc->sc_dev), rlen);
191 (void) vmbusic_sendresp(vsc, ch, vsc->sc_buf, rlen, rid)
    [all...]
  /src/libexec/httpd/
dir-index-bozo.c 63 ssize_t rlen; local in function:bozo_dir_index
213 rlen = read(fd, buf, sizeof buf);
214 if (rlen <= 0)
216 bozo_write(httpd, STDOUT_FILENO, buf, rlen);
dir-index-bozo.c 63 ssize_t rlen; local in function:bozo_dir_index
213 rlen = read(fd, buf, sizeof buf);
214 if (rlen <= 0)
216 bozo_write(httpd, STDOUT_FILENO, buf, rlen);
  /src/lib/libbluetooth/
sdp_service.c 221 size_t rlen, count; local in function:sdp_service_attribute
263 rlen = 0;
296 if (rlen + count > sdp_response_max())
299 rbuf = realloc(ss->rbuf, rlen + count);
304 memcpy(rbuf + rlen, ptr, count);
305 rlen += count;
323 rsp->end = rbuf + rlen;
324 if (sdp_data_size(rsp) != (ssize_t)rlen
346 size_t rlen, count; local in function:sdp_service_search_attribute
399 rlen = 0
    [all...]
sdp_service.c 221 size_t rlen, count; local in function:sdp_service_attribute
263 rlen = 0;
296 if (rlen + count > sdp_response_max())
299 rbuf = realloc(ss->rbuf, rlen + count);
304 memcpy(rbuf + rlen, ptr, count);
305 rlen += count;
323 rsp->end = rbuf + rlen;
324 if (sdp_data_size(rsp) != (ssize_t)rlen
346 size_t rlen, count; local in function:sdp_service_search_attribute
399 rlen = 0
    [all...]
  /src/sys/arch/hpcmips/stand/lcboot/
if_cs.c 197 int rlen; local in function:cs_get
202 rlen = 0;
203 while (getsecs() - t < timeout && rlen == 0) {
211 rlen = CS_READ_2(PORT_RXTX_DATA);
213 if (rlen > len) {
215 rlen = 0;
220 for (i = rlen >> 1; i > 0; i--)
222 if (rlen & 1)
228 return rlen;
if_cs.c 197 int rlen; local in function:cs_get
202 rlen = 0;
203 while (getsecs() - t < timeout && rlen == 0) {
211 rlen = CS_READ_2(PORT_RXTX_DATA);
213 if (rlen > len) {
215 rlen = 0;
220 for (i = rlen >> 1; i > 0; i--)
222 if (rlen & 1)
228 return rlen;
  /src/usr.sbin/rarpd/
mkarp.c 212 int rlen; local in function:rtmsg
256 if ((rlen = write(s, (char *)&m_rtmsg, l)) < 0) {
mkarp.c 212 int rlen; local in function:rtmsg
256 if ((rlen = write(s, (char *)&m_rtmsg, l)) < 0) {
  /src/sys/external/bsd/libnv/dist/
nv_kern_netbsd.c 108 size_t len, rlen; local in function:nvlist_copyout
122 rlen = round_page(len);
123 error = uvm_mmap_anon(p, &uaddr, rlen);
130 (vaddr_t)uaddr + rlen);
nv_kern_netbsd.c 108 size_t len, rlen; local in function:nvlist_copyout
122 rlen = round_page(len);
123 error = uvm_mmap_anon(p, &uaddr, rlen);
130 (vaddr_t)uaddr + rlen);
  /src/games/hack/
hack.lev.c 313 ssize_t rlen; local in function:mread
315 rlen = read(fd, buf, len);
316 if (rlen < 0 || (size_t)rlen != len) {
317 pline("Read %zd instead of %zu bytes.\n", rlen, len);

Completed in 28 milliseconds

1 2 3 4 5 6