OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:cluster_cache
(Results
1 - 4
of
4
) sorted by null
/external/qemu/block/
qcow.c
70
uint8_t *
cluster_cache
;
member in struct:BDRVQcowState
148
s->
cluster_cache
= qemu_malloc(s->cluster_size);
149
if (!s->
cluster_cache
)
170
qemu_free(s->
cluster_cache
);
338
if (bdrv_pwrite(s->hd, cluster_offset, s->
cluster_cache
, s->cluster_size) !=
437
if (decompress_buffer(s->
cluster_cache
, s->cluster_size,
473
memcpy(buf, s->
cluster_cache
+ index_in_cluster * 512, 512 * n);
607
s->
cluster_cache
+ index_in_cluster * 512, 512 * acb->n);
740
qemu_free(s->
cluster_cache
);
qcow2.h
94
uint8_t *
cluster_cache
;
member in struct:BDRVQcowState
qcow2.c
224
s->
cluster_cache
= qemu_malloc(s->cluster_size);
263
qemu_free(s->
cluster_cache
);
461
s->
cluster_cache
+ index_in_cluster * 512, 512 * acb->n);
625
qemu_free(s->
cluster_cache
);
qcow2-cluster.c
335
memcpy(buf, s->
cluster_cache
+ index_in_cluster * 512, 512 * n);
793
if (decompress_buffer(s->
cluster_cache
, s->cluster_size,
Completed in 90 milliseconds