Searched defs:profileName (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/core/java/android/content/pm/dex/
H A DArtManager.java211 public static File getProfileSnapshotFileForName(String packageName, String profileName) { argument
213 return new File(profileDir, profileName + ".snapshot");
/frameworks/base/core/java/android/service/euicc/
H A DEuiccProfileInfo.java313 String profileName,
322 this.mProfileName = profileName;
437 + ", profileName="
309 EuiccProfileInfo( String iccid, @Nullable String nickname, String serviceProviderName, String profileName, @ProfileClass int profileClass, @ProfileState int state, CarrierIdentifier carrierIdentifier, @PolicyRule int policyRules, @Nullable List<UiccAccessRule> accessRules) argument
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
H A DLocalBluetoothProfileManager.java297 private void addHeadsetProfile(LocalBluetoothProfile profile, String profileName, argument
303 mProfileNameMap.put(profileName, profile);
310 String profileName, String stateChangedAction) {
312 mProfileNameMap.put(profileName, profile);
316 String profileName, String stateChangedAction) {
319 mProfileNameMap.put(profileName, profile);
309 addProfile(LocalBluetoothProfile profile, String profileName, String stateChangedAction) argument
315 addPanProfile(LocalBluetoothProfile profile, String profileName, String stateChangedAction) argument
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageDexOptimizer.java216 String profileName = ArtManager.getProfileName(i == 0 ? null : pkg.splitNames[i - 1]);
230 isProfileUpdated(pkg, sharedGid, profileName, compilerFilter);
239 packageStats, options.isDowngrade(), profileName, dexMetadataPath,
265 String profileName, String dexMetadataPath, int compilationReason) {
292 profileName, dexMetadataPath, getReasonName(compilationReason));
413 options.isDowngrade(), info.targetSdkVersion, /*profileName*/ null,
600 private boolean isProfileUpdated(PackageParser.Package pkg, int uid, String profileName, argument
608 return mInstaller.mergeProfiles(uid, pkg.packageName, profileName);
262 dexOptPath(PackageParser.Package pkg, String path, String isa, String compilerFilter, boolean profileUpdated, String classLoaderContext, int dexoptFlags, int uid, CompilerStats.PackageStats packageStats, boolean downgrade, String profileName, String dexMetadataPath, int compilationReason) argument
H A DInstaller.java296 @Nullable String profileName, @Nullable String dexMetadataPath,
303 targetSdkVersion, profileName, dexMetadataPath, compilationReason);
309 public boolean mergeProfiles(int uid, String packageName, String profileName) argument
313 return mInstalld.mergeProfiles(uid, packageName, profileName);
319 public boolean dumpProfiles(int uid, String packageName, String profileName, String codePath) argument
323 return mInstalld.dumpProfiles(uid, packageName, profileName, codePath);
330 String profileName) throws InstallerException {
333 return mInstalld.copySystemProfile(systemProfile, uid, packageName, profileName);
377 public void clearAppProfiles(String packageName, String profileName) throws InstallerException { argument
380 mInstalld.clearAppProfiles(packageName, profileName);
292 dexopt(String apkPath, int uid, @Nullable String pkgName, String instructionSet, int dexoptNeeded, @Nullable String outputPath, int dexFlags, String compilerFilter, @Nullable String volumeUuid, @Nullable String sharedLibraries, @Nullable String seInfo, boolean downgrade, int targetSdkVersion, @Nullable String profileName, @Nullable String dexMetadataPath, @Nullable String compilationReason) argument
329 copySystemProfile(String systemProfile, int uid, String packageName, String profileName) argument
533 createProfileSnapshot(int appId, String packageName, String profileName, String classpath) argument
543 destroyProfileSnapshot(String packageName, String profileName) argument
571 prepareAppProfile(String pkg, @UserIdInt int userId, @AppIdInt int appId, String profileName, String codePath, String dexMetadataPath) argument
[all...]
/frameworks/base/services/core/java/com/android/server/pm/dex/
H A DArtManagerService.java258 private void createProfileSnapshot(String packageName, String profileName, String classpath, argument
263 if (!mInstaller.createProfileSnapshot(appId, packageName, profileName, classpath)) {
274 File snapshotProfile = ArtManager.getProfileSnapshotFileForName(packageName, profileName);
294 private void destroyProfileSnapshot(String packageName, String profileName) { argument
296 Slog.d(TAG, "Destroying profile snapshot for" + packageName + ":" + profileName);
301 mInstaller.destroyProfileSnapshot(packageName, profileName);
304 packageName + ":" + profileName, e);
406 String profileName = codePathsProfileNames.valueAt(i);
411 profileName, codePath, dexMetadataPath);
439 String profileName
[all...]
/frameworks/native/cmds/installd/
H A DInstalldNativeService.cpp575 const std::string& profileName) {
581 if (!clear_primary_reference_profile(packageName, profileName)) {
584 if (!clear_primary_current_profiles(packageName, profileName)) {
1885 const std::string& profileName, const std::string& codePath, bool* _aidl_return) {
1891 *_aidl_return = dump_profiles(uid, packageName, profileName, codePath);
1897 int32_t packageUid, const std::string& packageName, const std::string& profileName,
1902 *_aidl_return = copy_system_profile(systemProfile, packageUid, packageName, profileName);
1908 const std::string& profileName, bool* _aidl_return) {
1913 *_aidl_return = analyze_primary_profiles(uid, packageName, profileName);
1918 const std::string& packageName, const std::string& profileName,
574 clearAppProfiles(const std::string& packageName, const std::string& profileName) argument
1884 dumpProfiles(int32_t uid, const std::string& packageName, const std::string& profileName, const std::string& codePath, bool* _aidl_return) argument
1896 copySystemProfile(const std::string& systemProfile, int32_t packageUid, const std::string& packageName, const std::string& profileName, bool* _aidl_return) argument
1907 mergeProfiles(int32_t uid, const std::string& packageName, const std::string& profileName, bool* _aidl_return) argument
1917 createProfileSnapshot(int32_t appId, const std::string& packageName, const std::string& profileName, const std::string& classpath, bool* _aidl_return) argument
1928 destroyProfileSnapshot(const std::string& packageName, const std::string& profileName) argument
1945 dexopt(const std::string& apkPath, int32_t uid, const std::unique_ptr<std::string>& packageName, const std::string& instructionSet, int32_t dexoptNeeded, const std::unique_ptr<std::string>& outputPath, int32_t dexFlags, const std::string& compilerFilter, const std::unique_ptr<std::string>& uuid, const std::unique_ptr<std::string>& classLoaderContext, const std::unique_ptr<std::string>& seInfo, bool downgrade, int32_t targetSdkVersion, const std::unique_ptr<std::string>& profileName, const std::unique_ptr<std::string>& dexMetadataPath, const std::unique_ptr<std::string>& compilationReason) argument
2664 prepareAppProfile(const std::string& packageName, int32_t userId, int32_t appId, const std::string& profileName, const std::string& codePath, const std::unique_ptr<std::string>& dexMetadata, bool* _aidl_return) argument
[all...]
/frameworks/base/core/java/android/app/admin/
H A DDevicePolicyManager.java5464 * @param profileName The name of the profile.
5467 public void setProfileName(@NonNull ComponentName admin, String profileName) { argument
5471 mService.setProfileName(admin, profileName);
/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
H A DDevicePolicyManagerService.java7729 public void setProfileName(ComponentName who, String profileName) { argument
7737 mUserManager.setUserName(userId, profileName);

Completed in 292 milliseconds