OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:bdrv_file_open
(Results
1 - 2
of
2
) sorted by null
/external/qemu/
block_int.h
55
int (*
bdrv_file_open
)(BlockDriverState *bs, const char *filename, int flags);
member in struct:BlockDriver
block.c
295
/* TODO Drivers without
bdrv_file_open
must be specified explicitly */
340
ret =
bdrv_file_open
(&bs, filename, 0);
456
if (drv->
bdrv_file_open
) {
457
ret = drv->
bdrv_file_open
(bs, filename, open_flags);
459
ret =
bdrv_file_open
(&bs->file, filename, open_flags);
497
int
bdrv_file_open
(BlockDriverState **pbs, const char *filename, int flags)
function
[
all
...]
Completed in 26 milliseconds