Home
last modified time | relevance | path

Searched refs:QCOW_MAGIC (Results 1 – 5 of 5) sorted by relevance

/external/e2fsprogs/lib/ext2fs/
Dqcow2.h31 #define QCOW_MAGIC (('Q' << 24) | ('F' << 16) | ('I' << 8) | 0xfb) macro
Dqcow2.c80 if ((ext2fs_be32_to_cpu(hdr->magic) != QCOW_MAGIC) || in qcow2_read_header()
/external/crosvm/disk/src/
Ddisk.rs22 pub use qcow::{QcowFile, QCOW_MAGIC};
298 if magic4 == QCOW_MAGIC.to_be_bytes() { in detect_image_type()
/external/crosvm/disk/src/qcow/
Dmod.rs131 pub const QCOW_MAGIC: u32 = 0x5146_49fb; constant
227 if magic != QCOW_MAGIC { in new()
286 magic: QCOW_MAGIC, in create_for_size_and_path()
/external/e2fsprogs/misc/
De2image.c909 header->magic = ext2fs_cpu_to_be32(QCOW_MAGIC); in initialize_qcow2_image()