HelenOS sources

read               98 kernel/genarch/include/genarch/drivers/bcm2835/mbox.h 	ioport32_t read;
read               54 kernel/genarch/src/drivers/bcm2835/mbox.c 		msg = mbox->read;
read               97 uspace/app/init/untar.c 	.read = bd_tar_read,
read              100 uspace/app/terminal/terminal.c 	.read = term_read,
read               77 uspace/app/untar/main.c 	.read = tar_read,
read               71 uspace/app/wavplay/main.c 	size_t read = fread(&header, sizeof(header), 1, source);
read               72 uspace/app/wavplay/main.c 	if (read != 1) {
read               73 uspace/app/wavplay/main.c 		printf("Failed to read WAV header: %zu\n", read);
read              101 uspace/app/wavplay/main.c 	while ((read = fread(buffer, sizeof(char), READ_SIZE, source)) > 0) {
read              102 uspace/app/wavplay/main.c 		ret = hound_stream_write(stream, buffer, read);
read              132 uspace/app/wavplay/main.c 	size_t read = fread(&header, sizeof(header), 1, source);
read              133 uspace/app/wavplay/main.c 	if (read != 1) {
read              134 uspace/app/wavplay/main.c 		printf("Failed to read WAV header: %zu\n", read);
read              181 uspace/app/wavplay/main.c 	while ((read = fread(buffer, sizeof(char), READ_SIZE, source)) > 0) {
read              182 uspace/app/wavplay/main.c 		ret = hound_write_main_stream(hound, buffer, read);
read              200 uspace/drv/block/ddisk/ddisk.c static errno_t ddisk_rw_block(ddisk_t *ddisk, bool read, aoff64_t ba, void *buf)
read              205 uspace/drv/block/ddisk/ddisk.c 	    read, ba, buf);
read              215 uspace/drv/block/ddisk/ddisk.c 	if (!read)
read              222 uspace/drv/block/ddisk/ddisk.c 	    read ? DDISK_CMD_READ : DDISK_CMD_WRITE);
read              226 uspace/drv/block/ddisk/ddisk.c 	if (read)
read              160 uspace/drv/block/virtio-blk/virtio-blk.c static errno_t virtio_blk_rw_block(virtio_blk_t *virtio_blk, bool read,
read              190 uspace/drv/block/virtio-blk/virtio-blk.c 	    read ? VIRTIO_BLK_T_IN : VIRTIO_BLK_T_OUT);
read              194 uspace/drv/block/virtio-blk/virtio-blk.c 	if (!read)
read              208 uspace/drv/block/virtio-blk/virtio-blk.c 	    VIRTQ_DESC_F_NEXT | (read ? VIRTQ_DESC_F_WRITE : 0),
read              243 uspace/drv/block/virtio-blk/virtio-blk.c 	if (rc == EOK && read)
read              256 uspace/drv/block/virtio-blk/virtio-blk.c     void *buf, size_t size, bool read)
read              266 uspace/drv/block/virtio-blk/virtio-blk.c 		rc = virtio_blk_rw_block(virtio_blk, read, ba + i,
read               74 uspace/drv/char/i8042/i8042.c 	.read = i8042_read,
read               50 uspace/drv/char/msim-con/msim-con.c 	.read = msim_con_read,
read              321 uspace/drv/char/ns8250/ns8250.c 	.read = ns8250_read,
read               52 uspace/drv/char/pc-lpt/pc-lpt.c 	.read = pc_lpt_read,
read              149 uspace/drv/char/pl011/pl011.c 	.read = pl011_read,
read               77 uspace/drv/char/pl050/pl050.c 	.read = pl050_read,
read               62 uspace/drv/char/ski-con/ski-con.c 	.read = ski_con_read,
read               53 uspace/drv/char/sun4v-con/sun4v-con.c 	.read = sun4v_con_read,
read               59 uspace/lib/bithenge/include/bithenge/blob.h 	errno_t (*read)(bithenge_blob_t *self, aoff64_t offset, char *buffer,
read              115 uspace/lib/bithenge/include/bithenge/blob.h 	errno_t (*read)(bithenge_sequential_blob_t *self, char *buffer,
read              158 uspace/lib/bithenge/include/bithenge/blob.h 	if (!self->base.blob_ops->read)
read              160 uspace/lib/bithenge/include/bithenge/blob.h 	return self->base.blob_ops->read(self, offset, buffer, size);
read               57 uspace/lib/bithenge/src/blob.c 	assert(ops->read || ops->read_bits);
read               83 uspace/lib/bithenge/src/blob.c 	errno_t rc = blob->ops->read(blob, blob->buffer + blob->data_size, &size);
read              149 uspace/lib/bithenge/src/blob.c 	.read = sequential_read,
read              166 uspace/lib/bithenge/src/blob.c 	assert(ops->read);
read              227 uspace/lib/bithenge/src/blob.c 	.read = memory_read,
read              360 uspace/lib/bithenge/src/blob.c 	.read = subblob_read,
read             1125 uspace/lib/bithenge/src/expression.c 	.read = concat_blob_read,
read              200 uspace/lib/bithenge/src/failure.c 	return read(fd, buf, count);
read               96 uspace/lib/bithenge/src/file.c 	.read = file_read,
read               90 uspace/lib/bithenge/src/helenos/block.c 	.read = block_read,
read               68 uspace/lib/c/generic/io/io.c 	.read = stdio_kio_read,
read               75 uspace/lib/c/generic/io/io.c 	.read = stdio_vfs_read,
read              496 uspace/lib/c/generic/io/io.c 	return stream->ops->read(buf, size, nmemb, stream);
read               50 uspace/lib/c/generic/private/stdio.h 	size_t (*read)(void *buf, size_t size, size_t nmemb, FILE *stream);
read               48 uspace/lib/c/generic/stdio/sstream.c 	.read = stdio_str_read,
read               74 uspace/lib/console/include/io/con_srv.h 	errno_t (*read)(con_srv_t *, void *, size_t, size_t *);
read               88 uspace/lib/console/src/con_srv.c 	if (srv->srvs->ops->read == NULL) {
read               96 uspace/lib/console/src/con_srv.c 	rc = srv->srvs->ops->read(srv, buf, size, &nread);
read               62 uspace/lib/device/include/io/chardev_srv.h 	errno_t (*read)(chardev_srv_t *, void *, size_t, size_t *,
read               69 uspace/lib/device/src/io/chardev_srv.c 	if (srv->srvs->ops->read == NULL) {
read               76 uspace/lib/device/src/io/chardev_srv.c 	rc = srv->srvs->ops->read(srv, buf, size, &nread, flags);
read             1494 uspace/lib/ext4/src/ops.c 	.read = ext4_read,
read              161 uspace/lib/fs/libfs.c 	rc = vfs_out_ops->read(service_id, index, pos, &rbytes);
read               48 uspace/lib/fs/libfs.h 	errno_t (*read)(service_id_t, fs_index_t, aoff64_t, size_t *);
read              150 uspace/lib/label/include/types/liblabel.h 	errno_t (*read)(void *, aoff64_t, size_t, void *);
read              137 uspace/lib/label/src/empty.c 		rc = bd->ops->read(bd->arg, i, 1, buf);
read              152 uspace/lib/label/src/empty.c 		rc = bd->ops->read(bd->arg, nblocks - n + i, 1, buf);
read              149 uspace/lib/label/src/gpt.c 	rc = bd->ops->read(bd->arg, gpt_hdr_ba, 1, gpt_hdr[0]);
read              162 uspace/lib/label/src/gpt.c 	rc = bd->ops->read(bd->arg, h1ba, 1, gpt_hdr[1]);
read              290 uspace/lib/label/src/gpt.c 		rc = bd->ops->read(bd->arg, ptba[j], pt_blocks / 2, etable[j]);
read              891 uspace/lib/label/src/gpt.c 		rc = label->bd.ops->read(label->bd.arg, ba, nblocks, buf);
read              943 uspace/lib/label/src/gpt.c 		rc = label->bd.ops->read(label->bd.arg,
read              130 uspace/lib/label/src/mbr.c 	rc = bd->ops->read(bd->arg, mbr_ba, 1, mbr);
read              241 uspace/lib/label/src/mbr.c 		rc = label->bd.ops->read(label->bd.arg, ebr_b0, 1, ebr);
read             1029 uspace/lib/label/src/mbr.c 	rc = label->bd.ops->read(label->bd.arg, mbr_ba, 1, br);
read             1149 uspace/lib/label/src/mbr.c 	rc = label->bd.ops->read(label->bd.arg, ba, 1, br);
read               47 uspace/lib/label/test/label.c 	.read = label_test_read,
read              100 uspace/lib/pcut/src/os/unix.c 		actually_read = read(fd, buffer, buffer_size);
read               92 uspace/lib/posix/include/posix/unistd.h extern ssize_t read(int fildes, void *buf, size_t nbyte);
read              137 uspace/lib/posix/test/stdlib.c 	rc = read(file, &c, sizeof(c));
read               60 uspace/lib/untar/untar.c 	return tar->read(tar, data, size);
read               47 uspace/lib/untar/untar.h 	size_t (*read)(struct tar_file *, void *, size_t);
read              102 uspace/srv/bd/vbd/disk.c 	.read = vbds_label_read,
read             1428 uspace/srv/fs/cdfs/cdfs_ops.c 	.read = cdfs_read,
read             1620 uspace/srv/fs/exfat/exfat_ops.c 	.read = exfat_read,
read             1566 uspace/srv/fs/fat/fat_ops.c 	.read = fat_read,
read              774 uspace/srv/fs/locfs/locfs_ops.c 	.read = locfs_read,
read             1264 uspace/srv/fs/mfs/mfs_ops.c 	.read = mfs_read,
read              659 uspace/srv/fs/tmpfs/tmpfs_ops.c 	.read = tmpfs_read,
read              552 uspace/srv/fs/udf/udf_ops.c 	.read = udf_read,
read              168 uspace/srv/hid/console/console.c 	.read = cons_read,
read               88 uspace/srv/hid/remcons/remcons.c 	.read = NULL,
read               76 uspace/srv/hw/char/s3c24xx_uart/s3c24xx_uart.c 	.read = s3c24xx_uart_read,
read               80 uspace/srv/test/chardev-test/main.c 	.read = smallx_read
read               87 uspace/srv/test/chardev-test/main.c 	.read = largex_read
read               94 uspace/srv/test/chardev-test/main.c 	.read = partialx_read
read              355 uspace/srv/vfs/vfs_ops.c     ipc_call_t *answer, bool read, void *data)
read              368 uspace/srv/vfs/vfs_ops.c 	if (read) {
read              383 uspace/srv/vfs/vfs_ops.c     ipc_call_t *answer, bool read, void *data)
read              390 uspace/srv/vfs/vfs_ops.c 	aid_t msg = async_send_4(exch, read ? VFS_OUT_READ : VFS_OUT_WRITE,
read              410 uspace/srv/vfs/vfs_ops.c static errno_t vfs_rdwr(int fd, aoff64_t pos, bool read, rdwr_ipc_cb_t ipc_cb,
read              428 uspace/srv/vfs/vfs_ops.c 	if ((read && !file->open_read) || (!read && !file->open_write)) {
read              436 uspace/srv/vfs/vfs_ops.c 	bool rlock = read ||
read              455 uspace/srv/vfs/vfs_ops.c 		if (!read) {
read              472 uspace/srv/vfs/vfs_ops.c 	if (!read && file->append)
read              479 uspace/srv/vfs/vfs_ops.c 	errno_t rc = ipc_cb(fs_exch, file, pos, &answer, read, ipc_cb_data);
read              503 uspace/srv/vfs/vfs_ops.c errno_t vfs_rdwr_internal(int fd, aoff64_t pos, bool read, rdwr_io_chunk_t *chunk)
read              505 uspace/srv/vfs/vfs_ops.c 	return vfs_rdwr(fd, pos, read, rdwr_ipc_internal, chunk);
read               55 uspace/srv/volsrv/empty.c 	.read = empty_read,
HelenOS homepage, sources at GitHub