Searched defs:sanitizedIntent (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/app/
H A DInstantAppResolverService.java90 * @param sanitizedIntent The sanitized {@link Intent} used for resolution. A sanitized Intent
104 public void onGetInstantAppResolveInfo(Intent sanitizedIntent, int[] hostDigestPrefix, argument
107 if (sanitizedIntent.isWebIntent()) {
120 * @param sanitizedIntent The sanitized {@link Intent} used for resolution.
130 public void onGetInstantAppIntentFilter(Intent sanitizedIntent, int[] hostDigestPrefix, argument
134 if (sanitizedIntent.isWebIntent()) {
158 public void getInstantAppResolveInfoList(Intent sanitizedIntent, int[] digestPrefix,
167 args.arg4 = sanitizedIntent;
173 public void getInstantAppIntentFilterList(Intent sanitizedIntent,
182 args.arg4 = sanitizedIntent;
[all...]
/frameworks/base/services/core/java/com/android/server/pm/
H A DInstantAppResolver.java103 final Intent sanitizedIntent;
104 sanitizedIntent = new Intent(origIntent.getAction());
108 sanitizedIntent.addCategory(category);
114 sanitizedIntent.setDataAndType(sanitizedUri, origIntent.getType());
115 sanitizedIntent.addFlags(origIntent.getFlags());
116 sanitizedIntent.setPackage(origIntent.getPackage());
117 return sanitizedIntent;
128 final Intent sanitizedIntent = sanitizeIntent(origIntent);
134 connection.getInstantAppResolveInfoList(sanitizedIntent,
183 final Intent sanitizedIntent
249 buildEphemeralInstallerIntent( @onNull Intent origIntent, @NonNull Intent sanitizedIntent, @Nullable Intent failureIntent, @NonNull String callingPackage, @Nullable Bundle verificationBundle, @NonNull String resolvedType, int userId, @Nullable ComponentName installFailureActivity, @Nullable String token, boolean needsPhaseTwo, List<AuxiliaryResolveInfo.AuxiliaryFilter> filters) argument
[all...]
H A DInstantAppResolverConnection.java88 public final List<InstantAppResolveInfo> getInstantAppResolveInfoList(Intent sanitizedIntent, argument
102 .getInstantAppResolveInfoList(target, sanitizedIntent, hashPrefix, token);
115 public final void getInstantAppIntentFilterList(Intent sanitizedIntent, int hashPrefix[], argument
129 .getInstantAppIntentFilterList(sanitizedIntent, hashPrefix, token,
355 IInstantAppResolver target, Intent sanitizedIntent, int hashPrefix[], String token)
358 target.getInstantAppResolveInfoList(sanitizedIntent, hashPrefix, token, sequence,
354 getInstantAppResolveInfoList( IInstantAppResolver target, Intent sanitizedIntent, int hashPrefix[], String token) argument

Completed in 104 milliseconds