Searched refs:activeUid (Results 1 – 4 of 4) sorted by relevance
/frameworks/base/services/voiceinteraction/java/com/android/server/voiceinteraction/ |
D | VoiceInteractionManagerServiceImpl.java | 347 int activeUid = mInfo.getServiceInfo().applicationInfo.uid; in setDisabledShowContextLocked() local 348 if (callingUid != activeUid) { in setDisabledShowContextLocked() 350 + " does not match active uid " + activeUid); in setDisabledShowContextLocked() 356 int activeUid = mInfo.getServiceInfo().applicationInfo.uid; in getDisabledShowContextLocked() local 357 if (callingUid != activeUid) { in getDisabledShowContextLocked() 359 + " does not match active uid " + activeUid); in getDisabledShowContextLocked() 365 int activeUid = mInfo.getServiceInfo().applicationInfo.uid; in getUserDisabledShowContextLocked() local 366 if (callingUid != activeUid) { in getUserDisabledShowContextLocked() 368 + " does not match active uid " + activeUid); in getUserDisabledShowContextLocked()
|
/frameworks/base/core/java/com/android/internal/app/ |
D | IBatteryStats.aidl | 134 void noteDeviceIdleMode(int mode, String activeReason, int activeUid); in noteDeviceIdleMode() argument
|
/frameworks/base/services/core/java/com/android/server/ |
D | DeviceIdleController.java | 1381 int activeUid = msg.arg1; in handleMessage() local 1389 activeReason, activeUid); in handleMessage() 2635 void scheduleReportActiveLocked(String activeReason, int activeUid) { in scheduleReportActiveLocked() argument 2636 Message msg = mHandler.obtainMessage(MSG_REPORT_ACTIVE, activeUid, 0, activeReason); in scheduleReportActiveLocked() 2640 void becomeActiveLocked(String activeReason, int activeUid) { in becomeActiveLocked() argument 2641 becomeActiveLocked(activeReason, activeUid, mConstants.INACTIVE_TIMEOUT, true); in becomeActiveLocked() 2644 private void becomeActiveLocked(String activeReason, int activeUid, in becomeActiveLocked() argument 2663 scheduleReportActiveLocked(activeReason, activeUid); in becomeActiveLocked()
|
/frameworks/base/services/core/java/com/android/server/am/ |
D | BatteryStatsService.java | 1039 public void noteDeviceIdleMode(int mode, String activeReason, int activeUid) { in noteDeviceIdleMode() argument 1042 mStats.noteDeviceIdleModeLocked(mode, activeReason, activeUid); in noteDeviceIdleMode()
|