Searched refs:AdbShellCommandFailedError (Results 1 – 15 of 15) sorted by relevance
/external/chromium-trace/catapult/devil/devil/android/sdk/ |
D | adb_compatibility_devicetest.py | 108 with self.assertRaises(device_errors.AdbShellCommandFailedError): 129 except device_errors.AdbShellCommandFailedError: 142 with self.assertRaises(device_errors.AdbShellCommandFailedError): 153 with self.assertRaises(device_errors.AdbShellCommandFailedError): 164 with self.assertRaises(device_errors.AdbShellCommandFailedError): 177 with self.assertRaises(device_errors.AdbShellCommandFailedError):
|
D | adb_wrapper_devicetest.py | 102 except device_errors.AdbShellCommandFailedError:
|
D | adb_wrapper.py | 556 except device_errors.AdbShellCommandFailedError: 652 raise device_errors.AdbShellCommandFailedError( 656 raise device_errors.AdbShellCommandFailedError(
|
/external/chromium-trace/catapult/devil/devil/android/tools/ |
D | device_monitor.py | 104 except device_errors.AdbShellCommandFailedError: 135 except device_errors.AdbShellCommandFailedError: 142 except (device_errors.AdbShellCommandFailedError, ValueError): 149 except (device_errors.AdbShellCommandFailedError, ValueError):
|
D | device_monitor_test.py | 62 raise device_errors.AdbShellCommandFailedError(cmd, None, None)
|
/external/chromium-trace/catapult/systrace/systrace/tracing_agents/ |
D | android_process_data_agent.py | 13 from devil.android.device_errors import AdbShellCommandFailedError 82 except AdbShellCommandFailedError:
|
D | atrace_process_dump.py | 14 from devil.android.device_errors import AdbShellCommandFailedError 58 except AdbShellCommandFailedError:
|
/external/chromium-trace/catapult/devil/devil/android/ |
D | device_errors.py | 151 class AdbShellCommandFailedError(AdbCommandFailedError): class 171 super(AdbShellCommandFailedError, self).__init__( 177 super_result = super(AdbShellCommandFailedError, self).__reduce__()
|
D | device_errors_test.py | 28 original = device_errors.AdbShellCommandFailedError(
|
D | md5sum.py | 118 except device_errors.AdbShellCommandFailedError as e:
|
D | md5sum_test.py | 189 error = device_errors.AdbShellCommandFailedError('cmd', 'out', 2)
|
D | device_utils.py | 1505 except device_errors.AdbShellCommandFailedError as exc: 1507 raise device_errors.AdbShellCommandFailedError( 1570 raise device_errors.AdbShellCommandFailedError( 1578 raise device_errors.AdbShellCommandFailedError( 2308 except device_errors.AdbShellCommandFailedError: 3054 except device_errors.AdbShellCommandFailedError as e: 3112 except device_errors.AdbShellCommandFailedError as e:
|
D | battery_utils_test.py | 91 raise device_errors.AdbShellCommandFailedError(cmd, output, status,
|
D | device_utils_test.py | 245 raise device_errors.AdbShellCommandFailedError(cmd, output, status, 1596 with self.assertRaises(device_errors.AdbShellCommandFailedError) as ec: 1606 with self.assertRaises(device_errors.AdbShellCommandFailedError) as ec: 1616 with self.assertRaises(device_errors.AdbShellCommandFailedError) as ec:
|
/external/chromium-trace/catapult/systrace/systrace/ |
D | util.py | 48 except device_errors.AdbShellCommandFailedError as error:
|