| /vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/include/ |
| H A D | bios_disks.h | 22 uint8_t drive; member in struct:bios_disk_loc 31 uint8_t drive; member in struct:bios_disk_device 41 void ( *fill_drive_name ) ( char *buf, uint8_t drive );
|
| H A D | int13.h | 30 /** Get drive parameters */ 44 /** Get extended drive parameters */ 74 /** @defgroup int13fddtype INT 13 floppy disk drive types 121 /** Total number of sectors on drive */ 136 /** No such drive */ 156 /** Removable drive */ 176 /** Removable drive functions supported */ 214 uint8_t drive; member in struct:int13_cdrom_specification 434 /** A floppy drive parameter table */
|
| /vbox/src/VBox/Devices/PC/ipxe/src/hci/commands/ |
| H A D | sanboot_cmd.c | 40 unsigned int drive; member in struct:sanboot_options 49 OPTION_DESC ( "drive", 'd', required_argument, 50 struct sanboot_options, drive, parse_integer ), 60 "[--drive <drive>] [--no-describe] <root-path>" ); 65 "[--drive <drive>] [--no-describe] [--keep] " 71 "[--drive <drive>]" ); 93 opts.drive [all...] |
| /vbox/src/VBox/Devices/PC/ipxe/src/usr/ |
| H A D | autoboot.c | 126 * @v drive SAN drive (if applicable) 136 int uriboot ( struct uri *filename, struct uri *root_path, int drive, argument 140 (void)drive; 150 if ( ( rc = san_hook ( root_path, drive ) ) != 0 ) { 155 printf ( "Registered SAN device %#02x\n", drive ); 159 if ( ( drive >= 0 ) && ! ( flags & URIBOOT_NO_SAN_DESCRIBE ) ) { 160 if ( ( rc = san_describe ( drive ) ) != 0 ) { 162 drive, strerror ( rc ) ); 192 if ( ( drive > [all...] |
| /vbox/src/VBox/Devices/PC/BIOS/ |
| H A D | boot.c | 95 void print_boot_device(uint8_t cdboot, uint8_t lanboot, uint8_t drive) argument 101 // drive contains real/emulated boot drive 105 else if((drive&0x0080)==0x00)i=0; // Floppy 106 else if((drive&0x0080)==0x80)i=1; // Hard drive 117 void print_boot_failure(uint8_t cdboot, uint8_t lanboot, uint8_t drive, argument 120 uint16_t drivenum = drive&0x7f; 124 // drive : drive numbe [all...] |
| H A D | floppy.c | 57 void set_diskette_current_cyl(uint8_t drive, uint8_t cyl) argument 59 if (drive > 1) 60 BX_PANIC("set_diskette_current_cyl: drive > 1\n"); 61 write_byte(0x0040, 0x0094+drive, cyl); 139 void floppy_prepare_controller(uint16_t drive) argument 148 // turn on motor of selected drive, DMA & int enabled, normal operation 150 if (drive) 155 dor |= drive; 166 // wait for drive readiness 188 bx_bool floppy_media_known(uint16_t drive) argument 213 floppy_read_id(uint16_t drive) argument 254 floppy_drive_recal(uint16_t drive) argument 300 floppy_media_sense(uint16_t drive) argument 422 floppy_drive_exists(uint16_t drive) argument 451 uint8_t drive, num_sectors, track, sector, head; local [all...] |
| /vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/interface/pcbios/ |
| H A D | int13.c | 66 /** An INT 13 emulated drive */ 78 /** BIOS in-use drive number (0x00-0xff) */ 79 unsigned int drive; member in struct:int13_drive 80 /** BIOS natural drive number (0x00-0xff) 82 * This is the drive number that would have been assigned by 83 * 'naturally' appending the drive to the end of the BIOS 84 * drive list. 86 * If the emulated drive replaces a preexisting drive, this is 87 * the drive numbe 1740 int13_load_mbr( unsigned int drive, struct segoff *address ) argument 1803 int13_load_eltorito( unsigned int drive, struct segoff *address ) argument [all...] |
| /vbox/src/libs/xpcom18a4/xpcom/io/ |
| H A D | nsLocalFileWin.cpp | 664 // - normal: X:\some\path\on\this\drive 667 // - UNC path: \\machine\volume\some\path\on\this\drive 683 // search for first slash after the drive (or volume) name 798 // using ".." For a local drive this is the first slash (e.g. "c:\"). 801 PRInt32 rootIdx = 2; // default to local drive 814 // for that drive. To normalize it, the current working directory for 815 // that drive needs to be inserted before the supplied relative path 819 int drive = toupper(path.First()) - 'A' + 1; local 820 if (!_getdcwd(drive, pcwd, MAX_PATH)) 821 pcwd = _getdcwd(drive, 2430 const char *drive = mLetter; local [all...] |
| /vbox/src/VBox/Devices/Storage/ |
| H A D | DevFdc.cpp | 99 /* Floppy drive emulation */ 102 #define SET_CUR_DRV(fdctrl, drive) ((fdctrl)->cur_drv = (drive)) 109 /* Floppy disk drive emulation */ 119 FDRIVE_DRV_144 = 0x00, /* 1.44 MB 3"5 drive */ 120 FDRIVE_DRV_288 = 0x01, /* 2.88 MB 3"5 drive */ 121 FDRIVE_DRV_120 = 0x02, /* 1.2 MB 5"25 drive */ 122 FDRIVE_DRV_NONE = 0x03 /* No drive connected */ 124 , FDRIVE_DRV_FAKE_15_6 = 0x0e /* Fake 15.6 MB drive. */ 125 , FDRIVE_DRV_FAKE_63_5 = 0x0f /* Fake 63.5 MB drive 171 fdrive_type_t drive; member in struct:fdrive_t 306 fdrive_type_t drive; member in struct:fd_format_t [all...] |