/frameworks/native/cmds/installd/binder/android/os/ |
D | IInstalld.aidl | 55 @nullable @utf8InCpp String profileName, in dexopt() argument 61 boolean mergeProfiles(int uid, @utf8InCpp String packageName, @utf8InCpp String profileName); in mergeProfiles() argument 62 boolean dumpProfiles(int uid, @utf8InCpp String packageName, @utf8InCpp String profileName, in dumpProfiles() argument 65 @utf8InCpp String packageName, @utf8InCpp String profileName); in copySystemProfile() argument 66 void clearAppProfiles(@utf8InCpp String packageName, @utf8InCpp String profileName); in clearAppProfiles() argument 70 @utf8InCpp String profileName, @utf8InCpp String classpath); in createProfileSnapshot() argument 71 void destroyProfileSnapshot(@utf8InCpp String packageName, @utf8InCpp String profileName); in destroyProfileSnapshot() argument 103 int userId, int appId, @utf8InCpp String profileName, @utf8InCpp String codePath, in prepareAppProfile() argument
|
/frameworks/base/services/core/java/com/android/server/pm/ |
D | Installer.java | 296 @Nullable String profileName, @Nullable String dexMetadataPath, in dexopt() argument 303 targetSdkVersion, profileName, dexMetadataPath, compilationReason); in dexopt() 309 public boolean mergeProfiles(int uid, String packageName, String profileName) in mergeProfiles() argument 313 return mInstalld.mergeProfiles(uid, packageName, profileName); in mergeProfiles() 319 public boolean dumpProfiles(int uid, String packageName, String profileName, String codePath) in dumpProfiles() argument 323 return mInstalld.dumpProfiles(uid, packageName, profileName, codePath); in dumpProfiles() 330 String profileName) throws InstallerException { in copySystemProfile() argument 333 return mInstalld.copySystemProfile(systemProfile, uid, packageName, profileName); in copySystemProfile() 377 public void clearAppProfiles(String packageName, String profileName) throws InstallerException { in clearAppProfiles() argument 380 mInstalld.clearAppProfiles(packageName, profileName); in clearAppProfiles() [all …]
|
D | PackageDexOptimizer.java | 216 String profileName = ArtManager.getProfileName(i == 0 ? null : pkg.splitNames[i - 1]); in performDexOptLI() local 230 isProfileUpdated(pkg, sharedGid, profileName, compilerFilter); in performDexOptLI() 239 packageStats, options.isDowngrade(), profileName, dexMetadataPath, in performDexOptLI() 265 String profileName, String dexMetadataPath, int compilationReason) { in dexOptPath() argument 292 profileName, dexMetadataPath, getReasonName(compilationReason)); in dexOptPath() 600 private boolean isProfileUpdated(PackageParser.Package pkg, int uid, String profileName, in isProfileUpdated() argument 608 return mInstaller.mergeProfiles(uid, pkg.packageName, profileName); in isProfileUpdated()
|
D | OtaDexoptService.java | 264 int targetSdkVersion, @Nullable String profileName, in generatePackageDexopts() 287 encodeParameter(builder, profileName); in generatePackageDexopts()
|
/frameworks/base/services/core/java/com/android/server/pm/dex/ |
D | ArtManagerService.java | 258 private void createProfileSnapshot(String packageName, String profileName, String classpath, in createProfileSnapshot() argument 263 if (!mInstaller.createProfileSnapshot(appId, packageName, profileName, classpath)) { in createProfileSnapshot() 274 File snapshotProfile = ArtManager.getProfileSnapshotFileForName(packageName, profileName); in createProfileSnapshot() 294 private void destroyProfileSnapshot(String packageName, String profileName) { in destroyProfileSnapshot() argument 296 Slog.d(TAG, "Destroying profile snapshot for" + packageName + ":" + profileName); in destroyProfileSnapshot() 301 mInstaller.destroyProfileSnapshot(packageName, profileName); in destroyProfileSnapshot() 304 packageName + ":" + profileName, e); in destroyProfileSnapshot() 406 String profileName = codePathsProfileNames.valueAt(i); in prepareAppProfiles() local 411 profileName, codePath, dexMetadataPath); in prepareAppProfiles() 439 String profileName = packageProfileNames.valueAt(i); in clearAppProfiles() local [all …]
|
/frameworks/native/cmds/installd/ |
D | InstalldNativeService.h | 88 int32_t targetSdkVersion, const std::unique_ptr<std::string>& profileName, 95 const std::string& profileName, bool* _aidl_return); 97 const std::string& profileName, const std::string& codePath, bool* _aidl_return); 99 int32_t uid, const std::string& packageName, const std::string& profileName, 101 binder::Status clearAppProfiles(const std::string& packageName, const std::string& profileName); 105 const std::string& profileName, const std::string& classpath, bool* _aidl_return); 107 const std::string& profileName); 141 int32_t userId, int32_t appId, const std::string& profileName,
|
D | InstalldNativeService.cpp | 575 const std::string& profileName) { in clearAppProfiles() argument 581 if (!clear_primary_reference_profile(packageName, profileName)) { in clearAppProfiles() 584 if (!clear_primary_current_profiles(packageName, profileName)) { in clearAppProfiles() 1885 const std::string& profileName, const std::string& codePath, bool* _aidl_return) { in dumpProfiles() argument 1891 *_aidl_return = dump_profiles(uid, packageName, profileName, codePath); in dumpProfiles() 1897 int32_t packageUid, const std::string& packageName, const std::string& profileName, in copySystemProfile() argument 1902 *_aidl_return = copy_system_profile(systemProfile, packageUid, packageName, profileName); in copySystemProfile() 1908 const std::string& profileName, bool* _aidl_return) { in mergeProfiles() argument 1913 *_aidl_return = analyze_primary_profiles(uid, packageName, profileName); in mergeProfiles() 1918 const std::string& packageName, const std::string& profileName, in createProfileSnapshot() argument [all …]
|
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/ |
D | LocalBluetoothProfileManager.java | 297 private void addHeadsetProfile(LocalBluetoothProfile profile, String profileName, in addHeadsetProfile() argument 303 mProfileNameMap.put(profileName, profile); in addHeadsetProfile() 310 String profileName, String stateChangedAction) { in addProfile() argument 312 mProfileNameMap.put(profileName, profile); in addProfile() 316 String profileName, String stateChangedAction) { in addPanProfile() argument 319 mProfileNameMap.put(profileName, profile); in addPanProfile()
|
/frameworks/base/core/java/android/content/pm/dex/ |
D | ArtManager.java | 211 public static File getProfileSnapshotFileForName(String packageName, String profileName) { in getProfileSnapshotFileForName() argument 213 return new File(profileDir, profileName + ".snapshot"); in getProfileSnapshotFileForName()
|
/frameworks/base/core/java/android/service/euicc/ |
D | EuiccProfileInfo.java | 313 String profileName, in EuiccProfileInfo() argument 322 this.mProfileName = profileName; in EuiccProfileInfo()
|
/frameworks/base/core/java/android/app/admin/ |
D | IDevicePolicyManager.aidl | 151 void setProfileName(in ComponentName who, String profileName); in setProfileName() argument
|
D | DevicePolicyManager.java | 5467 public void setProfileName(@NonNull ComponentName admin, String profileName) { in setProfileName() argument 5471 mService.setProfileName(admin, profileName); in setProfileName()
|
/frameworks/base/services/core/java/com/android/server/ |
D | ConnectivityService.java | 3830 String profileName = new String(profileTag); in updateLockdownVpn() local 3832 profileName, mKeyStore.get(Credentials.VPN + profileName)); in updateLockdownVpn() 3834 Slog.e(TAG, "Lockdown VPN configured invalid profile " + profileName); in updateLockdownVpn()
|
/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/ |
D | DevicePolicyManagerService.java | 7729 public void setProfileName(ComponentName who, String profileName) { in setProfileName() argument 7737 mUserManager.setUserName(userId, profileName); in setProfileName()
|