Home
last modified time | relevance | path

Searched refs:AdbShellCommandFailedError (Results 1 – 16 of 16) sorted by relevance

/external/chromium-trace/catapult/devil/devil/android/sdk/
Dadb_compatibility_devicetest.py111 with self.assertRaises(device_errors.AdbShellCommandFailedError):
132 except device_errors.AdbShellCommandFailedError:
145 with self.assertRaises(device_errors.AdbShellCommandFailedError):
156 with self.assertRaises(device_errors.AdbShellCommandFailedError):
168 with self.assertRaises(device_errors.AdbShellCommandFailedError):
181 with self.assertRaises(device_errors.AdbShellCommandFailedError):
Dadb_wrapper.py471 except device_errors.AdbShellCommandFailedError:
548 raise device_errors.AdbShellCommandFailedError(
552 raise device_errors.AdbShellCommandFailedError(
Dadb_wrapper_devicetest.py104 except device_errors.AdbShellCommandFailedError:
/external/chromium-trace/catapult/devil/devil/android/tools/
Ddevice_monitor.py105 except device_errors.AdbShellCommandFailedError:
134 except device_errors.AdbShellCommandFailedError:
141 except (device_errors.AdbShellCommandFailedError, ValueError):
148 except (device_errors.AdbShellCommandFailedError, ValueError):
Ddevice_monitor_test.py54 raise device_errors.AdbShellCommandFailedError(cmd, None, None)
/external/chromium-trace/catapult/systrace/systrace/tracing_agents/
Dandroid_process_data_agent.py13 from devil.android.device_errors import AdbShellCommandFailedError
82 except AdbShellCommandFailedError:
Datrace_process_dump.py14 from devil.android.device_errors import AdbShellCommandFailedError
58 except AdbShellCommandFailedError:
/external/chromium-trace/catapult/devil/devil/android/
Ddevice_errors.py117 class AdbShellCommandFailedError(AdbCommandFailedError): class
135 super(AdbShellCommandFailedError, self).__init__(
141 super_result = super(AdbShellCommandFailedError, self).__reduce__()
Ddevice_errors_test.py27 original = device_errors.AdbShellCommandFailedError(
Dmd5sum.py93 except device_errors.AdbShellCommandFailedError as e:
Dbattery_utils.py271 except device_errors.AdbShellCommandFailedError:
276 except device_errors.AdbShellCommandFailedError:
Ddevice_utils.py1183 raise device_errors.AdbShellCommandFailedError(
1191 raise device_errors.AdbShellCommandFailedError(
1505 except device_errors.AdbShellCommandFailedError as e:
1857 except device_errors.AdbShellCommandFailedError:
2456 except device_errors.AdbShellCommandFailedError as e:
2513 except device_errors.AdbShellCommandFailedError as e:
Dmd5sum_test.py219 error = device_errors.AdbShellCommandFailedError('cmd', 'out', 2)
Dbattery_utils_test.py75 raise device_errors.AdbShellCommandFailedError(
Ddevice_utils_test.py212 raise device_errors.AdbShellCommandFailedError(
1226 with self.assertRaises(device_errors.AdbShellCommandFailedError) as ec:
1236 with self.assertRaises(device_errors.AdbShellCommandFailedError) as ec:
1246 with self.assertRaises(device_errors.AdbShellCommandFailedError) as ec:
/external/chromium-trace/catapult/systrace/systrace/
Dutil.py50 except device_errors.AdbShellCommandFailedError as error: