Searched defs:noteOp (Results 1 - 6 of 6) sorted by relevance

/frameworks/native/libs/binder/
H A DPermissionController.cpp62 int32_t PermissionController::noteOp(const String16& op, int32_t uid, const String16& packageName) function in class:android::PermissionController
65 return service != NULL ? service->noteOp(op, uid, packageName) : MODE_ERRORED;
H A DAppOpsManager.cpp96 int32_t AppOpsManager::noteOp(int32_t op, int32_t uid, const String16& callingPackage) { function in class:android::AppOpsManager
H A DIPermissionController.cpp52 virtual int32_t noteOp(const String16& op, int32_t uid, const String16& packageName) function in class:android::BpPermissionController
132 int32_t res = noteOp(op, uid, packageName);
/frameworks/support/compat/src/main/java/androidx/core/app/
H A DAppOpsManagerCompat.java33 * Result from {@link #noteOp}: the given caller is allowed to
39 * Result from {@link #noteOp}: the given caller is not allowed to perform
53 * Result from {@link #noteOp}: the given caller should use its default
102 public static int noteOp(@NonNull Context context, @NonNull String op, int uid, method in class:AppOpsManagerCompat
107 return appOpsManager.noteOp(op, uid, packageName);
114 * Like {@link #noteOp} but instead of throwing a {@link SecurityException} it
/frameworks/base/core/java/android/app/
H A DAppOpsManager.java86 * Result from {@link #checkOp}, {@link #noteOp}, {@link #startOp}: the given caller is
92 * Result from {@link #checkOp}, {@link #noteOp}, {@link #startOp}: the given caller is
106 * Result from {@link #checkOp}, {@link #noteOp}, {@link #startOp}: the given caller should
114 * returned from {@link #checkOp}, {@link #noteOp}, {@link #startOp}; rather, when this
2101 * This is <em>not</em> a security check; you must use {@link #noteOp(String, int, String)}
2109 * {@link #noteOp(String, int, String)} or {@link #startOp(String, int, String)} to cover):</p>
2165 public int noteOp(String op, int uid, String packageName) { method in class:AppOpsManager
2166 return noteOp(strOpToOp(op), uid, packageName);
2170 * Like {@link #noteOp} but instead of throwing a {@link SecurityException} it
2244 * This is <em>not</em> a security check; you must use {@link #noteOp(in
2357 public int noteOp(int op, int uid, String packageName) { method in class:AppOpsManager
2422 public int noteOp(int op) { method in class:AppOpsManager
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerService.java9053 public int noteOp(String op, int uid, String packageName) { method in class:ActivityManagerService.PermissionController
[all...]

Completed in 190 milliseconds