Home
last modified time | relevance | path

Searched refs:activeUid (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/services/voiceinteraction/java/com/android/server/voiceinteraction/
DVoiceInteractionManagerServiceImpl.java347 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/
DIBatteryStats.aidl134 void noteDeviceIdleMode(int mode, String activeReason, int activeUid); in noteDeviceIdleMode() argument
/frameworks/base/services/core/java/com/android/server/
DDeviceIdleController.java1381 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/
DBatteryStatsService.java1039 public void noteDeviceIdleMode(int mode, String activeReason, int activeUid) { in noteDeviceIdleMode() argument
1042 mStats.noteDeviceIdleModeLocked(mode, activeReason, activeUid); in noteDeviceIdleMode()