HomeSort by relevance Sort by last modified time
    Searched refs:disks (Results 1 - 25 of 42) sorted by null

1 2

  /external/autotest/client/tests/disktest/
disktest.py 53 def run_once(self, disks=None, gigabytes=None, chunk_mb=None):
57 @param disks: List of directories (usually mountpoints) to be passed
66 if disks is None:
67 disks = [self.tmpdir]
70 for disk in disks:
87 for disk in disks:
  /external/gptfdisk/
current.spec 14 Partitioning software for GPT disks and to repair MBR disks. The gdisk,
17 some problems with MBR disks that can be created by buggy partitioning
24 Summary: An fdisk-like partitioning tool for GPT disks
27 An fdisk-like partitioning tool for GPT disks. GPT
31 and the ability to convert MBR disks to GPT format.
68 Summary: A tool for repairing certain types of damage to MBR disks
72 disks. Removes stray GPT data, fixes mis-sized extended partitions,
  /packages/apps/Settings/tests/uitests/src/com/android/settings/ui/
StorageWizardTest.java 150 String disks = mDevice.executeShellCommand("sm list-disks adoptable"); local
151 while ((disks == null || disks.isEmpty()) && attempt++ < 15) {
153 disks = mDevice.executeShellCommand("sm list-disks adoptable");
156 if (disks == null || disks.isEmpty()) {
160 return disks.split("\n")[0].trim();
  /tools/acloud/internal/script/
create_extradisk.sh 20 gcloud compute disks create "${DISK_NAME}" --zone=${ZONE} --project=${PROJECT} --size="${1}GB"
30 gcloud compute disks delete "${DISK_NAME}" --zone=${ZONE} --project=${PROJECT}
  /cts/hostsidetests/appsecurity/src/android/appsecurity/cts/
AdoptableHostTest.java 337 String disks = getDevice().executeShellCommand("sm list-disks adoptable"); local
338 while ((disks == null || disks.isEmpty()) && attempt++ < 15) {
340 disks = getDevice().executeShellCommand("sm list-disks adoptable");
343 if (disks == null || disks.isEmpty()) {
347 return disks.split("\n")[0].trim();
  /external/fio/tools/
genfio 27 DISKS=
51 one test after anoter but all disks at the same time
55 -d disk1[,disk2,disk3,..] : Run the tests on the selected disks
79 ETA ~ 4 tests * 4 disks * 100 seconds
81 ETA ~ 4 tests * 4 disks * 100 seconds
83 ETA ~ 4 tests * 4 disks * 100 seconds
150 for disk in $(echo $DISKS | tr "," " "); do
162 for disk in $(echo $DISKS | tr "," " "); do
250 DISKS=$OPTARG
251 PRINTABLE_DISKS=$(diskname_to_printable "$DISKS")
    [all...]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/
StorageSummaryFragment.java 145 // Find unreadable disks
146 final List<DiskInfo> disks = mStorageManager.getDisks(); local
147 final List<DiskInfo> unsupportedDisks = new ArrayList<>(disks.size());
148 for (final DiskInfo disk : disks) {
  /tools/acloud/internal/lib/
gcompute_client.py 155 https://cloud.google.com/compute/docs/reference/latest/disks#resource
157 api = self.service.disks().get(project=self._project,
199 api = self.service.disks().insert(project=self._project,
223 api = self.service.disks().delete(project=self._project,
232 """Delete multiple disks.
240 deleted: A list of names of disks that have been deleted.
241 failed: A list of names of disks that we fail to delete.
248 logger.info("Deleting disks: %s", disk_names)
251 request = self.service.disks().delete(project=self._project,
259 """List disks
    [all...]
  /external/python/cpython2/Lib/plat-mac/lib-scriptpackages/Finder/
Containers_and_folders.py 64 disks = disk variable
  /external/vboot_reference/
Android.mk 28 # These are required to access large disks and files on 32-bit systems.
139 # These are required to access large disks and files on 32-bit systems.
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/raid/
md_p.h 34 * 128 - 511 12 32-words descriptors of the disks in the raid set.
129 __u32 nr_disks; /* 9 total disks in the raid set */
130 __u32 raid_disks; /* 10 disks in a fully functional raid set */
143 __u32 active_disks; /* 2 Number of currently active disks */
144 __u32 working_disks; /* 3 Number of working disks */
145 __u32 failed_disks; /* 4 Number of failed disks */
146 __u32 spare_disks; /* 5 Number of spare disks */
178 * Disks information
180 mdp_disk_t disks[MD_SB_DISKS]; member in struct:mdp_superblock_s
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/lib-scriptpackages/Finder/
Containers_and_folders.py 64 disks = disk variable
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Finder/
Containers_and_folders.py 64 disks = disk variable
  /frameworks/base/cmds/sm/src/com/android/commands/sm/
Sm.java 70 if ("list-disks".equals(op)) {
111 final DiskInfo[] disks = mSm.getDisks(); local
112 for (DiskInfo disk : disks) {
300 System.err.println("usage: sm list-disks [adoptable]");
  /bionic/libc/kernel/uapi/linux/raid/
md_p.h 118 mdp_disk_t disks[MD_SB_DISKS]; member in struct:mdp_superblock_s
  /external/kernel-headers/original/uapi/linux/raid/
md_p.h 36 * 128 - 511 12 32-words descriptors of the disks in the raid set.
148 __u32 nr_disks; /* 9 total disks in the raid set */
149 __u32 raid_disks; /* 10 disks in a fully functional raid set */
162 __u32 active_disks; /* 2 Number of currently active disks */
163 __u32 working_disks; /* 3 Number of working disks */
164 __u32 failed_disks; /* 4 Number of failed disks */
165 __u32 spare_disks; /* 5 Number of spare disks */
199 * Disks information
201 mdp_disk_t disks[MD_SB_DISKS]; member in struct:mdp_superblock_s
  /external/python/cpython2/Lib/plat-mac/lib-scriptpackages/SystemEvents/
Disk_Folder_File_Suite.py 1 """Suite Disk-Folder-File Suite: Terms and Events for controlling Disks, Folders, and Files
125 disks = disk variable
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/lib-scriptpackages/SystemEvents/
Disk_Folder_File_Suite.py 1 """Suite Disk-Folder-File Suite: Terms and Events for controlling Disks, Folders, and Files
125 disks = disk variable
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/SystemEvents/
Disk_Folder_File_Suite.py 1 """Suite Disk-Folder-File Suite: Terms and Events for controlling Disks, Folders, and Files
125 disks = disk variable
  /external/syslinux/mbr/
oldmbr.asm 79 ; Check for CHS parameters. This doesn't work on floppy disks,
  /frameworks/base/packages/SystemUI/src/com/android/systemui/usb/
StorageNotification.java 170 final List<DiskInfo> disks = mStorageManager.getDisks(); local
171 for (DiskInfo disk : disks) {
356 // used to allow snoozing non-adoptable disks too.)
392 // Non-adoptable disks can't be snoozed.
  /packages/apps/Settings/src/com/android/settings/deviceinfo/
StorageSettings.java 204 // Show unsupported disks to give a chance to init
205 final List<DiskInfo> disks = mStorageManager.getDisks(); local
206 for (DiskInfo disk : disks) {
  /frameworks/base/core/java/android/os/storage/
StorageManager.java 959 final List<DiskInfo> disks = getDisks(); local
    [all...]
  /build/soong/third_party/zip/
reader.go 465 if b.uint32() != 1 { // total number of disks
writer.go 150 b.uint32(1) // total number of disks

Completed in 486 milliseconds

1 2