Home
last modified time | relevance | path

Searched refs:CD9660_SECTOR_SIZE (Results 1 – 3 of 3) sorted by relevance

/freebsd/usr.sbin/makefs/cd9660/
H A Dcd9660_debug.c146 char temp[CD9660_SECTOR_SIZE]; in debug_print_volume_descriptor_information()
151 memset(temp, 0, CD9660_SECTOR_SIZE); in debug_print_volume_descriptor_information()
199 if (fseeko(fd, CD9660_SECTOR_SIZE * sector, SEEK_SET) == -1) in debug_dump_to_xml_path_table()
224 unsigned char buf[CD9660_SECTOR_SIZE]; in debug_dump_to_xml()
235 if (fseeko(fd, CD9660_SECTOR_SIZE * sector, SEEK_SET) == -1) in debug_dump_to_xml()
237 fread(buf, 1, CD9660_SECTOR_SIZE, fd); in debug_dump_to_xml()
241 memcpy(&bootVD, buf, CD9660_SECTOR_SIZE); in debug_dump_to_xml()
244 memcpy(&primaryVD, buf, CD9660_SECTOR_SIZE); in debug_dump_to_xml()
H A Dcd9660_write.c65 unsigned char buf[CD9660_SECTOR_SIZE]; in cd9660_write_image()
121 memset(buf, 0, CD9660_SECTOR_SIZE); in cd9660_write_image()
418 static char buf[CD9660_SECTOR_SIZE];
/freebsd/usr.sbin/makefs/
H A Dcd9660.h105 #define CD9660_SECTOR_SIZE 2048 macro