Searched refs:referrer (Results 1 - 17 of 17) sorted by relevance

/frameworks/base/core/java/com/android/internal/content/
H A DReferrerIntent.java23 * Subclass of Intent that also contains referrer (as a package name) information.
28 public ReferrerIntent(Intent baseIntent, String referrer) { argument
30 mReferrer = referrer;
/frameworks/base/tools/aapt2/
H A DLinker.cpp40 Linker::Args::Args(const ResourceNameRef& r, const SourceLine& s) : referrer(r), source(s) {
166 Logger::error() << "srsly? " << args.referrer << std::endl;
247 processAttributeValue(args.referrer, args.source, *attr, styleEntry.value);
272 item->accept(*this, Args{ args.referrer, args.source });
281 item->accept(*this, Args{ args.referrer, args.source });
H A DLinker.h97 const ResourceNameRef& referrer; member in struct:aapt::Linker::Args
/frameworks/base/core/java/android/content/pm/
H A DVerificationParams.java44 /** HTTP referrer URI associated with the originatingURI. */
66 * @param referrer HTTP referrer URI associated with the originatingURI.
73 public VerificationParams(Uri verificationURI, Uri originatingURI, Uri referrer, argument
77 mReferrer = referrer;
/frameworks/support/v4/java/android/support/v4/app/
H A DActivityCompat.java203 * only falls back to digging any explicitly specified referrer from the activity's intent.
210 Uri referrer = intent.getParcelableExtra("android.intent.extra.REFERRER");
211 if (referrer != null) {
212 return referrer;
/frameworks/base/tests/VoiceInteraction/src/com/android/test/voiceinteraction/
H A DMainInteractionSession.java187 Uri referrer = data.getParcelable(Intent.EXTRA_REFERRER);
188 if (referrer != null) {
189 Log.i(TAG, "Referrer: " + referrer);
/frameworks/base/core/java/android/app/
H A DActivity.java4369 Uri referrer = onProvideReferrer();
4370 if (referrer != null) {
4371 intent.putExtra(Intent.EXTRA_REFERRER, referrer);
4557 Uri referrer = onProvideReferrer();
4558 if (referrer != null) {
4559 intent.putExtra(Intent.EXTRA_REFERRER, referrer);
4684 * {@link Intent#URI_ANDROID_APP_SCHEME android-app:} referrer URI containing the
4686 * referrer can be identified -- it is neither explicitly specified, nor is it known which
4690 * return the referrer that submitted that new intent to the activity. Otherwise, it
4691 * always returns the referrer o
6182 attach(Context context, ActivityThread aThread, Instrumentation instr, IBinder token, int ident, Application application, Intent intent, ActivityInfo info, CharSequence title, Activity parent, String id, NonConfigurationInstances lastNonConfigurationInstances, Configuration config, String referrer, IVoiceInteractor voiceInteractor) argument
[all...]
H A DIApplicationThread.java62 CompatibilityInfo compatInfo, String referrer, IVoiceInteractor voiceInteractor,
60 scheduleLaunchActivity(Intent intent, IBinder token, int ident, ActivityInfo info, Configuration curConfig, Configuration overrideConfig, CompatibilityInfo compatInfo, String referrer, IVoiceInteractor voiceInteractor, int procState, Bundle state, PersistableBundle persistentState, List<ResultInfo> pendingResults, List<ReferrerIntent> pendingNewIntents, boolean notResumed, boolean isForward, ProfilerInfo profilerInfo) argument
H A DInstrumentation.java1485 Uri referrer = target != null ? target.onProvideReferrer() : null;
1486 if (referrer != null) {
1487 intent.putExtra(Intent.EXTRA_REFERRER, referrer);
H A DApplicationThreadNative.java151 String referrer = data.readString();
164 referrer, voiceInteractor, procState, state, persistentState, ri, pi,
793 CompatibilityInfo compatInfo, String referrer, IVoiceInteractor voiceInteractor,
811 data.writeString(referrer);
791 scheduleLaunchActivity(Intent intent, IBinder token, int ident, ActivityInfo info, Configuration curConfig, Configuration overrideConfig, CompatibilityInfo compatInfo, String referrer, IVoiceInteractor voiceInteractor, int procState, Bundle state, PersistableBundle persistentState, List<ResultInfo> pendingResults, List<ReferrerIntent> pendingNewIntents, boolean notResumed, boolean isForward, ProfilerInfo profilerInfo) argument
H A DActivityThread.java283 String referrer; field in class:ActivityThread.ActivityClientRecord
632 CompatibilityInfo compatInfo, String referrer, IVoiceInteractor voiceInteractor,
644 r.referrer = referrer;
2353 r.referrer, r.voiceInteractor);
2580 Uri referrer = null;
2584 referrer = r.activity.onProvideReferrer();
2608 mgr.reportAssistContextExtras(cmd.requestToken, data, structure, content, referrer);
630 scheduleLaunchActivity(Intent intent, IBinder token, int ident, ActivityInfo info, Configuration curConfig, Configuration overrideConfig, CompatibilityInfo compatInfo, String referrer, IVoiceInteractor voiceInteractor, int procState, Bundle state, PersistableBundle persistentState, List<ResultInfo> pendingResults, List<ReferrerIntent> pendingNewIntents, boolean notResumed, boolean isForward, ProfilerInfo profilerInfo) argument
H A DIActivityManager.java441 AssistStructure structure, AssistContent content, Uri referrer) throws RemoteException;
440 reportAssistContextExtras(IBinder token, Bundle extras, AssistStructure structure, AssistContent content, Uri referrer) argument
H A DActivityManagerNative.java2209 Uri referrer = data.readInt() != 0 ? Uri.CREATOR.createFromParcel(data) : null;
2210 reportAssistContextExtras(token, extras, structure, content, referrer);
5419 AssistContent content, Uri referrer) throws RemoteException {
5427 if (referrer != null) {
5429 referrer.writeToParcel(data, 0);
5418 reportAssistContextExtras(IBinder token, Bundle extras, AssistStructure structure, AssistContent content, Uri referrer) argument
/frameworks/base/core/java/com/android/internal/app/
H A DResolverActivity.java281 Log.e(TAG, "Could not find referrer package " + referrerPackage);
391 final Uri referrer = getReferrer();
392 if (referrer != null && "android-app".equals(referrer.getScheme())) {
393 return referrer.getHost();
/frameworks/base/cmds/pm/src/com/android/commands/pm/
H A DPm.java1046 String referrer = null;
1078 } else if (opt.equals("--referrer")) {
1079 referrer = nextOptionData();
1080 if (referrer == null) {
1081 System.err.println("Error: must supply argument for --referrer");
1109 if (referrer != null) {
1110 referrerURI = Uri.parse(referrer);
1193 } else if (opt.equals("--referrer")) {
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityRecord.java716 final void deliverNewIntentLocked(int callingUid, Intent intent, String referrer) { argument
725 final ReferrerIntent rintent = new ReferrerIntent(intent, referrer);
H A DActivityManagerService.java10921 AssistContent content, Uri referrer) {
10927 if (referrer != null) {
10928 pae.extras.putParcelable(Intent.EXTRA_REFERRER, referrer);
10920 reportAssistContextExtras(IBinder token, Bundle extras, AssistStructure structure, AssistContent content, Uri referrer) argument

Completed in 751 milliseconds