/tools/tradefederation/core/device_build_interfaces/com/android/tradefed/targetprep/ |
D | TargetSetupError.java | 49 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()
|
D | BuildError.java | 53 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/ |
D | HarnessException.java | 32 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()
|
D | HarnessRuntimeException.java | 35 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()
|
D | HarnessIOException.java | 28 public HarnessIOException(Throwable cause, ErrorIdentifier errorId) { in HarnessIOException() argument 30 mErrorId = errorId; in HarnessIOException()
|
/tools/tradefederation/core/src/com/android/tradefed/build/ |
D | BuildRetrievalError.java | 44 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/ |
D | CommandInterrupter.java | 50 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()
|
D | FatalHostError.java | 37 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/ |
D | RunInterruptedException.java | 32 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/ |
D | DeviceRuntimeException.java | 38 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()
|
D | DeviceDisconnectedException.java | 48 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()
|
D | DeviceUnresponsiveException.java | 48 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()
|
D | DeviceNotAvailableException.java | 75 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/ |
D | DeviceFailedToBootError.java | 49 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()
|
D | ModulePusher.java | 79 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/ |
D | NoDeviceException.java | 34 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/ |
D | FailureDescription.java | 131 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/ |
D | IFileResolverLoader.java | 46 public ResolverLoadingException(@Nullable String message, ErrorIdentifier errorId) { in ResolverLoadingException() argument 47 super(message, errorId); in ResolverLoadingException()
|
/tools/tradefederation/core/src/com/android/tradefed/cluster/ |
D | ClusterCommandScheduler.java | 336 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/ |
D | GceAvdInfo.java | 353 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/ |
D | ITestInvocation.java | 53 public default void notifyInvocationForceStopped(String message, ErrorIdentifier errorId) {} in notifyInvocationForceStopped() argument
|
D | TestInvocation.java | 1484 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/ |
D | SourceStampVerifier.java | 574 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/ |
D | SubprocessEventHelper.java | 278 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/ |
D | GTestResultParser.java | 764 private void handleTestRunFailed(String errorMsg, ErrorIdentifier errorId) { in handleTestRunFailed() argument 799 if (errorId != null) { in handleTestRunFailed() 800 error.setErrorIdentifier(errorId); in handleTestRunFailed()
|