Searched refs:packageName (Results 101 - 125 of 139) sorted by relevance

123456

/frameworks/base/core/java/android/content/
H A DIntent.java709 public String packageName; field in class:Intent.ShortcutIconResource
727 icon.packageName = context.getPackageName();
740 icon.packageName = source.readString();
758 dest.writeString(packageName);
3826 info.activityInfo.applicationInfo.packageName,
4816 * @param packageName The name of the application package to handle the
4825 public Intent setPackage(String packageName) { argument
4826 mPackage = packageName;
4882 * @param packageName The name of the package implementing the desired
4893 public Intent setClassName(String packageName, Strin argument
[all...]
H A DContextWrapper.java458 public Context createPackageContext(String packageName, int flags) argument
460 return mBase.createPackageContext(packageName, flags);
H A DContext.java1969 * @param packageName Name of the application's package.
1979 public abstract Context createPackageContext(String packageName, argument
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java1172 Context context = mContext.createPackageContext(process.info.packageName, 0);
1717 void ensurePackageDexOpt(String packageName) { argument
1720 if (pm.performDexOpt(packageName)) {
1796 app.addPackage(info.packageName);
1843 app.info.packageName);
1972 aInfo.applicationInfo.packageName, aInfo.name));
2034 ri.activityInfo.packageName, ri.activityInfo.name));
2172 if (rInfo.activityInfo.packageName.equals(r.packageName)
2192 aInfo.applicationInfo.packageName, aInf
2409 crashApplication(int uid, int initialPid, String packageName, String message) argument
2506 overridePendingTransition(IBinder token, String packageName, int enterAnim, int exitAnim) argument
2996 clearApplicationUserData(final String packageName, final IPackageDataObserver observer) argument
3041 killBackgroundProcesses(final String packageName) argument
3075 forceStopPackage(final String packageName) argument
3210 forceStopPackageLocked(final String packageName, int uid) argument
3223 killPackageProcessesLocked(String packageName, int uid, int minOomAdj, boolean callerWillRestart, boolean doit) argument
3836 getIntentSender(int type, String packageName, IBinder token, String resultWho, int requestCode, Intent intent, String resolvedType, int flags) argument
3878 getIntentSenderLocked(int type, String packageName, int callingUid, IBinder token, String resultWho, int requestCode, Intent intent, String resolvedType, int flags) argument
5803 setDebugApp(String packageName, boolean waitForDebugger, boolean persistent) argument
10488 broadcastIntentInPackage(String packageName, int uid, Intent intent, String resolvedType, IIntentReceiver resultTo, int resultCode, String resultData, Bundle map, String requiredPermission, boolean serialized, boolean sticky) argument
[all...]
H A DActivityStack.java395 cls = new ComponentName(info.packageName, info.targetActivity);
441 cls = new ComponentName(info.packageName, info.targetActivity);
523 if (app.processName.equals(app.info.packageName)) {
828 prev.info.packageName);
1302 next, next.packageName, next.theme,
1337 next, next.packageName, next.theme,
1462 r, r.packageName, r.theme, r.nonLocalizedLabel,
1984 aInfo.applicationInfo.packageName);
2255 if (r.packageName != null) {
2371 mService.grantUriPermissionLocked(callingUid, r.packageName,
[all...]
H A DProcessRecord.java252 pkgList.add(_info.packageName);
337 pkgList.add(info.packageName);
/frameworks/base/core/java/android/app/
H A DDownloadManager.java514 ContentValues toContentValues(String packageName) { argument
519 values.put(Downloads.COLUMN_NOTIFICATION_PACKAGE, packageName);
722 public DownloadManager(ContentResolver resolver, String packageName) { argument
724 mPackageName = packageName;
H A DLocalActivityManager.java301 aInfo.packageName.equals(r.activityInfo.packageName))) {
H A DApplicationThreadNative.java236 String packageName = data.readString();
251 bindApplication(packageName, info,
649 public final void bindApplication(String packageName, ApplicationInfo info, argument
656 data.writeString(packageName);
H A DIApplicationThread.java81 void bindApplication(String packageName, ApplicationInfo info, List<ProviderInfo> providers, argument
H A DLoadedApk.java105 mPackageName = aInfo.packageName;
138 mApplicationInfo.packageName = name;
170 * @param packageName the name of the package (note: not its
175 private static String[] getLibrariesFor(String packageName) { argument
178 ai = ActivityThread.getPackageManager().getApplicationInfo(packageName,
H A DSearchableInfo.java365 suggestProviderPackage = pi.packageName;
520 ComponentName cName = new ComponentName(activityInfo.packageName, activityInfo.name);
H A DNativeActivity.java195 Environment.getExternalStorageAppFilesDirectory(ai.packageName).toString(),
/frameworks/base/core/java/android/content/pm/
H A DRegisteredServicesCache.java383 ComponentName componentName = new ComponentName(si.packageName, si.name);
408 si.packageName, attrs);
418 "Unable to load resources for pacakge " + si.packageName);
509 String packageName, AttributeSet attrs);
508 parseServiceAttributes(Resources res, String packageName, AttributeSet attrs) argument
/frameworks/base/core/java/android/view/
H A DWindowManagerPolicy.java463 * @param packageName The name of the application package being started.
475 public View addStartingWindow(IBinder appToken, String packageName, argument
H A DWindow.java421 if (wp.packageName == null) {
422 wp.packageName = mContext.getPackageName();
/frameworks/base/services/java/com/android/server/
H A DWallpaperManagerService.java218 public void onPackageUpdateFinished(String packageName, int uid) { argument
221 mWallpaperComponent.getPackageName().equals(packageName)) {
231 public void onPackageUpdateStarted(String packageName, int uid) { argument
234 mWallpaperComponent.getPackageName().equals(packageName)) {
524 rsi.packageName.equals(si.packageName)) {
H A DAccessibilityManagerService.java521 CharSequence packageName = event.getPackageName();
523 if (packageNames.isEmpty() || packageNames.contains(packageName)) {
601 ComponentName componentName = new ComponentName(intalledService.packageName,
H A DMountService.java1512 private boolean isUidOwnerOfPackageOrSystem(String packageName, int callerUid) { argument
1517 if (packageName == null) {
1521 final int packageUid = mPms.getPackageUid(packageName);
1524 Slog.d(TAG, "packageName = " + packageName + ", packageUid = " +
1894 if (!isUidOwnerOfPackageOrSystem(obbInfo.packageName, mObbState.callerUid)) {
1896 + " which is owned by " + obbInfo.packageName);
2015 + " (owned by " + obbInfo.packageName + ")");
H A DNotificationManagerService.java142 private static String idDebugString(Context baseContext, String packageName, int id) { argument
145 if (packageName != null) {
147 c = baseContext.createPackageContext(packageName, 0);
865 private void sendAccessibilityEvent(Notification notification, CharSequence packageName) { argument
873 event.setPackageName(packageName);
H A DDeviceStorageMonitorService.java122 public void onRemoveCompleted(String packageName, boolean succeeded) { argument
/frameworks/base/packages/DefaultContainerService/src/com/android/defcontainer/
H A DDefaultContainerService.java148 ret.packageName = pkg.packageName;
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPhoneWindowManager.java874 public View addStartingWindow(IBinder appToken, String packageName, argument
880 if (packageName == null) {
887 //Log.i(TAG, "addStartingWindow " + packageName + ": nonLocalizedLabel="
891 context = context.createPackageContext(packageName, 0);
932 params.packageName = packageName;
935 params.setTitle("Starting " + packageName);
952 TAG, "Adding starting window for " + packageName
1378 if ("com.google.android.youtube".equals(attrs.packageName)
1484 if ("com.google.android.youtube".equals(attrs.packageName)
[all...]
H A DRecentApplicationsDialog.java216 if (homeInfo.packageName.equals(
/frameworks/base/test-runner/src/android/test/mock/
H A DMockContext.java422 public Context createPackageContext(String packageName, int flags) argument

Completed in 267 milliseconds

123456