Lines Matching full:heads
14 usage: fdisk [-lu] [-C CYLINDERS] [-H HEADS] [-S SECTORS] [-b SECTSZ] DISK
21 -C CYLINDERS Set number of cylinders/heads/sectors
22 -H HEADS
33 long heads;
129 if (!g_heads) printf(" heads"); in chs_warn()
228 disk->heads = geometry.heads; in read_geometry()
372 disk.heads = disk.sectors = 0; in read_mbr()
379 g_heads = (toys.optflags & FLAG_H && TT.heads)? TT.heads : h? h : disk.heads? disk.heads : 255; in read_mbr()
507 xprintf("%ld heads, %ld sectors/track, %ld cylinders", g_heads, g_sectors, g_cylinders); in print_mbr()
1194 …xprintf("Disk %s: %lu heads, %lu sectors, %lu cylinders\n\n", disk_device, g_heads, g_sectors, g_c… in print_partitions_list()
1315 "h\tchange number of heads\n" in print_xmenu()
1358 case 'h': //change number of heads in expert_menu()
1359 sprintf(mesg, "Number of heads (1 - 256, default %lu): ", g_heads); in expert_menu()
1361 g_heads = TT.heads = value; in expert_menu()
1408 dev_geo.heads = 0; in disk_proper()
1470 if (TT.heads >= 256) TT.heads = 0; in fdisk_main()