HomeSort by relevance Sort by last modified time
    Searched refs:ext2_qcow2_hdr (Results 1 - 3 of 3) sorted by null

  /external/e2fsprogs/lib/ext2fs/
qcow2.h 39 struct ext2_qcow2_hdr { struct
92 struct ext2_qcow2_hdr *hdr;
111 struct ext2_qcow2_hdr *qcow2_read_header(int);
112 int qcow2_write_raw_image(int, int, struct ext2_qcow2_hdr *);
qcow2.c 55 struct ext2_qcow2_hdr *qcow2_read_header(int fd)
58 struct ext2_qcow2_hdr *hdr = NULL;
62 ret = ext2fs_get_mem(sizeof(struct ext2_qcow2_hdr), &buffer);
65 memset(buffer, 0, sizeof(struct ext2_qcow2_hdr));
72 size = read(fd, buffer, sizeof(struct ext2_qcow2_hdr));
73 if (size != sizeof(struct ext2_qcow2_hdr)) {
78 hdr = (struct ext2_qcow2_hdr *)(buffer);
160 struct ext2_qcow2_hdr *hdr)
  /external/e2fsprogs/misc/
e2image.c 879 struct ext2_qcow2_hdr *header;
886 ret = ext2fs_get_memzero(sizeof(struct ext2_qcow2_hdr), &header);
901 header_size = (sizeof(struct ext2_qcow2_hdr) + 7) & ~7;
1158 header_size = align_offset(sizeof(struct ext2_qcow2_hdr),
1160 write_header(fd, img->hdr, sizeof(struct ext2_qcow2_hdr), header_size);
    [all...]

Completed in 1177 milliseconds