/frameworks/native/cmds/installd/binder/android/os/ |
D | IInstalld.aidl | 58 @nullable @utf8InCpp String profileName, in dexopt() argument 66 boolean mergeProfiles(int uid, @utf8InCpp String packageName, @utf8InCpp String profileName); in mergeProfiles() argument 67 boolean dumpProfiles(int uid, @utf8InCpp String packageName, @utf8InCpp String profileName, in dumpProfiles() argument 70 @utf8InCpp String packageName, @utf8InCpp String profileName); in copySystemProfile() argument 71 void clearAppProfiles(@utf8InCpp String packageName, @utf8InCpp String profileName); in clearAppProfiles() argument 75 @utf8InCpp String profileName, @utf8InCpp String classpath); in createProfileSnapshot() argument 76 void destroyProfileSnapshot(@utf8InCpp String packageName, @utf8InCpp String profileName); in destroyProfileSnapshot() argument 107 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 | 310 @Nullable String profileName, @Nullable String dexMetadataPath, in dexopt() argument 320 targetSdkVersion, profileName, dexMetadataPath, compilationReason); in dexopt() 326 public boolean mergeProfiles(int uid, String packageName, String profileName) in mergeProfiles() argument 330 return mInstalld.mergeProfiles(uid, packageName, profileName); in mergeProfiles() 336 public boolean dumpProfiles(int uid, String packageName, String profileName, String codePath) in dumpProfiles() argument 341 return mInstalld.dumpProfiles(uid, packageName, profileName, codePath); in dumpProfiles() 348 String profileName) throws InstallerException { in copySystemProfile() argument 351 return mInstalld.copySystemProfile(systemProfile, uid, packageName, profileName); in copySystemProfile() 400 public void clearAppProfiles(String packageName, String profileName) throws InstallerException { in clearAppProfiles() argument 403 mInstalld.clearAppProfiles(packageName, profileName); in clearAppProfiles() [all …]
|
D | PackageDexOptimizer.java | 214 String profileName = ArtManager.getProfileName(i == 0 ? null : pkg.splitNames[i - 1]); in performDexOptLI() local 228 isProfileUpdated(pkg, sharedGid, profileName, compilerFilter); in performDexOptLI() 237 packageStats, options.isDowngrade(), profileName, dexMetadataPath, in performDexOptLI() 263 String profileName, String dexMetadataPath, int compilationReason) { in dexOptPath() argument 287 profileName, dexMetadataPath, in dexOptPath() 620 private boolean isProfileUpdated(PackageParser.Package pkg, int uid, String profileName, in isProfileUpdated() argument 628 return mInstaller.mergeProfiles(uid, pkg.packageName, profileName); in isProfileUpdated()
|
D | OtaDexoptService.java | 282 int targetSdkVersion, @Nullable String profileName, in generatePackageDexopts() 305 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() 411 String profileName = codePathsProfileNames.valueAt(i); in prepareAppProfiles() local 422 profileName, codePath, dexMetadataPath); in prepareAppProfiles() 451 String profileName = packageProfileNames.valueAt(i); in clearAppProfiles() local [all …]
|
/frameworks/native/cmds/installd/ |
D | InstalldNativeService.h | 105 int32_t targetSdkVersion, const std::optional<std::string>& profileName, 115 const std::string& profileName, bool* _aidl_return); 117 const std::string& profileName, const std::string& codePath, bool* _aidl_return); 119 int32_t uid, const std::string& packageName, const std::string& profileName, 121 binder::Status clearAppProfiles(const std::string& packageName, const std::string& profileName); 125 const std::string& profileName, const std::string& classpath, bool* _aidl_return); 127 const std::string& profileName); 160 int32_t userId, int32_t appId, const std::string& profileName,
|
D | InstalldNativeService.cpp | 566 const std::string& profileName) { in clearAppProfiles() argument 572 if (!clear_primary_reference_profile(packageName, profileName)) { in clearAppProfiles() 575 if (!clear_primary_current_profiles(packageName, profileName)) { in clearAppProfiles() 2221 const std::string& profileName, const std::string& codePath, bool* _aidl_return) { in dumpProfiles() argument 2227 *_aidl_return = dump_profiles(uid, packageName, profileName, codePath); in dumpProfiles() 2233 int32_t packageUid, const std::string& packageName, const std::string& profileName, in copySystemProfile() argument 2238 *_aidl_return = copy_system_profile(systemProfile, packageUid, packageName, profileName); in copySystemProfile() 2244 const std::string& profileName, bool* _aidl_return) { in mergeProfiles() argument 2249 *_aidl_return = analyze_primary_profiles(uid, packageName, profileName); in mergeProfiles() 2254 const std::string& packageName, const std::string& profileName, in createProfileSnapshot() argument [all …]
|
/frameworks/base/core/java/android/bluetooth/ |
D | BluetoothProfileConnector.java | 73 BluetoothProfileConnector(BluetoothProfile profile, int profileId, String profileName, in BluetoothProfileConnector() argument 77 mProfileName = profileName; in BluetoothProfileConnector()
|
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/ |
D | LocalBluetoothProfileManager.java | 225 private void addHeadsetProfile(LocalBluetoothProfile profile, String profileName, in addHeadsetProfile() argument 231 mProfileNameMap.put(profileName, profile); in addHeadsetProfile() 238 String profileName, String stateChangedAction) { in addProfile() argument 240 mProfileNameMap.put(profileName, profile); in addProfile() 244 String profileName, String stateChangedAction) { in addPanProfile() argument 247 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/telephony/java/android/service/euicc/ |
D | EuiccProfileInfo.java | 319 String profileName, in EuiccProfileInfo() argument 328 this.mProfileName = profileName; in EuiccProfileInfo()
|
/frameworks/base/core/java/android/app/admin/ |
D | IDevicePolicyManager.aidl | 155 void setProfileName(in ComponentName who, String profileName); in setProfileName() argument
|
D | DevicePolicyManager.java | 6363 public void setProfileName(@NonNull ComponentName admin, String profileName) { in setProfileName() argument 6367 mService.setProfileName(admin, profileName); in setProfileName()
|
/frameworks/base/services/core/java/com/android/server/ |
D | ConnectivityService.java | 4795 String profileName = new String(profileTag); in updateLockdownVpn() local 4797 profileName, mKeyStore.get(Credentials.VPN + profileName)); in updateLockdownVpn() 4799 Slog.e(TAG, "Lockdown VPN configured invalid profile " + profileName); in updateLockdownVpn()
|
/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/ |
D | DevicePolicyManagerService.java | 8398 public void setProfileName(ComponentName who, String profileName) { in setProfileName() argument 8405 mUserManager.setUserName(userId, profileName); in setProfileName()
|