Home
last modified time | relevance | path

Searched refs:profileName (Results 1 – 16 of 16) sorted by relevance

/frameworks/native/cmds/installd/binder/android/os/
DIInstalld.aidl55 @nullable @utf8InCpp String profileName, in dexopt() argument
63 boolean mergeProfiles(int uid, @utf8InCpp String packageName, @utf8InCpp String profileName); in mergeProfiles() argument
64 boolean dumpProfiles(int uid, @utf8InCpp String packageName, @utf8InCpp String profileName, in dumpProfiles() argument
67 @utf8InCpp String packageName, @utf8InCpp String profileName); in copySystemProfile() argument
68 void clearAppProfiles(@utf8InCpp String packageName, @utf8InCpp String profileName); in clearAppProfiles() argument
72 @utf8InCpp String profileName, @utf8InCpp String classpath); in createProfileSnapshot() argument
73 void destroyProfileSnapshot(@utf8InCpp String packageName, @utf8InCpp String profileName); in destroyProfileSnapshot() argument
105 int userId, int appId, @utf8InCpp String profileName, @utf8InCpp String codePath, in prepareAppProfile() argument
/frameworks/base/services/core/java/com/android/server/pm/
DInstaller.java307 @Nullable String profileName, @Nullable String dexMetadataPath, in dexopt() argument
317 targetSdkVersion, profileName, dexMetadataPath, compilationReason); in dexopt()
323 public boolean mergeProfiles(int uid, String packageName, String profileName) in mergeProfiles() argument
327 return mInstalld.mergeProfiles(uid, packageName, profileName); in mergeProfiles()
333 public boolean dumpProfiles(int uid, String packageName, String profileName, String codePath) in dumpProfiles() argument
338 return mInstalld.dumpProfiles(uid, packageName, profileName, codePath); in dumpProfiles()
345 String profileName) throws InstallerException { in copySystemProfile() argument
348 return mInstalld.copySystemProfile(systemProfile, uid, packageName, profileName); in copySystemProfile()
397 public void clearAppProfiles(String packageName, String profileName) throws InstallerException { in clearAppProfiles() argument
400 mInstalld.clearAppProfiles(packageName, profileName); in clearAppProfiles()
[all …]
DPackageDexOptimizer.java216 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, in dexOptPath()
625 private boolean isProfileUpdated(PackageParser.Package pkg, int uid, String profileName, in isProfileUpdated() argument
633 return mInstaller.mergeProfiles(uid, pkg.packageName, profileName); in isProfileUpdated()
DOtaDexoptService.java282 int targetSdkVersion, @Nullable String profileName, in generatePackageDexopts()
305 encodeParameter(builder, profileName); in generatePackageDexopts()
/frameworks/base/services/core/java/com/android/server/pm/dex/
DArtManagerService.java258 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()
407 String profileName = codePathsProfileNames.valueAt(i); in prepareAppProfiles() local
418 profileName, codePath, dexMetadataPath); in prepareAppProfiles()
447 String profileName = packageProfileNames.valueAt(i); in clearAppProfiles() local
[all …]
/frameworks/native/cmds/installd/
DInstalldNativeService.h98 int32_t targetSdkVersion, const std::unique_ptr<std::string>& profileName,
108 const std::string& profileName, bool* _aidl_return);
110 const std::string& profileName, const std::string& codePath, bool* _aidl_return);
112 int32_t uid, const std::string& packageName, const std::string& profileName,
114 binder::Status clearAppProfiles(const std::string& packageName, const std::string& profileName);
118 const std::string& profileName, const std::string& classpath, bool* _aidl_return);
120 const std::string& profileName);
154 int32_t userId, int32_t appId, const std::string& profileName,
DInstalldNativeService.cpp531 const std::string& profileName) { in clearAppProfiles() argument
537 if (!clear_primary_reference_profile(packageName, profileName)) { in clearAppProfiles()
540 if (!clear_primary_current_profiles(packageName, profileName)) { in clearAppProfiles()
2031 const std::string& profileName, const std::string& codePath, bool* _aidl_return) { in dumpProfiles() argument
2037 *_aidl_return = dump_profiles(uid, packageName, profileName, codePath); in dumpProfiles()
2043 int32_t packageUid, const std::string& packageName, const std::string& profileName, in copySystemProfile() argument
2048 *_aidl_return = copy_system_profile(systemProfile, packageUid, packageName, profileName); in copySystemProfile()
2054 const std::string& profileName, bool* _aidl_return) { in mergeProfiles() argument
2059 *_aidl_return = analyze_primary_profiles(uid, packageName, profileName); in mergeProfiles()
2064 const std::string& packageName, const std::string& profileName, in createProfileSnapshot() argument
[all …]
/frameworks/base/core/java/android/bluetooth/
DBluetoothProfileConnector.java73 BluetoothProfileConnector(BluetoothProfile profile, int profileId, String profileName, in BluetoothProfileConnector() argument
77 mProfileName = profileName; in BluetoothProfileConnector()
/frameworks/base/core/java/android/content/pm/dex/
DArtManager.java211 public static File getProfileSnapshotFileForName(String packageName, String profileName) { in getProfileSnapshotFileForName() argument
213 return new File(profileDir, profileName + ".snapshot"); in getProfileSnapshotFileForName()
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
DLocalBluetoothProfileManager.java224 private void addHeadsetProfile(LocalBluetoothProfile profile, String profileName, in addHeadsetProfile() argument
230 mProfileNameMap.put(profileName, profile); in addHeadsetProfile()
237 String profileName, String stateChangedAction) { in addProfile() argument
239 mProfileNameMap.put(profileName, profile); in addProfile()
243 String profileName, String stateChangedAction) { in addPanProfile() argument
246 mProfileNameMap.put(profileName, profile); in addPanProfile()
/frameworks/base/core/java/android/service/euicc/
DEuiccProfileInfo.java315 String profileName, in EuiccProfileInfo() argument
324 this.mProfileName = profileName; in EuiccProfileInfo()
/frameworks/base/core/java/android/app/admin/
DIDevicePolicyManager.aidl155 void setProfileName(in ComponentName who, String profileName); in setProfileName() argument
DDevicePolicyManager.java6341 public void setProfileName(@NonNull ComponentName admin, String profileName) { in setProfileName() argument
6345 mService.setProfileName(admin, profileName); in setProfileName()
/frameworks/base/services/core/java/com/android/server/
DConnectivityService.java4482 String profileName = new String(profileTag); in updateLockdownVpn() local
4484 profileName, mKeyStore.get(Credentials.VPN + profileName)); in updateLockdownVpn()
4486 Slog.e(TAG, "Lockdown VPN configured invalid profile " + profileName); in updateLockdownVpn()
/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
DDevicePolicyManagerService.java8389 public void setProfileName(ComponentName who, String profileName) { in setProfileName() argument
8396 mUserManager.setUserName(userId, profileName); in setProfileName()
/frameworks/base/tools/aapt2/integration-tests/CommandTests/
Dandroid-28.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/net/ javax/ ...