Searched refs:bytes_read (Results 1 - 9 of 9) sorted by relevance

/darwin-on-arm/xnu/bsd/kern/
H A Ddecmpfs.c986 decmpfs_fetch_uncompressed_data(vnode_t vp, decmpfs_cnode *cp, decmpfs_header *hdr, off_t offset, user_ssize_t size, int nvec, decmpfs_vector *vec, uint64_t *bytes_read) argument
992 *bytes_read = 0;
1017 err = fetch(vp, decmpfs_ctx, hdr, offset, size, nvec, vec, bytes_read);
1587 uint64_t bytes_read = 0; local
1589 err = decmpfs_fetch_uncompressed_data(vp, cp, hdr, offset, vec.size, 1, &vec, &bytes_read);
1595 if (bytes_read == 0) {
1601 err = uio_addiov(uio_w, CAST_USER_ADDR_T(data), bytes_read);
1614 offset += bytes_read;
1615 remaining -= bytes_read;
1723 decmpfs_fetch_uncompressed_data_Type1(__unused vnode_t vp, __unused vfs_context_t ctx, decmpfs_header *hdr, off_t offset, user_ssize_t size, int nvec, decmpfs_vector *vec, uint64_t *bytes_read) argument
[all...]
/darwin-on-arm/xnu/bsd/dev/random/
H A Drandomdev.c573 int bytes_read = 0; local
585 memmove ((u_int8_t*) buffer + bytes_read, ((u_int8_t*)g_random_data)+ g_bytes_used, bytes_to_read);
587 bytes_read += bytes_to_read;
/darwin-on-arm/xnu/bsd/sys/
H A Ddecmpfs.h132 typedef int (*decmpfs_fetch_uncompressed_data_func)(vnode_t vp, vfs_context_t ctx, decmpfs_header *hdr, off_t offset, user_ssize_t size, int nvec, decmpfs_vector *vec, uint64_t *bytes_read);
/darwin-on-arm/xnu/osfmk/default_pager/
H A Ddp_backing_store.c2566 io_buf_len_t bytes_read)
2595 unsigned int bytes_read; local
2637 (mach_msg_type_number_t *) &bytes_read);
2643 bytes_read = (unsigned int)vsa->vsa_size;
2647 if (kr != KERN_SUCCESS || bytes_read == 0) {
2650 total_read += bytes_read;
2655 if (bytes_read == size) {
2662 bytes_read, bytes_wanted));
2673 memcpy((void *) buf_ptr, (void *) dev_buffer, bytes_read);
2674 buf_ptr += bytes_read;
2563 device_read_reply_overwrite( MACH_PORT_FACE reply_port, kern_return_t return_code, io_buf_len_t bytes_read) argument
[all...]
/darwin-on-arm/xnu/bsd/nfs/
H A Dnfs.h498 uint64_t bytes_read; /* Count of bytes read from this export */ member in struct:nfs_export_stat_rec
515 uint64_t bytes_read; member in struct:nfs_user_stat_user_rec
563 struct nfsstatcount64 bytes_read; /* Count of bytes read from this export */ member in struct:nfs_export_stat_counters
594 uint64_t bytes_read; member in struct:nfs_user_stat_node
H A Dnfs_socket.c5576 size_t bytes_read; local
5607 bytes_read = 1000000000;
5608 error = sock_receivembuf(so, NULL, &mp, MSG_DONTWAIT, &bytes_read);
5620 slp->ns_cc += bytes_read;
5623 slp->ns_cc = bytes_read;
5653 bytes_read = 1000000000;
5654 error = sock_receivembuf(so, &msg, &mp, MSG_DONTWAIT | MSG_NEEDSA, &bytes_read);
H A Dnfs_vfsops.c5257 statrec.bytes_read = ((uint64_t)nx->nx_stats.bytes_read.hi << 32) |
5258 nx->nx_stats.bytes_read.lo;
5337 ustat_rec.bytes_read = unode->bytes_read;
H A Dnfs_subs.c3456 unode->bytes_read = 0;
3499 unode->bytes_read += rd_bytes;
H A Dnfs_serv.c956 NFSStatAdd64(&nx->nx_stats.bytes_read, len);

Completed in 177 milliseconds