HomeSort by relevance Sort by last modified time
    Searched refs:resolvedType (Results 1 - 25 of 33) sorted by null

1 2

  /frameworks/base/core/java/android/content/
IIntentSender.aidl 24 int send(int code, in Intent intent, String resolvedType,
IntentSender.java 191 String resolvedType = intent != null ?
194 int res = mTarget.send(code, intent, resolvedType,
  /frameworks/base/services/java/com/android/server/firewall/
Filter.java 34 * @param resolvedType The resolved mime type of the intent
38 int callerUid, int callerPid, String resolvedType, ApplicationInfo resolvedApp);
AndFilter.java 29 int callerUid, int callerPid, String resolvedType, ApplicationInfo resolvedApp) {
31 if (!children.get(i).matches(ifw, intent, callerApp, callerUid, callerPid, resolvedType,
OrFilter.java 29 int callerUid, int callerPid, String resolvedType, ApplicationInfo resolvedApp) {
31 if (children.get(i).matches(ifw, intent, callerApp, callerUid, callerPid, resolvedType,
StringFilter.java 123 int callerUid, int callerPid, String resolvedType, ApplicationInfo resolvedApp) {
124 String value = mValueProvider.getValue(intent, callerApp, resolvedType, resolvedApp);
139 String resolvedType, ApplicationInfo resolvedApp);
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,
291 return resolvedType;
    [all...]
SenderFilter.java 71 int callerUid, int callerPid, String resolvedType, ApplicationInfo resolvedApp) {
82 int callerUid, int callerPid, String resolvedType, ApplicationInfo resolvedApp) {
94 int callerUid, int callerPid, String resolvedType, ApplicationInfo resolvedApp) {
103 int callerUid, int callerPid, String resolvedType, ApplicationInfo resolvedApp) {
NotFilter.java 36 int callerUid, int callerPid, String resolvedType, ApplicationInfo resolvedApp) {
37 return !mChild.matches(ifw, intent, callerApp, callerUid, callerPid, resolvedType,
SenderPermissionFilter.java 37 int callerUid, int callerPid, String resolvedType, ApplicationInfo resolvedApp) {
CategoryFilter.java 38 int callerUid, int callerPid, String resolvedType, ApplicationInfo resolvedApp) {
IntentFirewall.java 123 int callerPid, String resolvedType, ActivityInfo resolvedActivity) {
124 List<Rule> matchingRules = mActivityResolver.queryIntent(intent, resolvedType, false, 0);
130 if (rule.matches(this, intent, callerApp, callerUid, callerPid, resolvedType,
144 logIntent(TYPE_ACTIVITY, intent, callerUid, resolvedType);
151 String resolvedType) {
175 callerPackageCount, callerPackages, intent.getAction(), resolvedType,
PortFilter.java 45 int callerUid, int callerPid, String resolvedType, ApplicationInfo resolvedApp) {
  /packages/apps/Contacts/src/com/android/contacts/list/
ContactsIntentResolver.java 78 final String resolvedType = intent.resolveType(mContext);
79 if (Contacts.CONTENT_TYPE.equals(resolvedType)) {
81 } else if (People.CONTENT_TYPE.equals(resolvedType)) {
84 } else if (Phone.CONTENT_TYPE.equals(resolvedType)) {
86 } else if (Phones.CONTENT_TYPE.equals(resolvedType)) {
89 } else if (StructuredPostal.CONTENT_TYPE.equals(resolvedType)) {
91 } else if (ContactMethods.CONTENT_POSTAL_TYPE.equals(resolvedType)) {
94 } else if (Email.CONTENT_TYPE.equals(resolvedType)) {
139 final String resolvedType = intent.resolveType(mContext);
140 if (ContactsContract.Contacts.CONTENT_TYPE.equals(resolvedType)
    [all...]
  /frameworks/base/core/java/android/app/
PendingIntent.java 260 String resolvedType = intent != null ? intent.resolveTypeIfNeeded(
269 resolvedType != null ? new String[] { resolvedType } : null,
285 String resolvedType = intent != null ? intent.resolveTypeIfNeeded(
294 resolvedType != null ? new String[] { resolvedType } : null,
484 String resolvedType = intent != null ? intent.resolveTypeIfNeeded(
492 resolvedType != null ? new String[] { resolvedType } : null,
528 String resolvedType = intent != null ? intent.resolveTypeIfNeeded
    [all...]
ContextImpl.java     [all...]
IActivityManager.java 55 Intent intent, String resolvedType, IBinder resultTo, String resultWho,
59 Intent intent, String resolvedType, IBinder resultTo, String resultWho,
63 Intent intent, String resolvedType, IBinder resultTo, String resultWho,
67 Intent intent, String resolvedType, IBinder resultTo, String resultWho,
71 IntentSender intent, Intent fillInIntent, String resolvedType,
86 String resolvedType, IIntentReceiver resultTo, int resultCode,
133 String resolvedType, int userId) throws RemoteException;
135 String resolvedType, int userId) throws RemoteException;
141 Intent service, String resolvedType,
151 public IBinder peekService(Intent service, String resolvedType) throws RemoteException
    [all...]
ActivityManagerNative.java 121 String resolvedType = data.readString();
131 int result = startActivity(app, callingPackage, intent, resolvedType,
146 String resolvedType = data.readString();
157 int result = startActivityAsUser(app, callingPackage, intent, resolvedType,
172 String resolvedType = data.readString();
183 WaitResult result = startActivityAndWait(app, callingPackage, intent, resolvedType,
198 String resolvedType = data.readString();
207 int result = startActivityWithConfig(app, callingPackage, intent, resolvedType,
224 String resolvedType = data.readString();
233 fillInIntent, resolvedType, resultTo, resultWho
    [all...]
  /frameworks/base/services/java/com/android/server/
IntentResolverOld.java 204 public List<R> queryIntentFromList(Intent intent, String resolvedType,
216 resolvedType, scheme, listCut.get(i), resultList, userId);
222 public List<R> queryIntent(Intent intent, String resolvedType, boolean defaultOnly,
232 TAG, "Resolving type " + resolvedType + " scheme " + scheme
242 if (resolvedType != null) {
243 int slashpos = resolvedType.indexOf('/');
245 final String baseType = resolvedType.substring(0, slashpos);
247 if (resolvedType.length() != slashpos+2
248 || resolvedType.charAt(slashpos+1) != '*') {
251 firstTypeCut = mTypeToFilter.get(resolvedType);
    [all...]
IntentResolver.java 215 public List<R> queryIntentFromList(Intent intent, String resolvedType,
227 resolvedType, scheme, listCut.get(i), resultList, userId);
233 public List<R> queryIntent(Intent intent, String resolvedType, boolean defaultOnly,
243 TAG, "Resolving type " + resolvedType + " scheme " + scheme
253 if (resolvedType != null) {
254 int slashpos = resolvedType.indexOf('/');
256 final String baseType = resolvedType.substring(0, slashpos);
258 if (resolvedType.length() != slashpos+2
259 || resolvedType.charAt(slashpos+1) != '*') {
262 firstTypeCut = mTypeToFilter.get(resolvedType);
    [all...]
  /frameworks/base/services/java/com/android/server/am/
PendingIntentRecord.java 190 public int send(int code, Intent intent, String resolvedType,
192 return sendInner(code, intent, resolvedType, finishedReceiver,
196 int sendInner(int code, Intent intent, String resolvedType,
212 resolvedType = key.requestResolvedType;
215 resolvedType = key.requestResolvedType;
248 allResolvedTypes[allResolvedTypes.length-1] = resolvedType;
253 resolvedType, resultTo, resultWho, requestCode, 0,
270 finalIntent, resolvedType,
282 finalIntent, resolvedType, userId);
ActiveServices.java 212 Intent service, String resolvedType,
215 + " type=" + resolvedType + " args=" + service.getExtras());
228 retrieveServiceLocked(service, resolvedType,
268 String resolvedType, int userId) {
270 + " type=" + resolvedType);
281 ServiceLookupResult r = retrieveServiceLocked(service, resolvedType,
299 IBinder peekServiceLocked(Intent service, String resolvedType) {
300 ServiceLookupResult r = retrieveServiceLocked(service, resolvedType,
427 Intent service, String resolvedType,
430 + " type=" + resolvedType + " conn=" + connection.asBinder(
    [all...]
ActivityManagerService.java     [all...]
ActivityRecord.java 67 final String resolvedType; // as per original caller;
343 resolvedType = _resolvedType;
    [all...]
  /frameworks/base/core/java/android/content/pm/
IPackageManager.aidl 105 ResolveInfo resolveIntent(in Intent intent, String resolvedType, int flags, int userId);
108 String resolvedType, int flags, int userId);
113 String resolvedType, int flags, int userId);
116 String resolvedType, int flags, int userId);
119 String resolvedType, int flags, int userId);
122 String resolvedType, int flags, int userId);
  /frameworks/base/services/java/com/android/server/pm/
PackageManagerService.java     [all...]

Completed in 313 milliseconds

1 2