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

/frameworks/support/compat/java/android/support/v4/app/
H A DAppOpsManagerCompat.java32 * Result from {@link #noteOp}: the given caller is allowed to
38 * Result from {@link #noteOp}: the given caller is not allowed to perform
45 * Result from {@link #noteOp}: the given caller should use its default
83 public static int noteOp(@NonNull Context context, @NonNull String op, int uid, method in class:AppOpsManagerCompat
87 return appOpsManager.noteOp(op, uid, packageName);
/frameworks/native/libs/binder/
H A DAppOpsManager.cpp96 int32_t AppOpsManager::noteOp(int32_t op, int32_t uid, const String16& callingPackage) { function in class:android::AppOpsManager
/frameworks/base/core/java/android/app/
H A DAppOpsManager.java81 * Result from {@link #checkOp}, {@link #noteOp}, {@link #startOp}: the given caller is
87 * Result from {@link #checkOp}, {@link #noteOp}, {@link #startOp}: the given caller is
101 * Result from {@link #checkOp}, {@link #noteOp}, {@link #startOp}: the given caller should
1576 * This is <em>not</em> a security check; you must use {@link #noteOp(String, int, String)}
1616 public int noteOp(String op, int uid, String packageName) { method in class:AppOpsManager
1617 return noteOp(strOpToOp(op), uid, packageName);
1621 * Like {@link #noteOp} but instead of throwing a {@link SecurityException} it
1695 * This is <em>not</em> a security check; you must use {@link #noteOp(int, int, String)}
1796 public int noteOp(int op, int uid, String packageName) { method in class:AppOpsManager
1852 * Like {@link #noteOp} bu
1865 public int noteOp(int op) { method in class:AppOpsManager
[all...]

Completed in 305 milliseconds