HomeSort by relevance Sort by last modified time
    Searched refs:appUid (Results 1 - 5 of 5) sorted by null

  /frameworks/base/services/core/java/com/android/server/connectivity/
PermissionMonitor.java 83 int appUid = intent.getIntExtra(Intent.EXTRA_UID, -1);
92 onAppAdded(appName, appUid);
94 onAppRemoved(appUid);
229 private synchronized void onAppAdded(String appName, int appUid) {
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) {
    [all...]
  /frameworks/base/services/core/java/com/android/server/am/
ServiceRecord.java 413 final int appUid = appInfo.uid;
479 appUid, appPid, null, localForegroundId, localForegroundNoti,
488 ams.crashApplication(appUid, appPid, localPackageName,
BatteryStatsService.java 128 void addIsolatedUid(int isolatedUid, int appUid) {
130 mStats.addIsolatedUidLocked(isolatedUid, appUid);
134 void removeIsolatedUid(int isolatedUid, int appUid) {
136 mStats.removeIsolatedUidLocked(isolatedUid, appUid);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
BaseStatusBar.java 734 final int notificationId, final String notificationTag, final int appUid) {
737 startNotificationGutsIntent(intent, appUid);
741 private void startAppNotificationSettingsActivity(String packageName, final int appUid) {
744 intent.putExtra(Settings.EXTRA_APP_UID, appUid);
745 startNotificationGutsIntent(intent, appUid);
748 private void startNotificationGutsIntent(final Intent intent, final int appUid) {
    [all...]
  /frameworks/base/core/java/com/android/internal/os/
BatteryStatsImpl.java     [all...]

Completed in 101 milliseconds