HomeSort by relevance Sort by last modified time
    Searched full:callerapp (Results 1 - 15 of 15) sorted by null

  /frameworks/base/services/java/com/android/server/firewall/
SenderFilter.java 35 static boolean isSystemApp(ApplicationInfo callerApp, int callerUid, int callerPid) {
40 if (callerApp == null) {
43 return (callerApp.flags & ApplicationInfo.FLAG_SYSTEM) != 0;
70 public boolean matches(IntentFirewall ifw, Intent intent, ApplicationInfo callerApp,
72 if (callerApp == null) {
81 public boolean matches(IntentFirewall ifw, Intent intent, ApplicationInfo callerApp,
83 if (callerApp == null) {
84 // if callerApp is null, the caller is the system process
87 return isSystemApp(callerApp, callerUid, callerPid);
93 public boolean matches(IntentFirewall ifw, Intent intent, ApplicationInfo callerApp,
    [all...]
StringFilter.java 122 public boolean matches(IntentFirewall ifw, Intent intent, ApplicationInfo callerApp,
124 String value = mValueProvider.getValue(intent, callerApp, resolvedType, resolvedApp);
138 public abstract String getValue(Intent intent, ApplicationInfo callerApp,
233 public String getValue(Intent intent, ApplicationInfo callerApp, String resolvedType,
245 public String getValue(Intent intent, ApplicationInfo callerApp, String resolvedType,
257 public String getValue(Intent intent, ApplicationInfo callerApp, String resolvedType,
269 public String getValue(Intent intent, ApplicationInfo callerApp, String resolvedType,
277 public String getValue(Intent intent, ApplicationInfo callerApp, String resolvedType,
289 public String getValue(Intent intent, ApplicationInfo callerApp, String resolvedType,
297 public String getValue(Intent intent, ApplicationInfo callerApp, String resolvedType
    [all...]
AndFilter.java 28 public boolean matches(IntentFirewall ifw, Intent intent, ApplicationInfo callerApp,
31 if (!children.get(i).matches(ifw, intent, callerApp, callerUid, callerPid, resolvedType,
Filter.java 28 * @param callerApp An ApplicationInfo of an application in the caller's process. This may not
37 boolean matches(IntentFirewall ifw, Intent intent, ApplicationInfo callerApp,
OrFilter.java 28 public boolean matches(IntentFirewall ifw, Intent intent, ApplicationInfo callerApp,
31 if (children.get(i).matches(ifw, intent, callerApp, callerUid, callerPid, resolvedType,
NotFilter.java 35 public boolean matches(IntentFirewall ifw, Intent intent, ApplicationInfo callerApp,
37 return !mChild.matches(ifw, intent, callerApp, callerUid, callerPid, resolvedType,
CategoryFilter.java 37 public boolean matches(IntentFirewall ifw, Intent intent, ApplicationInfo callerApp,
SenderPermissionFilter.java 36 public boolean matches(IntentFirewall ifw, Intent intent, ApplicationInfo callerApp,
PortFilter.java 44 public boolean matches(IntentFirewall ifw, Intent intent, ApplicationInfo callerApp,
IntentFirewall.java 122 public boolean checkStartActivity(Intent intent, ApplicationInfo callerApp, int callerUid,
130 if (rule.matches(this, intent, callerApp, callerUid, callerPid, resolvedType,
  /frameworks/base/services/java/com/android/server/am/
BroadcastRecord.java 42 final ProcessRecord callerApp; // process that sent this
96 pw.print(callerApp != null ? callerApp.toShortString() : "null");
182 callerApp = _callerApp;
ActiveServices.java 218 final ProcessRecord callerApp = mAm.getRecordForAppLocked(caller);
219 if (callerApp == null) {
272 final ProcessRecord callerApp = mAm.getRecordForAppLocked(caller);
273 if (caller != null && callerApp == null) {
432 final ProcessRecord callerApp = mAm.getRecordForAppLocked(caller);
433 if (callerApp == null) {
452 if (callerApp.info.uid == Process.SYSTEM_UID) {
491 AppBindRecord b = s.retrieveAppBindingLocked(service, callerApp);
    [all...]
ActivityStack.java     [all...]
ActivityManagerService.java     [all...]
BroadcastQueue.java 597 + " seq=" + seq + " app=" + r.callerApp);
599 performReceiveLocked(r.callerApp, r.resultTo,
    [all...]

Completed in 369 milliseconds