OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:cluster_cache
(Results
1 - 2
of
2
) sorted by null
/external/qemu/block/
qcow2.h
98
uint8_t *
cluster_cache
;
member in struct:BDRVQcowState
qcow.c
70
uint8_t *
cluster_cache
;
member in struct:BDRVQcowState
145
s->
cluster_cache
= qemu_malloc(s->cluster_size);
146
if (!s->
cluster_cache
)
167
qemu_free(s->
cluster_cache
);
335
if (bdrv_pwrite(bs->file, cluster_offset, s->
cluster_cache
, s->cluster_size) !=
435
if (decompress_buffer(s->
cluster_cache
, s->cluster_size,
471
memcpy(buf, s->
cluster_cache
+ index_in_cluster * 512, 512 * n);
605
s->
cluster_cache
+ index_in_cluster * 512, 512 * acb->n);
738
qemu_free(s->
cluster_cache
);
Completed in 29 milliseconds