Lines Matching refs:in

6 ** you may not use this file except in compliance with the License.
11 ** Unless required by applicable law or agreed to in writing, software
60 String[] currentToCanonicalPackageNames(in String[] names);
61 String[] canonicalToCurrentPackageNames(in String[] names);
73 ActivityInfo getActivityInfo(in ComponentName className, int flags, int userId);
75 ActivityInfo getReceiverInfo(in ComponentName className, int flags, int userId);
77 ServiceInfo getServiceInfo(in ComponentName className, int flags, int userId);
79 ProviderInfo getProviderInfo(in ComponentName className, int flags, int userId);
85 boolean addPermission(in PermissionInfo info);
105 ResolveInfo resolveIntent(in Intent intent, String resolvedType, int flags, int userId);
107 List<ResolveInfo> queryIntentActivities(in Intent intent,
111 in ComponentName caller, in Intent[] specifics,
112 in String[] specificTypes, in Intent intent,
115 List<ResolveInfo> queryIntentReceivers(in Intent intent,
118 ResolveInfo resolveService(in Intent intent,
121 List<ResolveInfo> queryIntentServices(in Intent intent,
126 * mechanism that is not exposed in the API. This is to get around the IPC
127 * limit that kicks in when flags are included that bloat up the data
130 ParceledListSlice getInstalledPackages(int flags, in String lastRead, in int userId);
134 * mechanism that is not exposed in the API. This is to get around the IPC
135 * limit that kicks in when flags are included that bloat up the data
138 ParceledListSlice getInstalledApplications(int flags, in String lastRead, int userId);
153 * @param outNames Filled in with a list of the root names of the content
155 * @param outInfo Filled in with a list of the ProviderInfo for each
156 * name in 'outNames'.
165 in ComponentName className, int flags);
174 * @param observer a callback to use to notify when the package installation in finished.
180 void installPackage(in Uri packageURI, IPackageInstallObserver observer, int flags,
181 in String installerPackageName);
185 void setInstallerPackageName(in String targetPackage, in String installerPackageName);
191 * @param observer a callback to use to notify when the package deletion in finished.
194 void deletePackage(in String packageName, IPackageDeleteObserver observer, int flags);
196 String getInstallerPackageName(in String packageName);
204 void addPreferredActivity(in IntentFilter filter, int match,
205 in ComponentName[] set, in ComponentName activity, int userId);
207 void replacePreferredActivity(in IntentFilter filter, int match,
208 in ComponentName[] set, in ComponentName activity);
218 void setComponentEnabledSetting(in ComponentName componentName,
219 in int newState, in int flags, int userId);
224 int getComponentEnabledSetting(in ComponentName componentName, int userId);
229 void setApplicationEnabledSetting(in String packageName, in int newState, int flags, int userId);
234 int getApplicationEnabledSetting(in String packageName, int userId);
262 void freeStorageAndNotify(in long freeStorageSize,
286 void freeStorage(in long freeStorageSize,
287 in IntentSender pi);
290 * Delete all the cache files in an applications cache directory
295 void deleteApplicationCacheFiles(in String packageName, IPackageDataObserver observer);
303 void clearApplicationUserData(in String packageName, IPackageDataObserver observer, int userId);
313 void getPackageSizeInfo(in String packageName, int userHandle, IPackageStatsObserver observer);
343 * in the special development "no pre-dexopt" mode.
355 PackageCleanItem nextPackageToClean(in PackageCleanItem lastPackage);
359 boolean addPermissionAsync(in PermissionInfo info);
364 void installPackageWithVerification(in Uri packageURI, in IPackageInstallObserver observer,
365 int flags, in String installerPackageName, in Uri verificationURI,
366 in ManifestDigest manifestDigest, in ContainerEncryptionParams encryptionParams);
368 void installPackageWithVerificationAndEncryption(in Uri packageURI,
369 in IPackageInstallObserver observer, int flags, in String installerPackageName,
370 in VerificationParams verificationParams,
371 in ContainerEncryptionParams encryptionParams);