/src/lib/libpuffs/ |
requests.c | 64 size_t howmuch, winlen, curoff; local in function:puffs__fsframe_read 72 howmuch = sizeof(struct putter_hdr) - curoff; 77 howmuch = phdr.pth_framelen - curoff; 81 if (puffs_framebuf_reserve_space(pb, howmuch) == -1) 85 while (howmuch) { 86 winlen = howmuch; 99 howmuch -= n; 123 size_t winlen, howmuch, curoff; local in function:puffs__fsframe_write 154 howmuch = flen - puffs_framebuf_telloff(pb); 156 while (howmuch) { [all...] |
/src/usr.sbin/puffs/mount_9p/ |
ninebuf.c | 82 size_t howmuch, winlen; local in function:p9pbuf_read 87 howmuch = 4 - CUROFF(pb); 89 howmuch = p9pbuf_get_len(pb) - CUROFF(pb); 91 if (puffs_framebuf_reserve_space(pb, howmuch) == -1) 94 while (howmuch) { 95 winlen = howmuch; 107 howmuch -= n; 127 size_t winlen, howmuch; local in function:p9pbuf_write 136 howmuch = puffs_framebuf_tellsize(pb) - CUROFF(pb); 137 while (howmuch) { [all...] |
/src/usr.sbin/puffs/mount_psshfs/ |
psbuf.c | 96 size_t howmuch, winlen; local in function:psbuf_read 101 howmuch = 4 - CUROFF(pb); 103 howmuch = psbuf_get_len(pb) - (CUROFF(pb) - 4); 105 if (puffs_framebuf_reserve_space(pb, howmuch) == -1) 108 while (howmuch) { 109 winlen = howmuch; 121 howmuch -= n; 142 size_t winlen, howmuch; local in function:psbuf_write 152 howmuch = puffs_framebuf_tellsize(pb) - CUROFF(pb); 153 while (howmuch) { [all...] |
/src/sys/fs/puffs/ |
puffs_vnops.c | 1476 size_t howmuch, resid; local in function:puffs_vnop_readdir 1548 howmuch = resid - readdir_msg->pvnr_resid; 1551 if (howmuch == 0) { 1556 error = uiomove(readdir_msg->pvnr_data + cookiemem, howmuch, uio);
|