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

/frameworks/base/services/core/java/com/android/server/connectivity/
H A DPermissionMonitor.java83 int appUid = intent.getIntExtra(Intent.EXTRA_UID, -1);
92 onAppAdded(appName, appUid);
94 onAppRemoved(appUid);
229 private synchronized void onAppAdded(String appName, int appUid) { argument
230 if (TextUtils.isEmpty(appName) || appUid < 0) {
231 loge("Invalid app in onAppAdded: " + appName + " | " + appUid);
240 Boolean permission = mApps.get(appUid);
244 mApps.put(appUid, isSystem);
247 apps.put(appUid, isSystem);
256 private synchronized void onAppRemoved(int appUid) { argument
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DServiceRecord.java413 final int appUid = appInfo.uid;
479 appUid, appPid, null, localForegroundId, localForegroundNoti,
488 ams.crashApplication(appUid, appPid, localPackageName,
H A DBatteryStatsService.java128 void addIsolatedUid(int isolatedUid, int appUid) { argument
130 mStats.addIsolatedUidLocked(isolatedUid, appUid);
134 void removeIsolatedUid(int isolatedUid, int appUid) { argument
136 mStats.removeIsolatedUidLocked(isolatedUid, appUid);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DBaseStatusBar.java734 final int notificationId, final String notificationTag, final int appUid) {
737 startNotificationGutsIntent(intent, appUid);
741 private void startAppNotificationSettingsActivity(String packageName, final int appUid) { argument
744 intent.putExtra(Settings.EXTRA_APP_UID, appUid);
745 startNotificationGutsIntent(intent, appUid);
748 private void startNotificationGutsIntent(final Intent intent, final int appUid) { argument
763 new UserHandle(UserHandle.getUserId(appUid)));
788 int appUid = -1;
796 appUid = info.uid;
808 if (appUid >
733 startAppOwnNotificationSettingsActivity(Intent intent, final int notificationId, final String notificationTag, final int appUid) argument
[all...]
/frameworks/base/core/java/com/android/internal/os/
H A DBatteryStatsImpl.java2478 public void addIsolatedUidLocked(int isolatedUid, int appUid) { argument
2479 mIsolatedUids.put(isolatedUid, appUid);
2482 public void removeIsolatedUidLocked(int isolatedUid, int appUid) { argument
2484 if (curUid == appUid) {

Completed in 387 milliseconds