Searched defs:resolvedType (Results 1 - 10 of 10) sorted by relevance

/frameworks/base/services/java/com/android/server/am/
H A DPendingIntentRecord.java190 public int send(int code, Intent intent, String resolvedType, argument
192 return sendInner(code, intent, resolvedType, finishedReceiver,
196 int sendInner(int code, Intent intent, String resolvedType, argument
212 resolvedType = key.requestResolvedType;
215 resolvedType = key.requestResolvedType;
248 allResolvedTypes[allResolvedTypes.length-1] = resolvedType;
252 owner.startActivityInPackage(uid, finalIntent, resolvedType,
269 finalIntent, resolvedType,
281 finalIntent, resolvedType, userId);
H A DActiveServices.java212 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) { argument
300 ServiceLookupResult r = retrieveServiceLocked(service, resolvedType,
427 Intent service, String resolvedType,
430 + " type=" + resolvedType
211 startServiceLocked(IApplicationThread caller, Intent service, String resolvedType, int callingPid, int callingUid, int userId) argument
267 stopServiceLocked(IApplicationThread caller, Intent service, String resolvedType, int userId) argument
426 bindServiceLocked(IApplicationThread caller, IBinder token, Intent service, String resolvedType, IServiceConnection connection, int flags, int userId) argument
702 retrieveServiceLocked(Intent service, String resolvedType, int callingPid, int callingUid, int userId, boolean createIfNeeded) argument
[all...]
H A DActivityRecord.java66 final String resolvedType; // as per original caller; field in class:ActivityRecord
333 resolvedType = _resolvedType;
H A DActivityStack.java2456 Intent intent, String resolvedType, ActivityInfo aInfo, IBinder resultTo,
2596 intent, resolvedType, aInfo, mService.mConfiguration,
3022 ActivityInfo resolveActivity(Intent intent, String resolvedType, int startFlags, argument
3029 intent, resolvedType,
3070 Intent intent, String resolvedType, IBinder resultTo,
3084 ActivityInfo aInfo = resolveActivity(intent, resolvedType, startFlags,
3132 new String[] { resolvedType }, PendingIntent.FLAG_CANCEL_CURRENT
3155 resolvedType = null;
3175 int res = startActivityLocked(caller, intent, resolvedType,
2455 startActivityLocked(IApplicationThread caller, Intent intent, String resolvedType, ActivityInfo aInfo, IBinder resultTo, String resultWho, int requestCode, int callingPid, int callingUid, int startFlags, Bundle options, boolean componentSpecified, ActivityRecord[] outActivity) argument
3069 startActivityMayWait(IApplicationThread caller, int callingUid, Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int startFlags, String profileFile, ParcelFileDescriptor profileFd, WaitResult outResult, Configuration config, Bundle options, int userId) argument
H A DActivityManagerService.java2457 Intent intent, String resolvedType, IBinder resultTo,
2460 return startActivityAsUser(caller, intent, resolvedType, resultTo, resultWho, requestCode,
2465 Intent intent, String resolvedType, IBinder resultTo,
2471 return mMainStack.startActivityMayWait(caller, -1, intent, resolvedType,
2477 Intent intent, String resolvedType, IBinder resultTo,
2484 mMainStack.startActivityMayWait(caller, -1, intent, resolvedType,
2491 Intent intent, String resolvedType, IBinder resultTo,
2497 int ret = mMainStack.startActivityMayWait(caller, -1, intent, resolvedType,
2504 IntentSender intent, Intent fillInIntent, String resolvedType,
2529 int ret = pir.sendInner(0, fillInIntent, resolvedType, nul
2456 startActivity(IApplicationThread caller, Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int startFlags, String profileFile, ParcelFileDescriptor profileFd, Bundle options) argument
2464 startActivityAsUser(IApplicationThread caller, Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int startFlags, String profileFile, ParcelFileDescriptor profileFd, Bundle options, int userId) argument
2476 startActivityAndWait(IApplicationThread caller, Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int startFlags, String profileFile, ParcelFileDescriptor profileFd, Bundle options, int userId) argument
2490 startActivityWithConfig(IApplicationThread caller, Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int startFlags, Configuration config, Bundle options, int userId) argument
2503 startActivityIntentSender(IApplicationThread caller, IntentSender intent, Intent fillInIntent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int flagsMask, int flagsValues, Bundle options) argument
2630 startActivityInPackage(int uid, Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int startFlags, Bundle options, int userId) argument
10898 startService(IApplicationThread caller, Intent service, String resolvedType, int userId) argument
10920 startServiceInPackage(int uid, Intent service, String resolvedType, int userId) argument
10933 stopService(IApplicationThread caller, Intent service, String resolvedType, int userId) argument
10948 peekService(Intent service, String resolvedType) argument
11059 bindService(IApplicationThread caller, IBinder token, Intent service, String resolvedType, IServiceConnection connection, int flags, int userId) argument
11496 collectReceiverComponents(Intent intent, String resolvedType, int[] users) argument
11567 broadcastIntentLocked(ProcessRecord callerApp, String callerPackage, Intent intent, String resolvedType, IIntentReceiver resultTo, int resultCode, String resultData, Bundle map, String requiredPermission, boolean ordered, boolean sticky, int callingPid, int callingUid, int userId) argument
11955 broadcastIntent(IApplicationThread caller, Intent intent, String resolvedType, IIntentReceiver resultTo, int resultCode, String resultData, Bundle map, String requiredPermission, boolean serialized, boolean sticky, int userId) argument
11977 broadcastIntentInPackage(String packageName, int uid, Intent intent, String resolvedType, IIntentReceiver resultTo, int resultCode, String resultData, Bundle map, String requiredPermission, boolean serialized, boolean sticky, int userId) argument
[all...]
/frameworks/base/services/java/com/android/server/
H A DIntentResolver.java215 public List<R> queryIntentFromList(Intent intent, String resolvedType, argument
227 resolvedType, scheme, listCut.get(i), resultList, userId);
233 public List<R> queryIntent(Intent intent, String resolvedType, boolean defaultOnly, argument
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);
534 buildResolveList(Intent intent, FastImmutableArraySet<String> categories, boolean debug, boolean defaultOnly, String resolvedType, String scheme, F[] src, List<R> dest, int userId) argument
[all...]
H A DIntentResolverOld.java204 public List<R> queryIntentFromList(Intent intent, String resolvedType, argument
216 resolvedType, scheme, listCut.get(i), resultList, userId);
222 public List<R> queryIntent(Intent intent, String resolvedType, boolean defaultOnly, argument
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);
507 buildResolveList(Intent intent, FastImmutableArraySet<String> categories, boolean debug, boolean defaultOnly, String resolvedType, String scheme, List<F> src, List<R> dest, int userId) argument
[all...]
/frameworks/base/core/java/android/app/
H A DActivityManagerNative.java121 String resolvedType = data.readString();
131 int result = startActivity(app, intent, resolvedType,
145 String resolvedType = data.readString();
156 int result = startActivityAsUser(app, intent, resolvedType,
170 String resolvedType = data.readString();
181 WaitResult result = startActivityAndWait(app, intent, resolvedType,
195 String resolvedType = data.readString();
204 int result = startActivityWithConfig(app, intent, resolvedType,
221 String resolvedType = data.readString();
230 fillInIntent, resolvedType, resultT
1842 startActivity(IApplicationThread caller, Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int startFlags, String profileFile, ParcelFileDescriptor profileFd, Bundle options) argument
1877 startActivityAsUser(IApplicationThread caller, Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int startFlags, String profileFile, ParcelFileDescriptor profileFd, Bundle options, int userId) argument
1912 startActivityAndWait(IApplicationThread caller, Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int startFlags, String profileFile, ParcelFileDescriptor profileFd, Bundle options, int userId) argument
1947 startActivityWithConfig(IApplicationThread caller, Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int startFlags, Configuration config, Bundle options, int userId) argument
1976 startActivityIntentSender(IApplicationThread caller, IntentSender intent, Intent fillInIntent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int flagsMask, int flagsValues, Bundle options) argument
2122 broadcastIntent(IApplicationThread caller, Intent intent, String resolvedType, IIntentReceiver resultTo, int resultCode, String resultData, Bundle map, String requiredPermission, boolean serialized, boolean sticky, int userId) argument
2637 startService(IApplicationThread caller, Intent service, String resolvedType, int userId) argument
2654 stopService(IApplicationThread caller, Intent service, String resolvedType, int userId) argument
2706 bindService(IApplicationThread caller, IBinder token, Intent service, String resolvedType, IServiceConnection connection, int flags, int userId) argument
2783 peekService(Intent service, String resolvedType) argument
[all...]
H A DIActivityManager.java55 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) throw argument
54 startActivity(IApplicationThread caller, Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int flags, String profileFile, ParcelFileDescriptor profileFd, Bundle options) argument
58 startActivityAsUser(IApplicationThread caller, Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int flags, String profileFile, ParcelFileDescriptor profileFd, Bundle options, int userId) argument
62 startActivityAndWait(IApplicationThread caller, Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int flags, String profileFile, ParcelFileDescriptor profileFd, Bundle options, int userId) argument
66 startActivityWithConfig(IApplicationThread caller, Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int startFlags, Configuration newConfig, Bundle options, int userId) argument
70 startActivityIntentSender(IApplicationThread caller, IntentSender intent, Intent fillInIntent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int flagsMask, int flagsValues, Bundle options) argument
85 broadcastIntent(IApplicationThread caller, Intent intent, String resolvedType, IIntentReceiver resultTo, int resultCode, String resultData, Bundle map, String requiredPermission, boolean serialized, boolean sticky, int userId) argument
132 startService(IApplicationThread caller, Intent service, String resolvedType, int userId) argument
134 stopService(IApplicationThread caller, Intent service, String resolvedType, int userId) argument
140 bindService(IApplicationThread caller, IBinder token, Intent service, String resolvedType, IServiceConnection connection, int flags, int userId) argument
[all...]
/frameworks/base/services/java/com/android/server/pm/
H A DPackageManagerService.java2426 public ResolveInfo resolveIntent(Intent intent, String resolvedType, argument
2430 List<ResolveInfo> query = queryIntentActivities(intent, resolvedType, flags, userId);
2431 return chooseBestActivity(intent, resolvedType, flags, query, userId);
2434 private ResolveInfo chooseBestActivity(Intent intent, String resolvedType, argument
2458 ResolveInfo ri = findPreferredActivity(intent, resolvedType,
2478 ResolveInfo findPreferredActivity(Intent intent, String resolvedType, argument
2489 ? pir.queryIntent(intent, resolvedType,
2562 + intent + " type " + resolvedType);
2578 String resolvedType, int flags, int userId) {
2604 return mActivities.queryIntent(intent, resolvedType, flag
2577 queryIntentActivities(Intent intent, String resolvedType, int flags, int userId) argument
2616 queryIntentActivityOptions(ComponentName caller, Intent[] specifics, String[] specificTypes, Intent intent, String resolvedType, int flags, int userId) argument
2789 queryIntentReceivers(Intent intent, String resolvedType, int flags, int userId) argument
2826 resolveService(Intent intent, String resolvedType, int flags, int userId) argument
2840 queryIntentServices(Intent intent, String resolvedType, int flags, int userId) argument
4932 queryIntent(Intent intent, String resolvedType, boolean defaultOnly, int userId) argument
4939 queryIntent(Intent intent, String resolvedType, int flags, int userId) argument
4947 queryIntentForPackage(Intent intent, String resolvedType, int flags, ArrayList<PackageParser.Activity> packageActivities, int userId) argument
5135 queryIntent(Intent intent, String resolvedType, boolean defaultOnly, int userId) argument
5141 queryIntent(Intent intent, String resolvedType, int flags, int userId) argument
5149 queryIntentForPackage(Intent intent, String resolvedType, int flags, ArrayList<PackageParser.Service> packageServices, int userId) argument
[all...]

Completed in 4151 milliseconds