Home
last modified time | relevance | path

Searched refs:callerApp (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/services/core/java/com/android/server/am/
DBroadcastRecord.java42 final ProcessRecord callerApp; // process that sent this field in BroadcastRecord
98 pw.print(callerApp != null ? callerApp.toShortString() : "null"); in dump()
185 callerApp = _callerApp; in BroadcastRecord()
DActiveServices.java306 final ProcessRecord callerApp = mAm.getRecordForAppLocked(caller); in startServiceLocked() local
307 if (callerApp == null) { in startServiceLocked()
313 callerFg = callerApp.setSchedGroup != Process.THREAD_GROUP_BG_NONINTERACTIVE; in startServiceLocked()
475 final ProcessRecord callerApp = mAm.getRecordForAppLocked(caller); in stopServiceLocked() local
476 if (caller != null && callerApp == null) { in stopServiceLocked()
693 final ProcessRecord callerApp = mAm.getRecordForAppLocked(caller); in bindServiceLocked() local
694 if (callerApp == null) { in bindServiceLocked()
713 if (callerApp.info.uid == Process.SYSTEM_UID) { in bindServiceLocked()
737 final boolean callerFg = callerApp.setSchedGroup != Process.THREAD_GROUP_BG_NONINTERACTIVE; in bindServiceLocked()
753 if (unscheduleServiceRestartLocked(s, callerApp.info.uid, false)) { in bindServiceLocked()
[all …]
DActivityStackSupervisor.java893 ProcessRecord callerApp = mService.getRecordForAppLocked(caller); in startActivityMayWait() local
894 if (callerApp != null) { in startActivityMayWait()
895 appCallingUid = callerApp.info.uid; in startActivityMayWait()
1306 ProcessRecord callerApp = null; in startActivityLocked() local
1308 callerApp = mService.getRecordForAppLocked(caller); in startActivityLocked()
1309 if (callerApp != null) { in startActivityLocked()
1310 callingPid = callerApp.pid; in startActivityLocked()
1311 callingUid = callerApp.info.uid; in startActivityLocked()
1443 + " from " + callerApp + " (pid=" + callingPid in startActivityLocked()
1448 + " from " + callerApp + " (pid=" + callingPid in startActivityLocked()
[all …]
DBroadcastQueue.java669 + " seq=" + seq + " app=" + r.callerApp); in processNextBroadcast()
671 performReceiveLocked(r.callerApp, r.resultTo, in processNextBroadcast()
DActivityManagerService.java15570 ProcessRecord callerApp = null; in registerReceiver() local
15572 callerApp = getRecordForAppLocked(caller); in registerReceiver()
15573 if (callerApp == null) { in registerReceiver()
15579 if (callerApp.info.uid != Process.SYSTEM_UID && in registerReceiver()
15580 !callerApp.pkgList.containsKey(callerPackage) && in registerReceiver()
15583 + " is not running in process " + callerApp); in registerReceiver()
15585 callingUid = callerApp.info.uid; in registerReceiver()
15586 callingPid = callerApp.pid; in registerReceiver()
15629 rl = new ReceiverList(this, callerApp, callingPid, callingUid, in registerReceiver()
15826 private final int broadcastIntentLocked(ProcessRecord callerApp, in broadcastIntentLocked() argument
[all …]