Searched defs:reboot (Results 1 - 25 of 26) sorted by relevance

12

/external/toolchain-utils/binary_search_tool/common/
H A Dtest_setup.sh67 echo " 'update_engine_client --rollback --nopowerwash --reboot'"
75 reboot() function
114 reboot
117 echo "Could not automatically reboot device!"
118 read -p "Please manually reboot device and press enter to continue" notused
/external/toolchain-utils/binary_search_tool/cros_pkg/
H A Dtest_setup.sh67 echo " 'update_engine_client --rollback --nopowerwash --reboot'"
75 reboot() function
114 reboot
117 echo "Could not automatically reboot device!"
118 read -p "Please manually reboot device and press enter to continue" notused
/external/toolchain-utils/binary_search_tool/sysroot_wrapper/
H A Dtest_setup.sh67 echo " 'update_engine_client --rollback --nopowerwash --reboot'"
75 reboot() function
114 reboot
117 echo "Could not automatically reboot device!"
118 read -p "Please manually reboot device and press enter to continue" notused
/external/autotest/client/cros/
H A Dpower_strip.py17 def reboot(self, outlet, delay=0): member in class:PowerStrip
18 self.command('reboot', outlet, delay)
/external/autotest/server/cros/
H A Dsonic_client_utils.py34 # right across a reboot.
195 def reboot(self, when="now"): member in class:SonicProxy
197 Post to the server asking for a reboot.
199 @param when: The time till reboot. Can be any of:
201 fdr: set factory data reset flag and reboot now
202 ota: set recovery flag and reboot now
203 ota fdr: set both recovery and fdr flags, and reboot now
204 ota foreground: reboot and start force update page
205 idle: reboot only when idle screen usage > 10 mins
207 @raises SonicProxyException: if we're unable to post a reboot reques
[all...]
/external/autotest/server/hosts/
H A Dremote.py110 def reboot(self, timeout=DEFAULT_REBOOT_TIMEOUT, wait=True, member in class:RemoteHost
116 timeout - How long to wait for the reboot.
127 'reboot & sleep 60; '
128 'reboot -f & sleep 10; '
129 'reboot -nf & sleep 10; '
132 def reboot(): function in function:RemoteHost.reboot
134 self.record("GOOD", None, "reboot.start")
138 # sync before starting the reboot, so that a long sync during
145 self.record("ABORT", None, "reboot.start",
146 "reboot comman
[all...]
H A Dsonic_host.py11 resort to ssh (eg: to reboot into recovery). The server exposes the same stack
36 # Maximum time a reboot can take.
106 self.reboot()
135 Ssh ping is vital for connectivity checks and waiting on a reboot.
164 Since this method is usually called right after a reboot/install,
188 def reboot(self, timeout=5): member in class:SonicHost
194 self.client.reboot()
197 'Unable to reboot through the sonic proxy: %s' % e)
205 If removing state information fails, do a hard reboot. This will hit
206 our reboot metho
[all...]
H A Dmoblab_host.py146 def reboot(self, **dargs): member in class:MoblabHost
148 super(MoblabHost, self).reboot(**dargs)
149 # In general after a reboot, we want to wait till the web frontend
H A Dservo_host.py76 REBOOT_CMD = 'sleep 1; reboot & sleep 10; reboot -f'
355 """Choose which dut to schedule servo host reboot job.
358 scheduled for the servo host reboot job. For now we'll sort the
379 """Checks if a synchronized reboot has been scheduled for these duts.
401 """Schedule a job to reboot the servo host.
404 go through this entire flow of checking if a reboot is needed and
406 up a synchronized reboot but I'm coming up short on better ideas so I
411 @param force_reboot: Boolean to indicate if a forced reboot should be
431 logging.exception('Scheduling reboot jo
443 def reboot(self, *args, **dargs): member in class:ServoHost
[all...]
H A Dadb_host.py124 # to reboot the device and try again.
279 """Ensure the device remains in tcp/ip mode after a reboot."""
287 """Resets adbd connection to the device after a reboot/initialization"""
350 reboot with shell=False will call 'adb reboot'. This
648 def reboot(self): member in class:ADBHost
651 @raises AutoservRebootError if reboot failed.
653 # Not calling super.reboot() as we want to reboot the ADB device not
656 self.adb_run('reboot', timeou
[all...]
H A Dcros_host.py95 # POWERWASH_BOOT_TIMEOUT: Time to allow for a reboot that
112 # REBOOT_TIMEOUT: How long to wait for a reboot.
117 # return from reboot' bug is solved.
518 self.reboot(timeout=self.REBOOT_TIMEOUT, wait=True)
520 # After stateful update and a reboot, all of the test_files shouldn't
531 @param expected_kernel: kernel expected to be active after reboot,
871 self.reboot(timeout=self.REBOOT_TIMEOUT, wait=True)
919 # Updater has returned successfully; reboot the host.
924 # problem by clearing the TPM during the reboot.
932 self.reboot(timeou
1381 def reboot(self, **dargs): member in class:CrosHost
[all...]
/external/autotest/server/cros/servo/
H A Dchrome_ec.py207 def reboot(self, flags=''): member in class:ChromeEC
212 reboot command, including:
213 default: EC soft reboot;
214 'hard': EC hard/cold reboot;
215 'ap-off': Leave AP off after EC reboot (by default, EC turns
216 AP on after reboot if lid is open).
224 'The flag %s of EC reboot command is invalid.' % flag)
225 self.send_command("reboot %s" % flags)
/external/autotest/server/
H A Dsite_linux_system.py78 or to re-establish a good state after a reboot.
271 def reboot(self, timeout): member in class:LinuxSystem
277 self.host.reboot(timeout=timeout, wait=True)
H A Dsite_linux_router.py165 object, or to re-establish a good state after a reboot.
231 def reboot(self, timeout): member in class:LinuxRouter
237 super(LinuxRouter, self).reboot(timeout)
/external/autotest/client/common_lib/hosts/
H A Dbase_classes.py63 OP_REBOOT = 'reboot'
134 def reboot(self): member in class:Host
147 """Execute host reboot via SysRq key.
149 raise NotImplementedError('Sysrq reboot not implemented!')
153 """Prepare for reboot.
164 """Post reboot work.
228 not reboot between the two calls, and two different strings if it
280 """Wait for the host to come back from a reboot.
285 @param timeout: Max seconds to wait for reboot to start.
301 self.record("ABORT", None, "reboot
[all...]
/external/autotest/client/cros/chameleon/
H A Dchameleon.py42 be lost due to reboot.
257 def reboot(self): member in class:ChameleonBoard
/external/autotest/client/bin/
H A Djob.py676 self.record('START', None, 'reboot')
677 self.record('GOOD', None, 'reboot.start')
686 self.record("END ABORT", subdir, 'reboot', optional_fields=kernel)
695 @param running_id: An optional running_id to include in the reboot
699 pre-reboot configuration.
709 description = ("mounted partitions are different after reboot "
712 self._record_reboot_failure(subdir, "reboot.verify_config",
720 description = ('Number of CPUs changed after reboot '
723 self._record_reboot_failure(subdir, 'reboot.verify_config',
770 def reboot(sel member in class:base_client_job
1252 def reboot(self): member in class:job
[all...]
/external/dhcpcd-6.8.2/
H A Dif-options.h166 time_t reboot; member in struct:if_options
/external/guice/extensions/persist/lib/
H A Ddb4o-6.4.14.8131-java5.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/db4o/ com/db4o/activation/ com/db4o/cluster/ com/ ...
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 233 milliseconds

12