Searched refs:callerApp (Results 1 – 5 of 5) sorted by relevance
46 final ProcessRecord callerApp; // process that sent this field in BroadcastRecord104 pw.print(callerApp != null ? callerApp.toShortString() : "null"); in dump()198 callerApp = _callerApp; in BroadcastRecord()
314 final ProcessRecord callerApp = mAm.getRecordForAppLocked(caller); in startServiceLocked() local315 if (callerApp == null) { in startServiceLocked()321 callerFg = callerApp.setSchedGroup != Process.THREAD_GROUP_BG_NONINTERACTIVE; in startServiceLocked()485 final ProcessRecord callerApp = mAm.getRecordForAppLocked(caller); in stopServiceLocked() local486 if (caller != null && callerApp == null) { in stopServiceLocked()703 final ProcessRecord callerApp = mAm.getRecordForAppLocked(caller); in bindServiceLocked() local704 if (callerApp == null) { in bindServiceLocked()723 if (callerApp.info.uid == Process.SYSTEM_UID) { in bindServiceLocked()747 final boolean callerFg = callerApp.setSchedGroup != Process.THREAD_GROUP_BG_NONINTERACTIVE; in bindServiceLocked()763 if (unscheduleServiceRestartLocked(s, callerApp.info.uid, false)) { in bindServiceLocked()[all …]
987 ProcessRecord callerApp = mService.getRecordForAppLocked(caller); in startActivityMayWait() local988 if (callerApp != null) { in startActivityMayWait()989 appCallingUid = callerApp.info.uid; in startActivityMayWait()1409 ProcessRecord callerApp = null; in startActivityLocked() local1411 callerApp = mService.getRecordForAppLocked(caller); in startActivityLocked()1412 if (callerApp != null) { in startActivityLocked()1413 callingPid = callerApp.pid; in startActivityLocked()1414 callingUid = callerApp.info.uid; in startActivityLocked()1574 + " from " + callerApp + " (pid=" + callingPid in startActivityLocked()1579 + " from " + callerApp + " (pid=" + callingPid in startActivityLocked()[all …]
762 + r.intent.getAction() + " app=" + r.callerApp); in processNextBroadcast()763 performReceiveLocked(r.callerApp, r.resultTo, in processNextBroadcast()
16136 ProcessRecord callerApp = null; in registerReceiver() local16141 callerApp = getRecordForAppLocked(caller); in registerReceiver()16142 if (callerApp == null) { in registerReceiver()16148 if (callerApp.info.uid != Process.SYSTEM_UID && in registerReceiver()16149 !callerApp.pkgList.containsKey(callerPackage) && in registerReceiver()16152 + " is not running in process " + callerApp); in registerReceiver()16154 callingUid = callerApp.info.uid; in registerReceiver()16155 callingPid = callerApp.pid; in registerReceiver()16218 if (callerApp != null && (callerApp.thread == null in registerReceiver()16219 || callerApp.thread.asBinder() != caller.asBinder())) { in registerReceiver()[all …]