Lines Matching refs:AdbError
184 class AdbError(Exception): class
229 except AdbError as ex:
245 raise AdbError('Error executing adb command: {}\n{}'.format(' '.join(command), repr(ex)))
248 …raise AdbError('Error executing adb command: adb {}\n{}'.format(params, ex.output.decode("utf-8")))
260 raise AdbError('Error executing adb command: adb {}\n'.format(params) + err.decode(
264 raise AdbError('Error executing adb command: adb {}\n{}'.format(params, repr(ex)))
344 raise AdbError('Error executing adb command: adb shell\n{}'.format(repr(ex)))
436 raise AdbError(
462 raise AdbError(
492 raise AdbError(
503 …raise AdbError("Error executing command:\n" + command + "\n\n### OUTPUT ###" + out.decode('utf-8')…