Home
last modified time | relevance | path

Searched refs:proxiedUid (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/core/java/com/android/internal/app/
DIAppOpsService.aidl106 boolean isProxying(int op, String proxyPackageName, String proxyAttributionTag, int proxiedUid, in isProxying() argument
/frameworks/base/core/java/android/app/
DAppOpsManager.java8321 public int noteProxyOp(int op, @Nullable String proxiedPackageName, int proxiedUid, in noteProxyOp() argument
8324 new AttributionSource(proxiedUid, proxiedPackageName, proxiedAttributionTag, in noteProxyOp()
8348 public int noteProxyOp(@NonNull String op, @Nullable String proxiedPackageName, int proxiedUid, in noteProxyOp() argument
8350 return noteProxyOp(strOpToOp(op), proxiedPackageName, proxiedUid, proxiedAttributionTag, in noteProxyOp()
8397 int proxiedUid) { in noteProxyOpNoThrow() argument
8398 return noteProxyOpNoThrow(op, proxiedPackageName, proxiedUid, null, null); in noteProxyOpNoThrow()
8408 int proxiedUid, @Nullable String proxiedAttributionTag, @Nullable String message) { in noteProxyOpNoThrow() argument
8410 mContext.getAttributionSource(), new AttributionSource(proxiedUid, in noteProxyOpNoThrow()
8819 public int startProxyOp(@NonNull String op, int proxiedUid, @NonNull String proxiedPackageName, in startProxyOp() argument
8822 new AttributionSource(proxiedUid, proxiedPackageName, proxiedAttributionTag, in startProxyOp()
[all …]
/frameworks/base/services/core/java/com/android/server/appop/
DAppOpsService.java3345 final int proxiedUid = attributionSource.getNextUid(); in noteProxyOperationImpl() local
3351 verifyIncomingPackage(proxiedPackageName, UserHandle.getUserId(proxiedUid)); in noteProxyOperationImpl()
3364 final boolean isSelfBlame = Binder.getCallingUid() == proxiedUid; in noteProxyOperationImpl()
3382 String resolveProxiedPackageName = AppOpsManager.resolvePackageName(proxiedUid, in noteProxyOperationImpl()
3391 return noteOperationUnchecked(code, proxiedUid, resolveProxiedPackageName, in noteProxyOperationImpl()
3862 final int proxiedUid = attributionSource.getNextUid(); in startProxyOperationImpl() local
3870 verifyIncomingPackage(proxiedPackageName, UserHandle.getUserId(proxiedUid)); in startProxyOperationImpl()
3886 final boolean isSelfBlame = Binder.getCallingUid() == proxiedUid; in startProxyOperationImpl()
3892 String resolvedProxiedPackageName = AppOpsManager.resolvePackageName(proxiedUid, in startProxyOperationImpl()
3905 proxiedUid, resolvedProxiedPackageName, proxiedAttributionTag, proxyUid, in startProxyOperationImpl()
[all …]