/tools/tradefederation/core/device_build_interfaces/com/android/tradefed/targetprep/ |
D | TargetSetupError.java | 38 public TargetSetupError(String reason) { in TargetSetupError() argument 39 super(reason, null); in TargetSetupError() 49 public TargetSetupError(String reason, ErrorIdentifier errorId) { in TargetSetupError() argument 50 this(reason, null, null, true, errorId); in TargetSetupError() 60 public TargetSetupError(String reason, DeviceDescriptor descriptor) { in TargetSetupError() argument 61 this(reason, null, descriptor, true, null); in TargetSetupError() 72 public TargetSetupError(String reason, DeviceDescriptor descriptor, ErrorIdentifier errorId) { in TargetSetupError() argument 73 this(reason, null, descriptor, true, errorId); in TargetSetupError() 86 public TargetSetupError(String reason, Throwable cause) { in TargetSetupError() argument 87 this(reason, cause, null, true, null); in TargetSetupError() [all …]
|
D | BuildError.java | 38 public BuildError(String reason, DeviceDescriptor descriptor) { in BuildError() argument 39 super(reason + " " + descriptor, null); in BuildError() 53 public BuildError(String reason, DeviceDescriptor descriptor, ErrorIdentifier errorId) { in BuildError() argument 54 super(reason + " " + descriptor, errorId); in BuildError()
|
/tools/tradefederation/core/src/com/android/tradefed/build/ |
D | BuildRetrievalError.java | 34 public BuildRetrievalError(String reason) { in BuildRetrievalError() argument 35 this(reason, null, null, null); in BuildRetrievalError() 44 public BuildRetrievalError(String reason, ErrorIdentifier errorId) { in BuildRetrievalError() argument 45 this(reason, null, errorId, null); in BuildRetrievalError() 55 public BuildRetrievalError(String reason, Throwable cause) { in BuildRetrievalError() argument 56 this(reason, cause, null, null); in BuildRetrievalError() 66 public BuildRetrievalError(String reason, Throwable cause, ErrorIdentifier errorId) { in BuildRetrievalError() argument 67 this(reason, cause, errorId, null); in BuildRetrievalError() 78 public BuildRetrievalError(String reason, Throwable cause, IBuildInfo build) { in BuildRetrievalError() argument 79 this(reason, cause, null, build); in BuildRetrievalError() [all …]
|
/tools/tradefederation/core/src/com/android/tradefed/device/ |
D | NativeDevice.java | 335 RebootDeviceAction(RebootMode rebootMode, @Nullable String reason) { in RebootDeviceAction() argument 337 mReason = reason; in RebootDeviceAction() 3013 public void reboot(@Nullable String reason) throws DeviceNotAvailableException { in reboot() argument 3014 rebootUntilOnline(reason); in reboot() 3065 public void rebootUntilOnline(@Nullable String reason) throws DeviceNotAvailableException { in rebootUntilOnline() argument 3066 doReboot(RebootMode.REBOOT_FULL, reason); in rebootUntilOnline() 3159 String formatRebootCommand(@Nullable String reason) { in formatRebootCommand() argument 3161 return Strings.isNullOrEmpty(reason) ? null : reason; in formatRebootCommand() 3163 return Strings.isNullOrEmpty(reason) ? mRebootTarget : mRebootTarget + "," + reason; in formatRebootCommand() 3182 void doReboot(RebootMode rebootMode, @Nullable final String reason) in doReboot() argument [all …]
|
D | TestDevice.java | 936 private boolean doAdbFrameworkReboot(RebootMode rebootMode, @Nullable final String reason) in doAdbFrameworkReboot() argument 955 String command = "svc power reboot " + rebootMode.formatRebootCommand(reason); in doAdbFrameworkReboot() 980 protected void doAdbReboot(RebootMode rebootMode, @Nullable final String reason) in doAdbReboot() argument 983 || !doAdbFrameworkReboot(rebootMode, reason)) { in doAdbReboot() 984 super.doAdbReboot(rebootMode, reason); in doAdbReboot()
|
/tools/tradefederation/core/src/com/android/tradefed/targetprep/ |
D | DeviceFailedToBootError.java | 37 public DeviceFailedToBootError(String reason, DeviceDescriptor descriptor) { in DeviceFailedToBootError() argument 38 super(reason, descriptor); in DeviceFailedToBootError() 48 String reason, DeviceDescriptor descriptor, ErrorIdentifier errorId) { in DeviceFailedToBootError() argument 49 super(reason, descriptor, errorId); in DeviceFailedToBootError()
|
/tools/tradefederation/core/src/com/android/tradefed/result/ |
D | LegacySubprocessResultsReporter.java | 68 public void testFailed(TestIdentifier testId, String reason) { in testFailed() argument 70 new FailedTestEventInfo(testId.getClassName(), testId.getTestName(), reason); in testFailed() 114 public void testRunFailed(String reason) { in testRunFailed() argument 115 TestRunFailedEventInfo info = new TestRunFailedEventInfo(reason); in testRunFailed()
|
D | SubprocessResultsReporter.java | 119 public void testFailed(TestDescription testId, String reason) { in testFailed() argument 121 new FailedTestEventInfo(testId.getClassName(), testId.getTestName(), reason); in testFailed() 143 public void testRunFailed(String reason) { in testRunFailed() argument 144 TestRunFailedEventInfo info = new TestRunFailedEventInfo(reason); in testRunFailed()
|
/tools/loganalysis/src/com/android/loganalysis/item/ |
D | AnrItem.java | 124 public void setReason(String reason) { in setReason() argument 125 setAttribute(REASON, reason); in setReason()
|
/tools/tradefederation/core/python-lib/tradefed_py/ |
D | tf_runner.py | 87 def addSkip(self, test, reason): argument 98 super(TextTestResult, self).addSkip(test, reason)
|
/tools/tradefederation/core/test_framework/com/android/tradefed/testtype/ |
D | PythonUnitTestResultParser.java | 169 public PythonUnitTestParseException(String reason) { in PythonUnitTestParseException() argument 170 super(reason); in PythonUnitTestParseException()
|
/tools/tradefederation/core/device_build_interfaces/com/android/tradefed/device/ |
D | INativeDevice.java | 948 public void reboot(@Nullable String reason) throws DeviceNotAvailableException; in reboot() argument 1014 public void rebootUntilOnline(@Nullable String reason) throws DeviceNotAvailableException; in rebootUntilOnline() argument
|
/tools/tradefederation/core/src/com/android/tradefed/device/cloud/ |
D | RemoteAndroidVirtualDevice.java | 344 protected void doAdbReboot(RebootMode rebootMode, @Nullable final String reason) in doAdbReboot() argument 348 super.doAdbReboot(rebootMode, reason); in doAdbReboot()
|
/tools/test/connectivity/acts/framework/acts/test_utils/bt/ |
D | bluetooth.proto | 124 // Numeric reason for disconnecting as defined in metrics.h 179 // The reason for disconnecting
|
/tools/tradefederation/core/src/com/android/tradefed/config/ |
D | ConfigurationXmlParser.java | 339 private void throwException(String reason) throws SAXException { in throwException() argument 341 "Failed to parse config xml '%s'. Reason: %s", mConfigDef.getName(), reason))); in throwException()
|
/tools/tradefederation/core/src/com/android/tradefed/util/ |
D | SubprocessEventHelper.java | 135 public TestRunFailedEventInfo(String reason) { in TestRunFailedEventInfo() argument 136 mReason = reason; in TestRunFailedEventInfo()
|
/tools/test/connectivity/acts/framework/acts/ |
D | base_test.py | 723 def _block_all_test_cases(self, tests, reason='Failed class setup'): argument 732 signal = signals.TestError(reason)
|
/tools/test/connectivity/acts/framework/acts/test_utils/tel/ |
D | TelephonyBaseTest.py | 560 def _block_all_test_cases(self, tests, reason='Failed class setup'): argument 563 signal = signals.TestFailure(reason)
|
/tools/tradefederation/core/tests/src/com/android/tradefed/device/ |
D | TestDeviceTest.java | 124 void doReboot(RebootMode rebootMode, @Nullable final String reason) in doReboot() argument 605 void doReboot(RebootMode rebootMode, @Nullable final String reason) in testExecuteShellCommand_recoveryRetry() 672 void doReboot(RebootMode rebootMode, @Nullable final String reason) in testExecuteShellCommand_recoveryTimeoutRetry() 722 void doReboot(RebootMode rebootMode, @Nullable final String reason) in testExecuteShellCommand_recoveryAttempts()
|
/tools/metalava/ |
D | FORMAT.md | 352 files, that method does not exist, but clearly it's there in the SDK. The reason 373 generated by the compiler. There's no reason to list these in the signature
|
/tools/test/connectivity/acts_tests/tests/google/tel/live/ |
D | TelLiveStressTest.py | 540 for reason in failure_reasons: 541 self.result_info["Call %s Failure" % reason] += 1
|
/tools/tradefederation/core/tests/res/testdata/ |
D | subprocess2.txt | 11 03-22 14:04:02 E/SubprocessResultsReporter: TEST_RUN_FAILED {"reason":"damn I failed"}
|
/tools/asuite/atest/proto/ |
D | external_user_log.proto | 17 // Occurs when atest exits for any reason
|
D | internal_user_log.proto | 21 // Occurs when atest exits for any reason
|
/tools/tradefederation/core/atest/proto/ |
D | external_user_log.proto | 17 // Occurs when atest exits for any reason
|