OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:validation_entry
(Results
1 - 4
of
4
) sorted by null
/external/syslinux/memdisk/
eltorito.c
43
printf("boot_cat.
validation_entry
\n");
44
printf(" .header_id: 0x%02x\n", boot_cat->
validation_entry
.header_id);
45
printf(" .platform_id: 0x%02x\n", boot_cat->
validation_entry
.platform_id);
46
printf(" .id_string: %s\n", boot_cat->
validation_entry
.id_string);
47
printf(" .checksum: 0x%04x\n", boot_cat->
validation_entry
.checksum);
48
printf(" .key55: 0x%02x\n", boot_cat->
validation_entry
.key55);
49
printf(" .keyAA: 0x%02x\n", boot_cat->
validation_entry
.keyAA);
eltorito.h
35
struct
validation_entry
{
struct
60
struct
validation_entry
validation_entry
;
member in struct:edd4_bootcat
setup.c
351
if ((boot_cat->
validation_entry
.platform_id != 0) ||
352
(boot_cat->
validation_entry
.key55 != 0x55) ||
353
(boot_cat->
validation_entry
.keyAA != 0xAA))
[
all
...]
/external/syslinux/gpxe/src/arch/i386/image/
eltorito.c
217
struct eltorito_validation_entry
validation_entry
;
local
227
copy_from_user ( &
validation_entry
, image->data, catalog_offset,
228
sizeof (
validation_entry
) );
229
if ( word_checksum ( &
validation_entry
,
230
sizeof (
validation_entry
) ) != 0 ) {
238
( catalog_offset + sizeof (
validation_entry
) ),
Completed in 564 milliseconds