Searched refs:appUid (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/core/java/android/bluetooth/
H A DUidTraffic.java30 public UidTraffic(int appUid) { argument
31 mAppUid = appUid;
34 public UidTraffic(int appUid, long rx, long tx) { argument
35 mAppUid = appUid;
/frameworks/base/services/core/java/com/android/server/connectivity/
H A DPermissionMonitor.java84 int appUid = intent.getIntExtra(Intent.EXTRA_UID, -1);
93 onAppAdded(appName, appUid);
95 onAppRemoved(appUid);
231 private synchronized void onAppAdded(String appName, int appUid) { argument
232 if (TextUtils.isEmpty(appName) || appUid < 0) {
233 loge("Invalid app in onAppAdded: " + appName + " | " + appUid);
242 Boolean permission = mApps.get(appUid);
246 mApps.put(appUid, hasRestrictedPermission);
249 apps.put(appUid, hasRestrictedPermission);
258 private synchronized void onAppRemoved(int appUid) { argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DBaseStatusBar.java1037 private void startAppNotificationSettingsActivity(String packageName, final int appUid) { argument
1040 intent.putExtra(Settings.EXTRA_APP_UID, appUid);
1041 startNotificationGutsIntent(intent, appUid);
1044 private void startNotificationGutsIntent(final Intent intent, final int appUid) { argument
1059 new UserHandle(UserHandle.getUserId(appUid)));
1081 int appUid = -1;
1089 appUid = info.uid;
1100 if (appUid >= 0) {
1101 final int appUidF = appUid;
/frameworks/base/services/core/java/com/android/server/am/
H A DBatteryStatsService.java295 void addIsolatedUid(int isolatedUid, int appUid) { argument
297 mStats.addIsolatedUidLocked(isolatedUid, appUid);
301 void removeIsolatedUid(int isolatedUid, int appUid) { argument
303 mStats.scheduleRemoveIsolatedUidLocked(isolatedUid, appUid);
H A DServiceRecord.java443 final int appUid = appInfo.uid;
527 appUid, appPid, null, localForegroundId, localForegroundNoti,
537 ams.crashApplication(appUid, appPid, localPackageName,
/frameworks/base/core/java/com/android/internal/os/
H A DBatteryStatsImpl.java3138 public void addIsolatedUidLocked(int isolatedUid, int appUid) { argument
3139 mIsolatedUids.put(isolatedUid, appUid);
3146 public void scheduleRemoveIsolatedUidLocked(int isolatedUid, int appUid) { argument
3148 if (curUid == appUid) {

Completed in 170 milliseconds