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

1 2

  /external/chromium-trace/catapult/devil/devil/android/
fastboot_utils_test.py 21 from devil.android.sdk import fastboot
62 fastbooter = mock.Mock(spec=fastboot.Fastboot)
81 self.fastboot = fastboot_utils.FastbootUtils(
84 self.fastboot._board = _BOARD
110 self.fastboot.WaitForFastbootMode()
117 self.call.fastboot._device.EnableRoot(),
118 self.call.fastboot._device.adb.Reboot(to_bootloader=True),
119 self.call.fastboot.WaitForFastbootMode()):
120 self.fastboot.EnableFastbootMode(
    [all...]
fastboot_utils.py 5 """Provides a variety of device interactions based on fastboot."""
17 from devil.android.sdk import fastboot
82 fastboot = fastboot_utils.FastbootUtils(device)
83 fastboot.FlashDevice('/path/to/build/directory')
87 fastbooter: Optional fastboot object. If none is passed, one will
100 self.fastboot = fastbooter
102 self.fastboot = fastboot.Fastboot(self._serial)
106 """Wait for device to boot into fastboot mode
    [all...]
  /external/libmojo/third_party/catapult/devil/devil/android/
fastboot_utils_test.py 21 from devil.android.sdk import fastboot
62 fastbooter = mock.Mock(spec=fastboot.Fastboot)
81 self.fastboot = fastboot_utils.FastbootUtils(
84 self.fastboot._board = _BOARD
110 self.fastboot.WaitForFastbootMode()
117 self.call.fastboot._device.EnableRoot(),
118 self.call.fastboot._device.adb.Reboot(to_bootloader=True),
119 self.call.fastboot.WaitForFastbootMode()):
120 self.fastboot.EnableFastbootMode(
    [all...]
fastboot_utils.py 5 """Provides a variety of device interactions based on fastboot."""
17 from devil.android.sdk import fastboot
80 fastboot = fastboot_utils.FastbootUtils(device)
81 fastboot.FlashDevice('/path/to/build/directory')
85 fastbooter: Optional fastboot object. If none is passed, one will
98 self.fastboot = fastbooter
100 self.fastboot = fastboot.Fastboot(self._serial)
104 """Wait for device to boot into fastboot mode
    [all...]
  /device/linaro/hikey/installer/hikey/
flash-all.sh 66 serialno=`fastboot getvar serialno 2>&1 > /dev/null`
68 fastboot oem serialno
71 fastboot oem serialno
74 fastboot flash ptable "${INSTALLER_DIR}"/"${PTABLE}"
75 fastboot flash fastboot "${FIRMWARE_DIR}"/fip.bin
76 fastboot flash nvme "${INSTALLER_DIR}"/nvme.img
77 fastboot flash boot "${OUT_IMGDIR}"/boot.img
78 fastboot flash system "${OUT_IMGDIR}"/system.img
79 fastboot flash cache "${OUT_IMGDIR}"/cache.im
    [all...]
  /device/linaro/hikey/factory-images/
generate-factory-images-hikey.sh 90 serialno=\`fastboot getvar serialno 2>&1 > /dev/null\`
92 fastboot oem serialno
95 fastboot oem serialno
98 fastboot flash ptable "\${PTABLE}"
99 fastboot flash fastboot fip.bin
100 fastboot flash nvme nvme.img
101 fastboot format userdata
102 fastboot format cache
103 fastboot update image-$PRODUCT-$VERSION.zi
    [all...]
  /device/common/
generate-factory-images-common.sh 108 fastboot oem unlock
114 fastboot erase boot
115 fastboot erase cache
116 fastboot erase recovery
117 fastboot erase system
118 fastboot erase userdata
124 fastboot flash xloader xloader-$DEVICE-$XLOADER.img
128 fastboot flash bootloader bootloader-$DEVICE-$BOOTLOADER.img
133 fastboot flash bootloader2 bootloader-$DEVICE-$BOOTLOADER.img
137 fastboot reboot-bootloade
    [all...]
  /external/toolchain-utils/binary_search_tool/android/
test_setup.sh 8 # bootloader mode and fastboot is used to flash the new image. The device is
24 echo " 1. Boot your device into fastboot mode."
28 echo " 4. Run '${ADB_DEVICE}fastboot flashall -w'"
46 echo "Please ensure your Android device is on and in fastboot mode so"
47 echo "fastboot flash may run."
52 echo " ${ADB_DEVICE}fastboot flashall -w"
53 fastboot flashall -w
60 echo "Rebooting device into fastboot mode."
65 echo "Waiting for device to reach fastboot mode."
67 # fastboot will block indefinitely until device comes online
    [all...]
  /system/extras/tests/bootloader/
bootloadertest.py 18 import fastboot
24 self.fastboot = fastboot.FastbootDevice()
49 val = self.fastboot.getvar(varname)
77 var_all = self.fastboot.getvar_all()
117 self.assertIsNone(self.fastboot.getvar("fhqwhgads"))
142 slotcountString = self.fastboot.getvar("slot-count")
165 val = self.fastboot.getvar("slot-count")
176 self.fastboot.set_active(slot)
177 self.assertEqual(slot, self.fastboot.getvar("current-slot")
    [all...]
  /development/tools/labpretest/sholes/
custom_flash.sh 33 secure=`$fastboot -s $device getvar secure 2>&1 | sed -n 's/secure: \([a-z]*\)\n*/\1/ p'`
  /development/build/tools/
patch_windows_sdk.sh 87 # Just to make it easier on the build servers, we want fastboot and adb
89 for i in fastboot.exe adb.exe AdbWinApi.dll AdbWinUsbApi.dll; do
windows_sdk.mk 40 fastboot \
  /external/chromium-trace/catapult/devil/devil/android/tools/
flash_device.py 49 fastboot = fastboot_utils.FastbootUtils(device)
51 fastboot.FlashDevice(args.build_path, wipe=args.wipe)
  /external/libmojo/third_party/catapult/devil/devil/android/tools/
flash_device.py 47 fastboot = fastboot_utils.FastbootUtils(device)
49 fastboot.FlashDevice(args.build_path, wipe=args.wipe)
  /system/core/fastboot/
Android.mk 29 fastboot.cpp \
37 LOCAL_MODULE := fastboot
81 # on the host fastboot tool, and shared libraries that link against libc++
93 # Archive fastboot.exe for win_sdk build.
  /test/vts/utils/python/controllers/
fastboot.py 22 This is fastboot's own exe_cmd because of its peculiar way of writing
43 """Raised when there is an error in fastboot operations."""
47 """Proxy class for fastboot.
49 For syntactic reasons, the '-' in fastboot commands need to be replaced
50 with '_'. Can directly execute fastboot commands on an object:
52 >> fb.devices() # will return the console output of "fastboot devices".
58 self.fastboot_str = "fastboot -s {}".format(serial)
60 self.fastboot_str = "fastboot"
android_device.py 32 from vts.utils.python.controllers import fastboot
132 generated by calling either adb or fastboot.
135 device_list_str: Output of adb or fastboot.
162 fastboot mode. These are detected by fastboot.
167 out = fastboot.FastbootProxy().devices()
168 return _parse_device_list(out, "fastboot")
322 handles to adb, fastboot, and various RPC clients.
339 fastboot: A FastbootProxy object used for interacting with the device
340 via fastboot
    [all...]
  /tools/tradefederation/core/prod-tests/src/com/android/fastboot/tests/
FastbootTest.java 16 package com.android.fastboot.tests;
52 * TODO: Add more fastboot test validation step.
79 + "DeviceFlashPreparer) to be used for the fastboot test", mandatory = true)
120 // reset fastboot path
166 File fastboot = getFastbootFile(mBuildInfo); local
167 if (fastboot == null) {
169 "Couldn't find the fastboot binary in build info.");
172 // Set the fastboot path for device
173 ((IManagedTestDevice)mDevice).setFastbootPath(fastboot.getAbsolutePath());
257 * flasher-class, allows anybody to tests fastboot using their own implementation of it
    [all...]
  /build/make/target/product/
embedded.mk 35 fastboot \
  /tools/test/connectivity/acts/framework/acts/controllers/
fastboot.py 23 """Raised when there is an error in fastboot operations."""
32 return ("Error executing fastboot cmd '%s'. ret: %d, stdout: %s,"
38 """Proxy class for fastboot.
40 For syntactic reasons, the '-' in fastboot commands need to be replaced
41 with '_'. Can directly execute fastboot commands on an object:
43 >> fb.devices() # will return the console output of "fastboot devices".
49 self.fastboot_str = "fastboot -s {}".format(serial)
51 self.fastboot_str = "fastboot"
68 # fastboot getvar outputs to stderr instead of stdout
android_device.py 33 from acts.controllers import fastboot
155 generated by calling either adb or fastboot.
158 device_list_str: Output of adb or fastboot.
180 fastboot mode. These are detected by fastboot.
185 out = fastboot.FastbootProxy().devices()
186 return _parse_device_list(out, "fastboot")
336 handles to adb, fastboot, and sl4a clients. In addition to direct adb
354 fastboot: A FastbootProxy object used for interacting with the device
355 via fastboot
    [all...]
  /development/build/
sdk-windows-x86.atree 34 rm platform-tools/fastboot
36 bin/fastboot.exe strip platform-tools/fastboot.exe
  /tools/tradefederation/core/src/com/android/tradefed/device/
DeviceManager.java 66 /** max wait time in ms for fastboot devices command to complete */
68 /** time to wait in ms between fastboot devices requests */
123 @Option(name = "fastboot-path", description = "path of the fastboot binary to use, "
125 private String mFastbootPath = "fastboot";
191 final FastbootHelper fastboot = new FastbootHelper(getRunUtil(), mFastbootPath); local
192 if (fastboot.isFastbootAvailable()) {
196 // don't set fastboot enabled bit until mFastbootListeners has been initialized
199 // Populate the fastboot devices
200 // TODO: remove when refactoring fastboot handlin
421 final FastbootHelper fastboot = new FastbootHelper(getRunUtil(), mFastbootPath); local
1104 final FastbootHelper fastboot = new FastbootHelper(getRunUtil(), mFastbootPath); local
    [all...]
  /external/autotest/server/hosts/
adb_host.py 40 FASTBOOT_CMD = 'fastboot'
56 r')[ \t]+(?:device|fastboot)')
82 # Default timeout for retrying adb/fastboot command.
113 # Default timeout in minutes for fastboot commands.
208 @param fastboot_serial: A fastboot device serial. If None, defaults to
247 msg += ', fastboot serial: %s' % self.fastboot_serial
306 """Runs an fastboot command.
319 """Runs an fastboot command with retry.
615 command, or `fastboot`, test if the device can be accessed by
616 fastboot command. Default is set to `adb`
    [all...]
  /system/core/adb/
Android.mk 38 # Much of adb is duplicated in bootable/recovery/minadb and fastboot. Changes

Completed in 1389 milliseconds

1 2