Home
last modified time | relevance | path

Searched refs:UnsafeStateException (Results 1 – 5 of 5) sorted by relevance

/aosp12/frameworks/base/core/java/android/app/admin/
H A DUnsafeStateException.java41 public final class UnsafeStateException extends IllegalStateException implements Parcelable { class
48 public UnsafeStateException(@DevicePolicyOperation int operation, in UnsafeStateException() method in UnsafeStateException
92 public static final Creator<UnsafeStateException> CREATOR =
93 new Creator<UnsafeStateException>() {
96 public UnsafeStateException createFromParcel(Parcel source) {
97 return new UnsafeStateException(source.readInt(), source.readInt());
101 public UnsafeStateException[] newArray(int size) {
102 return new UnsafeStateException[size];
H A DDevicePolicySafetyChecker.java46 default UnsafeStateException newUnsafeStateException(@DevicePolicyOperation int operation, in newUnsafeStateException()
48 return new UnsafeStateException(operation, reason); in newUnsafeStateException()
/aosp12/frameworks/base/core/api/
H A Dtest-current.txt581 …public final class UnsafeStateException extends java.lang.IllegalStateException implements android…
582 ctor public UnsafeStateException(int, int);
H A Dcurrent.txt7674 …public final class UnsafeStateException extends java.lang.IllegalStateException implements android…
7678 … public static final android.os.Parcelable.Creator<android.app.admin.UnsafeStateException> CREATOR;
/aosp12/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
H A DDevicePolicyManagerService.java189 import android.app.admin.UnsafeStateException;
1243 throw new UnsafeStateException(operation, reason); in checkCanExecuteOrThrowUnsafe()