Home
last modified time | relevance | path

Searched refs:errorId (Results 1 – 25 of 32) sorted by relevance

12

/tools/tradefederation/core/device_build_interfaces/com/android/tradefed/targetprep/
DTargetSetupError.java49 public TargetSetupError(String reason, ErrorIdentifier errorId) { in TargetSetupError() argument
50 this(reason, null, null, true, errorId); in TargetSetupError()
72 public TargetSetupError(String reason, DeviceDescriptor descriptor, ErrorIdentifier errorId) { in TargetSetupError() argument
73 this(reason, null, descriptor, true, errorId); in TargetSetupError()
98 public TargetSetupError(String reason, Throwable cause, ErrorIdentifier errorId) { in TargetSetupError() argument
99 this(reason, cause, null, true, errorId); in TargetSetupError()
124 String reason, Throwable cause, DeviceDescriptor descriptor, ErrorIdentifier errorId) { in TargetSetupError() argument
125 this(reason, cause, descriptor, true, errorId); in TargetSetupError()
157 ErrorIdentifier errorId) { in TargetSetupError() argument
161 errorId); in TargetSetupError()
DBuildError.java53 public BuildError(String reason, DeviceDescriptor descriptor, ErrorIdentifier errorId) { in BuildError() argument
54 super(reason + " " + descriptor, errorId); in BuildError()
70 String reason, DeviceDescriptor descriptor, Throwable cause, ErrorIdentifier errorId) { in BuildError() argument
71 super(reason + " " + descriptor, cause, errorId); in BuildError()
/tools/tradefederation/core/common_util/com/android/tradefed/error/
DHarnessException.java32 public HarnessException(ErrorIdentifier errorId) { in HarnessException() argument
34 mErrorId = errorId; in HarnessException()
38 public HarnessException(String message, ErrorIdentifier errorId) { in HarnessException() argument
40 mErrorId = errorId; in HarnessException()
44 public HarnessException(Throwable cause, ErrorIdentifier errorId) { in HarnessException() argument
46 mErrorId = errorId; in HarnessException()
50 public HarnessException(String message, Throwable cause, ErrorIdentifier errorId) { in HarnessException() argument
52 mErrorId = errorId; in HarnessException()
DHarnessRuntimeException.java35 public HarnessRuntimeException(String message, ErrorIdentifier errorId) { in HarnessRuntimeException() argument
37 mErrorId = errorId; in HarnessRuntimeException()
63 public HarnessRuntimeException(String message, Throwable cause, ErrorIdentifier errorId) { in HarnessRuntimeException() argument
65 mErrorId = errorId; in HarnessRuntimeException()
DHarnessIOException.java28 public HarnessIOException(Throwable cause, ErrorIdentifier errorId) { in HarnessIOException() argument
30 mErrorId = errorId; in HarnessIOException()
/tools/tradefederation/core/src/com/android/tradefed/build/
DBuildRetrievalError.java44 public BuildRetrievalError(String reason, ErrorIdentifier errorId) { in BuildRetrievalError() argument
45 this(reason, null, errorId, null); in BuildRetrievalError()
66 public BuildRetrievalError(String reason, Throwable cause, ErrorIdentifier errorId) { in BuildRetrievalError() argument
67 this(reason, cause, errorId, null); in BuildRetrievalError()
92 String reason, Throwable cause, ErrorIdentifier errorId, IBuildInfo build) { in BuildRetrievalError() argument
93 super(reason, cause, errorId); in BuildRetrievalError()
/tools/tradefederation/core/common_util/com/android/tradefed/command/
DCommandInterrupter.java50 public ErrorIdentifier errorId; field in CommandInterrupter.MessageAndErrorId
52 MessageAndErrorId(String message, ErrorIdentifier errorId) { in MessageAndErrorId() argument
54 this.errorId = errorId; in MessageAndErrorId()
119 @Nonnull Thread thread, @Nonnull String message, ErrorIdentifier errorId) { in interrupt() argument
123 mInterruptMessage.put(thread, new MessageAndErrorId(message, errorId)); in interrupt()
138 throw new RunInterruptedException(error.message, error.errorId); in checkInterrupted()
DFatalHostError.java37 public FatalHostError(String msg, Throwable cause, ErrorIdentifier errorId) { in FatalHostError() argument
38 super(msg, cause, errorId); in FatalHostError()
60 public FatalHostError(String msg, ErrorIdentifier errorId) { in FatalHostError() argument
61 super(msg, errorId); in FatalHostError()
/tools/tradefederation/core/common_util/com/android/tradefed/util/
DRunInterruptedException.java32 public RunInterruptedException(String message, ErrorIdentifier errorId) { in RunInterruptedException() argument
33 super(message, errorId); in RunInterruptedException()
43 public RunInterruptedException(String message, Throwable cause, ErrorIdentifier errorId) { in RunInterruptedException() argument
44 super(message, cause, errorId); in RunInterruptedException()
/tools/tradefederation/core/device_build_interfaces/com/android/tradefed/device/
DDeviceRuntimeException.java38 public DeviceRuntimeException(String msg, ErrorIdentifier errorId) { in DeviceRuntimeException() argument
39 super(msg, errorId); in DeviceRuntimeException()
50 public DeviceRuntimeException(String msg, Throwable t, ErrorIdentifier errorId) { in DeviceRuntimeException() argument
51 super(msg, t, errorId); in DeviceRuntimeException()
DDeviceDisconnectedException.java48 public DeviceDisconnectedException(String msg, String serial, ErrorIdentifier errorId) { in DeviceDisconnectedException() argument
49 this(msg, null, serial, errorId); in DeviceDisconnectedException()
74 String msg, Throwable cause, String serial, ErrorIdentifier errorId) { in DeviceDisconnectedException() argument
75 super(msg, cause, serial, errorId); in DeviceDisconnectedException()
DDeviceUnresponsiveException.java48 public DeviceUnresponsiveException(String msg, String serial, ErrorIdentifier errorId) { in DeviceUnresponsiveException() argument
49 this(msg, null, serial, errorId); in DeviceUnresponsiveException()
74 String msg, Throwable cause, String serial, ErrorIdentifier errorId) { in DeviceUnresponsiveException() argument
75 super(msg, cause, serial, errorId); in DeviceUnresponsiveException()
DDeviceNotAvailableException.java75 public DeviceNotAvailableException(String msg, String serial, ErrorIdentifier errorId) { in DeviceNotAvailableException() argument
76 this(msg, null, serial, errorId); in DeviceNotAvailableException()
101 String msg, Throwable cause, String serial, ErrorIdentifier errorId) { in DeviceNotAvailableException() argument
102 super(msg, cause, errorId); in DeviceNotAvailableException()
/tools/tradefederation/core/src/com/android/tradefed/targetprep/
DDeviceFailedToBootError.java49 String reason, DeviceDescriptor descriptor, ErrorIdentifier errorId) { in DeviceFailedToBootError() argument
50 super(reason, descriptor, errorId); in DeviceFailedToBootError()
62 String reason, DeviceDescriptor descriptor, Throwable cause, ErrorIdentifier errorId) { in DeviceFailedToBootError() argument
63 super(reason, descriptor, cause, errorId); in DeviceFailedToBootError()
DModulePusher.java79 public ModulePushError(String message, Throwable cause, ErrorIdentifier errorId) { in ModulePushError() argument
80 super(message, cause, errorId); in ModulePushError()
83 public ModulePushError(String message, ErrorIdentifier errorId) { in ModulePushError() argument
84 super(message, errorId); in ModulePushError()
/tools/tradefederation/core/src/com/android/tradefed/device/
DNoDeviceException.java34 public NoDeviceException(String msg, ErrorIdentifier errorId) { in NoDeviceException() argument
35 super(msg, errorId); in NoDeviceException()
/tools/tradefederation/core/test_result_interfaces/com/android/tradefed/result/
DFailureDescription.java131 public FailureDescription setErrorIdentifier(ErrorIdentifier errorId) { in setErrorIdentifier() argument
132 mErrorId = errorId; in setErrorIdentifier()
133 if (getFailureStatus() == null && errorId != null) { in setErrorIdentifier()
134 mFailureStatus = errorId.status(); in setErrorIdentifier()
/tools/tradefederation/core/src/com/android/tradefed/config/
DIFileResolverLoader.java46 public ResolverLoadingException(@Nullable String message, ErrorIdentifier errorId) { in ResolverLoadingException() argument
47 super(message, errorId); in ResolverLoadingException()
/tools/tradefederation/core/src/com/android/tradefed/cluster/
DClusterCommandScheduler.java336 ErrorIdentifier errorId = null; in invocationComplete() local
345 errorId = InfraErrorIdentifier.LAB_HOST_FILESYSTEM_ERROR; in invocationComplete()
349 errorId.name(), ClusterHostUtil.getHostName()); in invocationComplete()
352 if (errorId == null && mFailureDescription != null) { in invocationComplete()
353 errorId = mFailureDescription.getErrorIdentifier(); in invocationComplete()
405 if (errorId != null) { in invocationComplete()
407 if (NONE_RETRIABLE_CONFIG_ERRORS.contains(errorId)) { in invocationComplete()
410 eventBuilder.setData(ClusterCommandEvent.DATA_KEY_ERROR_ID_NAME, errorId.name()); in invocationComplete()
411 eventBuilder.setData(ClusterCommandEvent.DATA_KEY_ERROR_ID_CODE, errorId.code()); in invocationComplete()
414 ErrorStorageUtil.mapStatus(errorId.status())); in invocationComplete()
[all …]
/tools/tradefederation/core/src/com/android/tradefed/device/cloud/
DGceAvdInfo.java353 InfraErrorIdentifier errorId = null; in parseGceInfoFromString() local
367 errorId = in parseGceInfoFromString()
371 if (errorId == InfraErrorIdentifier.ACLOUD_OXYGEN_LEASE_ERROR) { in parseGceInfoFromString()
372 errorId = refineOxygenErrorType(errors); in parseGceInfoFromString()
393 errorId, in parseGceInfoFromString()
415 if (errorId == null) { in parseGceInfoFromString()
416 errorId = InfraErrorIdentifier.ACLOUD_UNDETERMINED; in parseGceInfoFromString()
421 errorId); in parseGceInfoFromString()
/tools/tradefederation/core/src/com/android/tradefed/invoker/
DITestInvocation.java53 public default void notifyInvocationForceStopped(String message, ErrorIdentifier errorId) {} in notifyInvocationForceStopped() argument
DTestInvocation.java1484 public void notifyInvocationForceStopped(String message, ErrorIdentifier errorId) { in notifyInvocationForceStopped() argument
1486 mStopErrorId = errorId; in notifyInvocationForceStopped()
2034 long errorId = e.getErrorId().code(); in shouldSkipBugreportError() local
2037 if (errorId >= 505_250 && errorId < 505_300) { in shouldSkipBugreportError()
2042 if (errorId >= 500_501 && errorId < 501_000) { in shouldSkipBugreportError()
2047 if (errorId == 500_501 in shouldSkipBugreportError()
2048 || errorId == 500_003 in shouldSkipBugreportError()
2049 || errorId == 500_008 in shouldSkipBugreportError()
2050 || errorId == 500_009 in shouldSkipBugreportError()
2051 || errorId == 500_010 in shouldSkipBugreportError()
[all …]
/tools/apksig/src/main/java/com/android/apksig/
DSourceStampVerifier.java574 void addVerificationError(int errorId, Object... params) { in addVerificationError() argument
575 mErrors.add(new ApkVerificationIssue(errorId, params)); in addVerificationError()
757 void addVerificationError(int errorId, Object... params) { in addVerificationError() argument
758 mErrors.add(new ApkVerificationIssue(errorId, params)); in addVerificationError()
/tools/tradefederation/core/src/com/android/tradefed/util/
DSubprocessEventHelper.java278 ErrorIdentifier errorId = in InvocationFailedEventInfo() local
296 mFailure.setErrorIdentifier(errorId); in InvocationFailedEventInfo()
760 ErrorIdentifier errorId = in updateFailureFromJsonObject() local
778 failure.setErrorIdentifier(errorId); in updateFailureFromJsonObject()
/tools/tradefederation/core/test_framework/com/android/tradefed/testtype/
DGTestResultParser.java764 private void handleTestRunFailed(String errorMsg, ErrorIdentifier errorId) { in handleTestRunFailed() argument
799 if (errorId != null) { in handleTestRunFailed()
800 error.setErrorIdentifier(errorId); in handleTestRunFailed()

12