Searched refs:start_block (Results 1 - 6 of 6) sorted by relevance

/barrelfish-master/usr/arrakismon/
H A Dhdd.c93 hdd_read_blocks (struct hdd *hdd, size_t start_block, size_t *count, argument
96 if (((start_block + *count) * BLOCK_SIZE) > hdd->disk_image_size) {
97 *count = hdd->disk_image_size/BLOCK_SIZE - start_block;
100 memcpy((void *)buffer, (void *)(hdd->disk_image + start_block*BLOCK_SIZE),
H A Dhdd.h34 int hdd_read_blocks (struct hdd *hdd, size_t start_block, size_t *count,
/barrelfish-master/usr/vmkitmon/
H A Dhdd.c93 hdd_read_blocks (struct hdd *hdd, size_t start_block, size_t *count, argument
96 if (((start_block + *count) * BLOCK_SIZE) > hdd->disk_image_size) {
97 *count = hdd->disk_image_size/BLOCK_SIZE - start_block;
100 memcpy((void *)buffer, (void *)(hdd->disk_image + start_block*BLOCK_SIZE),
H A Dhdd.h34 int hdd_read_blocks (struct hdd *hdd, size_t start_block, size_t *count,
/barrelfish-master/usr/block_server/
H A Dlocal_server.c292 uint32_t start_block,
305 err = block_net_read(block_server, start_block, count, seqn,
336 err = block_storage_read(start_block + i, buf->address);
339 (uint32_t) (start_block + count));
343 meta_data[i].block_id = start_block + i;
291 rx_read_request(struct block_service_binding *binding, uint32_t start_block, uint32_t count, uint32_t seqn) argument
H A Dnetwork_server.c233 size_t start_block,
264 err = block_storage_read(start_block + i, buf->address);
267 (uint32_t) (start_block + count));
271 meta_data[i].block_id = start_block + i;
231 handle_block_read(struct block_net_service*c, struct tcp_pcb *tpcb, size_t start_block, size_t count, uint32_t reqid, struct bulk_continuation cont) argument

Completed in 43 milliseconds