/aosp14/frameworks/base/core/java/android/app/ |
H A D | SyncNotedAppOp.java | 47 public final class SyncNotedAppOp implements Parcelable { class 66 public SyncNotedAppOp(int opMode, @IntRange(from = 0L) int opCode, in SyncNotedAppOp() method in SyncNotedAppOp 103 public SyncNotedAppOp(@IntRange(from = 0L) int opCode, @Nullable String attributionTag, in SyncNotedAppOp() method in SyncNotedAppOp 183 SyncNotedAppOp that = (SyncNotedAppOp) o; in equals() 229 /* package-private */ SyncNotedAppOp(@NonNull android.os.Parcel in) { in SyncNotedAppOp() method in SyncNotedAppOp 252 public static final @NonNull Parcelable.Creator<SyncNotedAppOp> CREATOR 253 = new Parcelable.Creator<SyncNotedAppOp>() { 255 public SyncNotedAppOp[] newArray(int size) { 256 return new SyncNotedAppOp[size]; 260 public SyncNotedAppOp createFromParcel(@NonNull android.os.Parcel in) { [all …]
|
H A D | AppOpsManagerInternal.java | 84 SyncNotedAppOp noteOperation(int code, int uid, @Nullable String packageName, in noteOperation() 88 SyncNotedAppOp> superImpl); in noteOperation() 102 SyncNotedAppOp noteProxyOperation(int code, @NonNull AttributionSource attributionSource, in noteProxyOperation() 106 Boolean, SyncNotedAppOp> superImpl); in noteProxyOperation() 125 SyncNotedAppOp startOperation(IBinder token, int code, int uid, in startOperation() 131 Boolean, String, Boolean, Integer, Integer, SyncNotedAppOp> superImpl); in startOperation() 150 SyncNotedAppOp startProxyOperation(@NonNull IBinder clientId, int code, in startProxyOperation() 157 SyncNotedAppOp> superImpl); in startProxyOperation()
|
H A D | SyncNotedAppOp.aidl | 19 parcelable SyncNotedAppOp;
|
H A D | AppOpsManager.java | 268 public void onNoted(@NonNull SyncNotedAppOp op) { 278 public void onSelfNoted(@NonNull SyncNotedAppOp op) { 282 private void reportStackTraceIfNeeded(@NonNull SyncNotedAppOp op) { 8590 SyncNotedAppOp syncOp = mService.noteProxyOperation(op, attributionSource, in noteProxyOpNoThrow() 8926 SyncNotedAppOp syncOp = mService.startOperation(token, op, uid, packageName, in startOpNoThrow() 9062 SyncNotedAppOp syncOp = mService.startProxyOperation(clientId, op, in startProxyOpNoThrow() 9335 private void collectNotedOpForSelf(SyncNotedAppOp syncOp) { in collectNotedOpForSelf() 9354 public static void collectNotedOpSync(@NonNull SyncNotedAppOp syncOp) { in collectNotedOpSync() 9510 sMessageCollector.onNoted(new SyncNotedAppOp(code, attributionTag)); in readAndLogNotedAppops() 9710 public abstract void onNoted(@NonNull SyncNotedAppOp op); in onNoted() [all …]
|
/aosp14/frameworks/base/core/java/com/android/internal/app/ |
H A D | IAppOpsService.aidl | 21 import android.app.SyncNotedAppOp; 40 …SyncNotedAppOp noteOperation(int code, int uid, String packageName, @nullable String attributionTa… in noteOperation() 42 SyncNotedAppOp startOperation(IBinder clientId, int code, int uid, String packageName, in startOperation() 60 SyncNotedAppOp noteProxyOperation(int code, in AttributionSource attributionSource, in noteProxyOperation() 63 SyncNotedAppOp startProxyOperation(IBinder clientId, int code, in startProxyOperation() 75 in SyncNotedAppOp appOp, String message); in reportRuntimeAppOpAccessMessageAndGetConfig()
|
/aosp14/frameworks/base/services/core/java/com/android/server/policy/ |
H A D | AppOpsPolicy.java | 24 import android.app.SyncNotedAppOp; 231 public SyncNotedAppOp noteOperation(int code, int uid, @Nullable String packageName, in noteOperation() 234 String, String, Boolean, String, Boolean, SyncNotedAppOp> superImpl) { in noteOperation() 241 public SyncNotedAppOp noteProxyOperation(int code, @NonNull AttributionSource attributionSource, in noteProxyOperation() 245 SyncNotedAppOp> superImpl) { in noteProxyOperation() 253 public SyncNotedAppOp startOperation(IBinder token, int code, int uid, in startOperation() 259 SyncNotedAppOp> superImpl) { in startOperation() 267 public SyncNotedAppOp startProxyOperation(@NonNull IBinder clientId, int code, in startProxyOperation() 273 Boolean, Boolean, Integer, Integer, Integer, SyncNotedAppOp> superImpl) { in startProxyOperation()
|
/aosp14/frameworks/base/services/core/java/com/android/server/appop/ |
H A D | AppOpsService.java | 88 import android.app.SyncNotedAppOp; 2558 return new SyncNotedAppOp(AppOpsManager.MODE_IGNORED, code, in noteProxyOperationImpl() 2571 final SyncNotedAppOp proxyReturn = noteOperationUnchecked(code, proxyUid, in noteProxyOperationImpl() 2595 public SyncNotedAppOp noteOperation(int code, int uid, String packageName, in noteOperation() 3008 public SyncNotedAppOp startOperation(IBinder token, int code, int uid, in startOperation() 3066 public SyncNotedAppOp startProxyOperation(@NonNull IBinder clientId, int code, in startProxyOperation() 5800 String packageName, SyncNotedAppOp notedAppOp, String message) { 6463 public SyncNotedAppOp noteOperation(int code, int uid, String packageName, 6484 private SyncNotedAppOp noteDelegateOperationImpl(int code, int uid, 6515 private SyncNotedAppOp noteDelegateProxyOperationImpl(int code, [all …]
|
/aosp14/frameworks/base/services/tests/mockingservicestests/src/com/android/server/am/ |
H A D | ActivityManagerServiceTest.java | 71 import android.app.SyncNotedAppOp; 227 SyncNotedAppOp allowed = new SyncNotedAppOp(AppOpsManager.MODE_ALLOWED, in mockNoteOperation()
|
/aosp14/frameworks/base/services/core/java/com/android/server/am/ |
H A D | ActivityManagerService.java | 249 import android.app.SyncNotedAppOp; 19991 public SyncNotedAppOp noteOperation(int code, int uid, @Nullable String packageName, 19995 SyncNotedAppOp> superImpl) { 20012 public SyncNotedAppOp noteProxyOperation(int code, 20016 Boolean, SyncNotedAppOp> superImpl) { 20037 public SyncNotedAppOp startOperation(IBinder token, int code, int uid, 20043 Boolean, String, Boolean, Integer, Integer, SyncNotedAppOp> superImpl) { 20062 public SyncNotedAppOp startProxyOperation(@NonNull IBinder clientId, int code, 20069 SyncNotedAppOp> superImpl) {
|
/aosp14/frameworks/base/core/api/ |
H A D | test-current.txt | 229 method public static void collectNotedOpSync(@NonNull android.app.SyncNotedAppOp); 440 public final class SyncNotedAppOp implements android.os.Parcelable { 441 ctor public SyncNotedAppOp(int, @IntRange(from=0L) int, @Nullable String, @Nullable String);
|
H A D | current.txt | 5070 method public abstract void onNoted(@NonNull android.app.SyncNotedAppOp); 5071 method public abstract void onSelfNoted(@NonNull android.app.SyncNotedAppOp); 7302 public final class SyncNotedAppOp implements android.os.Parcelable { 7303 ctor public SyncNotedAppOp(@IntRange(from=0L) int, @Nullable String); 7308 …field @NonNull public static final android.os.Parcelable.Creator<android.app.SyncNotedAppOp> CREAT…
|
/aosp14/frameworks/base/services/ |
H A D | art-profile | 1032 …geStatsPermission(Ljava/lang/String;II)Z+]Landroid/app/SyncNotedAppOp;Landroid/app/SyncNotedAppOp;… 2461 …pOpsService;IILjava/lang/String;Ljava/lang/String;ZLjava/lang/String;Z)Landroid/app/SyncNotedAppOp; 2462 …/IBinder;IILjava/lang/String;Ljava/lang/String;ZZLjava/lang/String;ZII)Landroid/app/SyncNotedAppOp; 2469 …java/lang/String;Ljava/lang/String;ZLjava/lang/String;Z)Landroid/app/SyncNotedAppOp;+]Landroid/app… 2470 …a/lang/String;Ljava/lang/String;ZZLjava/lang/String;ZII)Landroid/app/SyncNotedAppOp;+]Landroid/app… 2496 …pOpsService;IILjava/lang/String;Ljava/lang/String;ZLjava/lang/String;Z)Landroid/app/SyncNotedAppOp; 2497 …/IBinder;IILjava/lang/String;Ljava/lang/String;ZZLjava/lang/String;ZII)Landroid/app/SyncNotedAppOp; 2534 …java/lang/String;Ljava/lang/String;ZLjava/lang/String;Z)Landroid/app/SyncNotedAppOp;+]Lcom/android… 2535 …java/lang/String;Ljava/lang/String;ZLjava/lang/String;Z)Landroid/app/SyncNotedAppOp;+]Lcom/android… 2537 …perationImpl(ILandroid/content/AttributionSource;ZLjava/lang/String;ZZ)Landroid/app/SyncNotedAppOp; [all …]
|
/aosp14/frameworks/base/boot/ |
H A D | boot-image-profile.txt | 1096 HSPLandroid/app/AppOpsManager$1;->onNoted(Landroid/app/SyncNotedAppOp;)V 1097 HSPLandroid/app/AppOpsManager$1;->onSelfNoted(Landroid/app/SyncNotedAppOp;)V 2693 HSPLandroid/app/SyncNotedAppOp$1;->createFromParcel(Landroid/os/Parcel;)Landroid/app/SyncNotedAppOp; 2696 HSPLandroid/app/SyncNotedAppOp;-><init>(ILjava/lang/String;)V 2698 HSPLandroid/app/SyncNotedAppOp;-><init>(Landroid/os/Parcel;)V 2699 HSPLandroid/app/SyncNotedAppOp;->getAttributionTag()Ljava/lang/String; 2700 HSPLandroid/app/SyncNotedAppOp;->getOp()Ljava/lang/String; 2701 HSPLandroid/app/SyncNotedAppOp;->getOpMode()I 2702 HSPLandroid/app/SyncNotedAppOp;->writeToParcel(Landroid/os/Parcel;I)V 23482 Landroid/app/SyncNotedAppOp$1; [all …]
|
H A D | preloaded-classes | 701 android.app.SyncNotedAppOp$1 702 android.app.SyncNotedAppOp
|
/aosp14/frameworks/base/config/ |
H A D | boot-image-profile.txt | 1096 HSPLandroid/app/AppOpsManager$1;->onNoted(Landroid/app/SyncNotedAppOp;)V 1097 HSPLandroid/app/AppOpsManager$1;->onSelfNoted(Landroid/app/SyncNotedAppOp;)V 2693 HSPLandroid/app/SyncNotedAppOp$1;->createFromParcel(Landroid/os/Parcel;)Landroid/app/SyncNotedAppOp; 2696 HSPLandroid/app/SyncNotedAppOp;-><init>(ILjava/lang/String;)V 2698 HSPLandroid/app/SyncNotedAppOp;-><init>(Landroid/os/Parcel;)V 2699 HSPLandroid/app/SyncNotedAppOp;->getAttributionTag()Ljava/lang/String; 2700 HSPLandroid/app/SyncNotedAppOp;->getOp()Ljava/lang/String; 2701 HSPLandroid/app/SyncNotedAppOp;->getOpMode()I 2702 HSPLandroid/app/SyncNotedAppOp;->writeToParcel(Landroid/os/Parcel;I)V 33585 Landroid/app/SyncNotedAppOp$1; [all …]
|
H A D | preloaded-classes | 701 android.app.SyncNotedAppOp$1 702 android.app.SyncNotedAppOp
|
/aosp14/frameworks/base/tools/aapt2/integration-tests/CommandTests/ |
H A D | android-33.jar | AndroidManifest.xml
META-INF/
META-INF/MANIFEST.MF
NOTICES/
NOTICES/libcore ... |