Home | History | Annotate | Download | only in fdisk

Lines Matching defs:tmo

720 			int tmo;
725 tmo = le16toh(mboot.mbr_bootsel.mbrbs_timeo);
726 if (tmo == 0xffff)
730 (10 * tmo + 9) / 182);
1533 int tmo;
1553 tmo = le16toh(mbs->mbrbs_timeo);
1554 tmo = tmo == 0xffff ? -1 : (10 * tmo + 9) / 182;
1555 tmo = decimal("Timeout value (0 to 3600 seconds, -1 => never)",
1556 tmo, 0, -1, 3600);
1557 mbs->mbrbs_timeo = htole16(tmo == -1 ? 0xffff : (tmo * 182) / 10);
2664 unsigned int tmo;
2691 tmo = htole16(mbs->mbrbs_timeo);
2692 if (tmo != 0 && tmo != 0xffff && tmo != (10 * tmo + 9) / 182 * 182 / 10)