OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:bvd
(Results
1 - 2
of
2
) sorted by null
/external/syslinux/memdisk/
eltorito.c
29
/*
BVD
starts at sector 17. */
30
struct edd4_bvd *
bvd
= (struct edd4_bvd *)(image + 17 * 2048);
local
32
printf("
bvd
.boot_rec_ind: 0x%02x\n",
bvd
->boot_rec_ind);
33
printf("
bvd
.iso9660_id: %c%c%c%c%c\n",
bvd
->iso9660_id[0],
34
bvd
->iso9660_id[1],
bvd
->iso9660_id[2],
bvd
->iso9660_id[3],
35
bvd
->iso9660_id[4])
[
all
...]
setup.c
344
struct edd4_bvd *
bvd
= (struct edd4_bvd *)(where + 17 * 2048);
local
346
if ((
bvd
->boot_rec_ind != 0) || (
bvd
->ver != 1))
347
printf("El Torito
BVD
sanity check failed.\n");
349
(struct edd4_bootcat *)(where +
bvd
->boot_cat * 2048);
771
const struct edd4_bvd *
bvd
;
local
973
bvd
= (struct edd4_bvd *)(ramdisk_image + 17 * 2048);
975
(struct edd4_bootcat *)(ramdisk_image +
bvd
->boot_cat * 2048);
[
all
...]
Completed in 75 milliseconds