HomeSort by relevance Sort by last modified time
    Searched full:drive (Results 151 - 175 of 1471) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/ltp/testcases/commands/eject/
eject-tests.sh 77 tst_res TPASS "Drive successfully ejected"
88 # Wait for the drive to spin up the disk
100 tst_res TCONF "Failed to mount $CD_DRIVE, no disk in drive?"
  /external/syslinux/com32/modules/
disk.c 24 struct driveinfo drive; local
25 struct driveinfo *d = &drive;
35 /* Do not print output when drive does not exists */
ifmemdsk.c 28 --no-sequential Suppresses probing all drive numbers\n\
162 static const s_mdi * installation_check(int drive) {
169 params.edx.w[0] = drive;
195 int found, drive; local
198 for (found = drive = 0; drive <= 0xFF; ++drive) {
199 mdi = installation_check(drive);
  /external/syslinux/memdisk/
eltorito.h 22 /* EDD-4 Bootable Optical Disc Drive Boot Volume Descriptor */
57 /* EDD-4 Bootable Optical Disc Drive Boot Catalog (fixed-size portions) */
69 uint8_t driveno; /* INT 13h drive number */
memdisk.inc 172 jb .nomatch ; Drive < Our drive
174 jae .nomatch ; Drive > The maximum drive
178 ; disc drive 0xA0 or 0xE0
179 dec dl ; Drive > Our drive, adjust drive #
193 cmp byte [cs:SavedAX+1],08h ; Get drive params function?
279 ; Therefore, if we are the *ONLY* floppy drive, and th
    [all...]
  /external/vboot_reference/cgpt/
cmd_prioritize.c 18 printf("\nUsage: %s prioritize [OPTIONS] DRIVE\n\n"
23 " both on DRIVE\n"
114 Error("missing drive argument\n");
  /external/kernel-headers/original/uapi/linux/
mtio.h 26 #define MTRESET 0 /* +reset drive in case of problems */
35 #define MTOFFL 7 /* rewind and put the drive offline (eject?) */
54 #define MTSETDRVBUFFER 24 /* set the drive buffering according to SCSI-2 */
60 #define MTLOCK 28 /* lock the drive door */
61 #define MTUNLOCK 29 /* unlock the drive door */
105 #define MT_ISTEAC_MT2ST 0x12 /* Teac MT-2ST 155mb drive, Teac DC-1 card (Wangtek type) */
pktcdvd.h 33 * use drive write caching -- we need deferred error handling to be
34 * able to successfully recover with this option (drive will return good
  /external/mockito/src/test/java/org/mockitousage/customization/
BDDMockitoTest.java 344 person.drive(car);
349 then(person).should(inOrder).drive(car);
359 person.drive(car);
360 person.drive(car);
364 then(person).should(inOrder, times(2)).drive(car);
373 void drive(Car car) { method in class:BDDMockitoTest.Person
  /external/syslinux/dosutil/
copybs.asm 17 ; Small DOS program to copy the boot sector from a drive
20 ; Usage: copybs <drive>: <file>
58 ; Scan command line for a drive letter followed by a colon
76 mov [DriveNo],al ; Save away drive index
122 msg_unfair: db 'Usage: copybs <drive>: <filename>', 0Dh, 0Ah, '$'
165 int 21h ; Get Drive Parameter Block
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
mtio.h 25 #define MTRESET 0 /* +reset drive in case of problems */
34 #define MTOFFL 7 /* rewind and put the drive offline (eject?) */
53 #define MTSETDRVBUFFER 24 /* set the drive buffering according to SCSI-2 */
59 #define MTLOCK 28 /* lock the drive door */
60 #define MTUNLOCK 29 /* unlock the drive door */
104 #define MT_ISTEAC_MT2ST 0x12 /* Teac MT-2ST 155mb drive, Teac DC-1 card (Wangtek type) */
pktcdvd.h 32 * use drive write caching -- we need deferred error handling to be
33 * able to successfully recover with this option (drive will return good
  /external/llvm/tools/opt/
NewPMDriver.h 1 //===- NewPMDriver.h - Function to drive opt with the new PM ----*- C++ -*-===//
11 /// A single function which is called to drive the opt behavior for the new
  /external/syslinux/doc/
usbkey.txt 1 The proper mode to boot a USB key drive in is "USB-HDD". That is the
35 MESSAGES CAREFULLY - IF YOU ENTER THE WRONG DISK DRIVE IT CANNOT BE
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/sys/
mtio.h 40 #define MTRESET 0 /* +reset drive in case of problems. */
48 #define MTOFFL 7 /* Rewind and put the drive offline (eject?). */
66 #define MTSETDRVBUFFER 24 /* Set the drive buffering according to SCSI-2.
72 #define MTLOCK 28 /* Lock the drive door. */
73 #define MTUNLOCK 29 /* Unlock the drive door. */
115 #define MT_ISTEAC_MT2ST 0x12 /* Teac MT-2ST 155mb drive,
148 {MT_ISTEAC_MT2ST, "Teac MT-2ST 155mb data cassette drive"}, \
170 long int mt_type; /* Drive type. */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/sys/
mtio.h 40 #define MTRESET 0 /* +reset drive in case of problems. */
48 #define MTOFFL 7 /* Rewind and put the drive offline (eject?). */
66 #define MTSETDRVBUFFER 24 /* Set the drive buffering according to SCSI-2.
72 #define MTLOCK 28 /* Lock the drive door. */
73 #define MTUNLOCK 29 /* Unlock the drive door. */
115 #define MT_ISTEAC_MT2ST 0x12 /* Teac MT-2ST 155mb drive,
148 {MT_ISTEAC_MT2ST, "Teac MT-2ST 155mb data cassette drive"}, \
170 long int mt_type; /* Drive type. */
  /external/python/cpython3/Doc/library/
os.path.rst 241 off a potential drive letter.
281 and POSIX variants. On Windows, a drive letter root and a share UNC are
302 On Windows, the drive letter is not reset when an absolute path component
303 (e.g., ``r'\foo'``) is encountered. If a component contains a drive
304 letter, all previous components are thrown away and the drive letter is
305 reset. Note that since there is a current directory for each drive,
307 directory on drive :file:`C:` (:file:`c:foo`), not :file:`c:\\foo`.
426 Split the pathname *path* into a pair ``(drive, tail)`` where *drive* is either
427 a mount point or the empty string. On systems which do not use drive
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Bus/Isa/IsaFloppyPei/
FloppyPeim.c 514 // How to determine drive and command are busy or not: by the bits of Main Status Register
515 // bit0: Drive 0 busy (drive A)
516 // bit1: Drive 1 busy (drive B)
519 // set mask: for drive A set bit0 & bit4; for drive B set bit1 & bit4
567 // Reset specified Floppy Logic Drive according to Fdd -> Disk
569 // bit0 & bit1 of DOR : Drive Select
575 // use bit0 & bit1 to select the logic drive
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Platforms/AMD/Styx/Binary/AmdModulePkg/Common/
MemSetup.h 64 UINT8 AddCtrlDriveStrength; ///< Address/Control Drive Strength
65 UINT8 ClockDriveStrengt; ///< Clock Drive Strength
66 UINT8 DataDMDriveStrength; ///< Data/DM Drive Strength
67 UINT8 DQSDriveStrength; ///< DQS Drive Strength
  /device/linaro/bootloader/arm-trusted-firmware/
dco.txt 5 1 Letterman Drive
  /device/linaro/bootloader/edk2/Nt32Pkg/WinNtSerialIoDxe/
WinNtSerialIoDxe.inf 5 # created by the NT Bus drive
  /external/autotest/utils/
emulator_manager.py 96 '-device', 'scsi-hd,drive=system',
97 '-drive', ('file="%s,if=none,id=system,format=raw"'
99 '-device', 'scsi-hd,drive=userdata',
100 '-drive', ('file="%s,if=none,id=userdata,format=raw"'
  /external/fio/examples/
ssd-steadystate.fio 3 # First we sequentially write the drive. Then we completely
  /external/python/cpython3/Lib/
macpath.py 99 """Split a pathname into a drive specification and the rest of the
100 path. Useful on DOS/Windows/NT; on the Mac, the drive is always
102 syntactic and semantic oddities as DOS drive letters, such as there
103 being a separate current directory per drive)."""
  /external/python/cpython3/Lib/test/
test_py_compile.py 23 # on different drives. Therefore we need to switch to the drive where
25 drive = os.path.splitdrive(self.source_path)[0]
26 if drive:
27 os.chdir(drive)

Completed in 501 milliseconds

1 2 3 4 5 67 8 91011>>