/src/usr.sbin/fstyp/ |
cd9660.c | 56 sector = read_buf(fp, ISO9660_OFFSET, 512);
|
fstyp.h | 57 void *read_buf(FILE *, off_t, size_t);
|
ext2fs.c | 66 fs = read_buf(fp, EXT2FS_SB_OFFSET, 512);
|
msdosfs.c | 63 sector0 = read_buf(fp, 0, 512); 132 sector = read_buf(fp, offset, fat_BytesPerSector);
|
apfs.c | 90 csb = read_buf(fp, 0, sizeof(*csb));
|
hfsplus.c | 108 hdr = read_buf(fp, VOL_HDR_OFF, sizeof(*hdr));
|
zfs.c | 66 vdev_label = (vdev_label_t *)read_buf(fp, 0, sizeof(*vdev_label));
|
ufs.c | 67 fs = (struct fs *)read_buf(fp, superblock, SBLOCKSIZE);
|
ntfs.c | 148 bf = read_buf(fp, 0, 512); 161 filerecp = read_buf(fp, voloff, recsize);
|
exfat.c | 141 return (read_buf(fp, sect * bytespersec, bytespersec * count)); 332 ev = (struct exfat_vbr *)read_buf(fp, 0, 512);
|
hammer2.c | 80 return read_buf(fp, (off_t)i * (off_t)HAMMER2_ZONE_BYTES64, 170 * beyond root volume limit. Fail with a message before read_buf() then. 186 media = read_buf(fp, (off_t)io_base, io_bytes);
|
fstyp.c | 100 read_buf(FILE *fp, off_t off, size_t len) function in typeref:typename:void *
|
hammer.c | 44 return (read_buf(fp, 0, sizeof(struct hammer_volume_ondisk)));
|
/src/lib/libisns/ |
isns_thread.c | 48 static struct iovec read_buf[2 + (ISNS_MAX_PDU_PAYLOAD / ISNS_BUF_SIZE) + variable in typeref:struct:iovec[] 275 iovp = read_buf; 296 read_buf[0].iov_base = &(pdu_p->hdr); 297 read_buf[0].iov_len = sizeof(struct isns_pdu_hdr_s); 300 iovp = read_buf; 387 read_buf[iovcnt].iov_base = isns_buffer_data( 389 read_buf[iovcnt].iov_len = curbuf_p->alloc_len - 395 read_buf[iovcnt].iov_base = isns_buffer_data(curbuf_p, 397 read_buf[iovcnt].iov_len = unread_len;
|
/src/tests/kernel/ |
t_memfd_create.c | 47 char *read_buf; variable in typeref:typename:char * 58 REQUIRE_LIBC(read_buf = calloc(1, rwbuf_size), NULL); 127 RL(read(fd, read_buf, rwbuf_size)); 134 ATF_REQUIRE_EQ_MSG(read_buf[i], write_buf[i], 155 tests_makegarbage(read_buf, rwbuf_size); 177 RL(read(fd, read_buf, rwbuf_size)); 180 ATF_REQUIRE_EQ_MSG(read_buf[i], write_buf[i], 183 ATF_REQUIRE_EQ_MSG(read_buf[i], 0,
|
/src/lib/librefuse/refuse/ |
v29.h | 92 int (*read_buf) (const char *, struct fuse_bufvec **, size_t, off_t, struct fuse_file_info *); member in struct:fuse_operations_v29
|
v34.h | 84 int (*read_buf) (const char *, struct fuse_bufvec **, size_t, off_t, struct fuse_file_info *); member in struct:fuse_operations_v34
|
v35.h | 85 int (*read_buf) (const char *, struct fuse_bufvec **, size_t, off_t, struct fuse_file_info *); member in struct:fuse_operations_v35
|
v30.h | 97 int (*read_buf) (const char *, struct fuse_bufvec **, size_t, off_t, struct fuse_file_info *); member in struct:fuse_operations_v30
|
v38.h | 84 int (*read_buf) (const char *, struct fuse_bufvec **, size_t, off_t, struct fuse_file_info *); member in struct:fuse_operations_v38
|
fs.c | 471 /* FUSE < 2.9 didn't have read_buf(). */ 482 if (((const struct __CONCAT(fuse_operations_v,VER)*)fs->op)->read_buf) \ 483 return ((const struct __CONCAT(fuse_operations_v,VER)*)fs->op)->read_buf(path, bufp, size, off, fi); \
|
/src/sys/external/bsd/drm2/dist/drm/amd/display/dc/inc/ |
dc_link_ddc.h | 97 uint8_t *read_buf,
|
/src/sys/external/bsd/drm2/dist/drm/amd/display/dc/core/ |
amdgpu_dc_link_ddc.c | 516 uint8_t *read_buf, 560 payload.data = read_buf; 578 payloads, address, read_size, read_buf, false);
|
/src/common/dist/zlib/ |
deflate.c | 220 local unsigned read_buf(z_streamp strm, Bytef *buf, unsigned size) { function in typeref:typename:local unsigned 305 n = read_buf(s->strm, s->window + s->strstart + s->lookahead, more); 570 s->wrap = 0; /* avoid computing Adler-32 in read_buf */ 915 * strm->next_out buffer and copying into it. (See also read_buf()). 1706 read_buf(s->strm, s->strm->next_out, len); 1774 read_buf(s->strm, s->window + s->strstart, have);
|
/src/sys/net/ |
zlib.c | 692 local int read_buf(z_streamp strm, Bytef *buf, unsigned size); 1022 * (See also read_buf()). 1288 local int read_buf(z_streamp strm, function in typeref:typename:local int 1655 n = read_buf(s->strm, s->window + s->strstart + s->lookahead, more);
|