Home
last modified time | relevance | path

Searched refs:mSourceInfo (Results 1 – 3 of 3) sorted by relevance

/aosp14/frameworks/base/core/java/com/android/internal/app/chooser/
H A DSelectableTargetInfo.java57 private final DisplayResolveInfo mSourceInfo; field in SelectableTargetInfo
80 mSourceInfo = sourceInfo; in SelectableTargetInfo()
119 mSourceInfo = other.mSourceInfo; in SelectableTargetInfo()
147 return mSourceInfo; in getDisplayResolveInfo()
214 if (mSourceInfo != null) { in getResolvedIntent()
215 return mSourceInfo.getResolvedIntent(); in getResolvedIntent()
226 if (mSourceInfo != null) { in getResolvedComponentName()
227 return mSourceInfo.getResolvedComponentName(); in getResolvedComponentName()
272 final boolean ignoreTargetSecurity = mSourceInfo != null in startAsCaller()
286 return mSourceInfo != null ? mSourceInfo.getResolveInfo() : mBackupResolveInfo; in getResolveInfo()
[all …]
/aosp14/frameworks/base/packages/PackageInstaller/src/com/android/packageinstaller/
H A DPackageInstallerActivity.java104 ApplicationInfo mSourceInfo; field in PackageInstallerActivity
282 if (mSourceInfo != null && mSourceInfo.isPrivilegedApp()) { in isInstallRequestFromUnknownSource()
287 if (mSourceInfo != null && checkPermission(Manifest.permission.INSTALL_PACKAGES, in isInstallRequestFromUnknownSource()
288 -1 /* pid */, mSourceInfo.uid) == PackageManager.PERMISSION_GRANTED) { in isInstallRequestFromUnknownSource()
358 mSourceInfo = intent.getParcelableExtra(EXTRA_ORIGINAL_SOURCE_INFO); in onCreate()
/aosp14/frameworks/base/core/java/android/app/
H A DActivityOptions.java506 private SourceInfo mSourceInfo; field in ActivityOptions
1317mSourceInfo = opts.getParcelable(KEY_SOURCE_INFO, android.app.ActivityOptions.SourceInfo.class); in ActivityOptions()
2329 if (mSourceInfo != null) { in toBundle()
2330 b.putParcelable(KEY_SOURCE_INFO, mSourceInfo); in toBundle()
2419 return mSourceInfo; in getSourceInfo()
2433 mSourceInfo = new SourceInfo(type, uptimeMillis); in setSourceInfo()