Home
last modified time | relevance | path

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

/netbsd-src/usr.sbin/makefs/cd9660/
H A Dcd9660_debug.c156 char temp[CD9660_SECTOR_SIZE]; in debug_print_volume_descriptor_information()
161 memset(temp, 0, CD9660_SECTOR_SIZE); in debug_print_volume_descriptor_information()
209 if (fseeko(fd, CD9660_SECTOR_SIZE * sector, SEEK_SET) == -1) in debug_dump_to_xml_path_table()
234 unsigned char buf[CD9660_SECTOR_SIZE]; in debug_dump_to_xml()
246 if (fseeko(fd, CD9660_SECTOR_SIZE * sector, SEEK_SET) == -1) in debug_dump_to_xml()
248 fread(buf, 1, CD9660_SECTOR_SIZE, fd); in debug_dump_to_xml()
252 memcpy(&bootVD, buf, CD9660_SECTOR_SIZE); in debug_dump_to_xml()
255 memcpy(&primaryVD, buf, CD9660_SECTOR_SIZE); in debug_dump_to_xml()
H A Dcd9660_write.c67 char buf[CD9660_SECTOR_SIZE]; in cd9660_write_image()
123 memset(buf, 0, CD9660_SECTOR_SIZE); in cd9660_write_image()
415 static char buf[CD9660_SECTOR_SIZE];
/netbsd-src/usr.sbin/makefs/
H A Dcd9660.h131 #define CD9660_SECTOR_SIZE 2048 macro