Home | History | Annotate | Download | only in mscdlabel

Lines Matching defs:vd

16 printinfo(struct iso_primary_descriptor *vd)
20 strlcpy(label, vd->volume_id, sizeof(label));
27 d = vd->creation_date;
41 struct iso_primary_descriptor *vd;
44 vd = malloc(BLKSIZ);
47 res = pread(fd, vd, BLKSIZ, (start + i) * BLKSIZ);
53 if (memcmp(vd->id, ISO_STANDARD_ID, sizeof(vd->id)))
55 if (isonum_711(vd->type) == ISO_VD_PRIMARY) {
56 printinfo(vd);
59 } else if (isonum_711(vd->type) == ISO_VD_END)
63 free(vd);