Home
last modified time | relevance | path

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

/frameworks/native/cmds/installd/binder/android/os/
DIInstalld.aidl64 @nullable @utf8InCpp String profileName, in dexopt() argument
72 int mergeProfiles(int uid, @utf8InCpp String packageName, @utf8InCpp String profileName); in mergeProfiles() argument
73 boolean dumpProfiles(int uid, @utf8InCpp String packageName, @utf8InCpp String profileName, in dumpProfiles() argument
76 @utf8InCpp String packageName, @utf8InCpp String profileName); in copySystemProfile() argument
77 void clearAppProfiles(@utf8InCpp String packageName, @utf8InCpp String profileName); in clearAppProfiles() argument
81 @utf8InCpp String profileName, @utf8InCpp String classpath); in createProfileSnapshot() argument
82 void destroyProfileSnapshot(@utf8InCpp String packageName, @utf8InCpp String profileName); in destroyProfileSnapshot() argument
111 int userId, int appId, @utf8InCpp String profileName, @utf8InCpp String codePath, in prepareAppProfile() argument
/frameworks/base/core/java/android/app/admin/
DManagedProfileProvisioningParams.java57 @Nullable String profileName, in ManagedProfileProvisioningParams() argument
64 this.mProfileName = profileName; in ManagedProfileProvisioningParams()
165 public Builder setProfileName(@Nullable String profileName) { in setProfileName() argument
166 this.mProfileName = profileName; in setProfileName()
265 String profileName = in.readString();
274 profileName,
DIDevicePolicyManager.aidl174 void setProfileName(in ComponentName who, String profileName); in setProfileName() argument
DDevicePolicyManager.java8222 public void setProfileName(@NonNull ComponentName admin, String profileName) { in setProfileName() argument
8226 mService.setProfileName(admin, profileName); in setProfileName()
/frameworks/base/services/core/java/com/android/server/pm/
DInstaller.java494 @Nullable String profileName, @Nullable String dexMetadataPath, in dexopt() argument
504 targetSdkVersion, profileName, dexMetadataPath, compilationReason); in dexopt()
519 public int mergeProfiles(int uid, String packageName, String profileName) in mergeProfiles() argument
523 return mInstalld.mergeProfiles(uid, packageName, profileName); in mergeProfiles()
529 public boolean dumpProfiles(int uid, String packageName, String profileName, String codePath) in dumpProfiles() argument
534 return mInstalld.dumpProfiles(uid, packageName, profileName, codePath); in dumpProfiles()
541 String profileName) throws InstallerException { in copySystemProfile() argument
544 return mInstalld.copySystemProfile(systemProfile, uid, packageName, profileName); in copySystemProfile()
571 public void clearAppProfiles(String packageName, String profileName) throws InstallerException { in clearAppProfiles() argument
574 mInstalld.clearAppProfiles(packageName, profileName); in clearAppProfiles()
[all …]
DPackageDexOptimizer.java242 String profileName = ArtManager.getProfileName( in performDexOptLI() local
260 ? analyseProfiles(pkg, sharedGid, profileName, compilerFilter) in performDexOptLI()
270 packageStats, options.isDowngrade(), profileName, dexMetadataPath, in performDexOptLI()
320 String profileName, String dexMetadataPath, int compilationReason) { in dexOptPath() argument
346 profileName, dexMetadataPath, in dexOptPath()
805 private int analyseProfiles(AndroidPackage pkg, int uid, String profileName, in analyseProfiles() argument
813 return mInstaller.mergeProfiles(uid, pkg.getPackageName(), profileName); in analyseProfiles()
DOtaDexoptService.java294 int targetSdkVersion, @Nullable String profileName, in generatePackageDexopts()
317 encodeParameter(builder, profileName); in generatePackageDexopts()
/frameworks/base/services/core/java/com/android/server/pm/dex/
DArtManagerService.java264 private void createProfileSnapshot(String packageName, String profileName, String classpath, in createProfileSnapshot() argument
269 if (!mInstaller.createProfileSnapshot(appId, packageName, profileName, classpath)) { in createProfileSnapshot()
280 File snapshotProfile = ArtManager.getProfileSnapshotFileForName(packageName, profileName); in createProfileSnapshot()
297 private void destroyProfileSnapshot(String packageName, String profileName) { in destroyProfileSnapshot() argument
299 Slog.d(TAG, "Destroying profile snapshot for" + packageName + ":" + profileName); in destroyProfileSnapshot()
304 mInstaller.destroyProfileSnapshot(packageName, profileName); in destroyProfileSnapshot()
307 packageName + ":" + profileName, e); in destroyProfileSnapshot()
415 String profileName = codePathsProfileNames.valueAt(i); in prepareAppProfiles() local
426 profileName, codePath, dexMetadataPath); in prepareAppProfiles()
456 String profileName = packageProfileNames.valueAt(i); in clearAppProfiles() local
[all …]
/frameworks/native/cmds/installd/
DInstalldNativeService.h118 int32_t targetSdkVersion, const std::optional<std::string>& profileName,
128 const std::string& profileName, int* _aidl_return);
130 const std::string& profileName, const std::string& codePath, bool* _aidl_return);
132 int32_t uid, const std::string& packageName, const std::string& profileName,
134 binder::Status clearAppProfiles(const std::string& packageName, const std::string& profileName);
138 const std::string& profileName, const std::string& classpath, bool* _aidl_return);
140 const std::string& profileName);
172 int32_t userId, int32_t appId, const std::string& profileName,
DInstalldNativeService.cpp586 const std::string& profileName) { in clearAppProfiles() argument
592 if (!clear_primary_reference_profile(packageName, profileName)) { in clearAppProfiles()
595 if (!clear_primary_current_profiles(packageName, profileName)) { in clearAppProfiles()
2336 const std::string& profileName, const std::string& codePath, bool* _aidl_return) { in dumpProfiles() argument
2342 *_aidl_return = dump_profiles(uid, packageName, profileName, codePath); in dumpProfiles()
2348 int32_t packageUid, const std::string& packageName, const std::string& profileName, in copySystemProfile() argument
2353 *_aidl_return = copy_system_profile(systemProfile, packageUid, packageName, profileName); in copySystemProfile()
2359 const std::string& profileName, int* _aidl_return) { in mergeProfiles() argument
2364 *_aidl_return = analyze_primary_profiles(uid, packageName, profileName); in mergeProfiles()
2369 const std::string& packageName, const std::string& profileName, in createProfileSnapshot() argument
[all …]
/frameworks/base/core/java/android/bluetooth/
DBluetoothProfileConnector.java79 BluetoothProfileConnector(BluetoothProfile profile, int profileId, String profileName, in BluetoothProfileConnector() argument
83 mProfileName = profileName; in BluetoothProfileConnector()
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
DLocalBluetoothProfileManager.java226 private void addHeadsetProfile(LocalBluetoothProfile profile, String profileName, in addHeadsetProfile() argument
232 mProfileNameMap.put(profileName, profile); in addHeadsetProfile()
239 String profileName, String stateChangedAction) { in addProfile() argument
241 mProfileNameMap.put(profileName, profile); in addProfile()
245 String profileName, String stateChangedAction) { in addPanProfile() argument
248 mProfileNameMap.put(profileName, profile); in addPanProfile()
/frameworks/base/packages/CompanionDeviceManager/src/com/android/companiondevicemanager/
DCompanionDeviceActivity.java87 String profileName = useDeviceProfile in onCreate() local
97 profileName, in onCreate()
111 profileName, in onCreate()
136 : profileName; in onCreate()
/frameworks/base/core/java/android/content/pm/dex/
DArtManager.java221 public static File getProfileSnapshotFileForName(String packageName, String profileName) { in getProfileSnapshotFileForName() argument
223 return new File(profileDir, profileName + ".snapshot"); in getProfileSnapshotFileForName()
/frameworks/base/services/core/java/com/android/server/
DVpnManagerService.java464 String profileName = new String(profileTag); in updateLockdownVpn() local
466 profileName, mVpnProfileStore.get(Credentials.VPN + profileName)); in updateLockdownVpn()
468 loge("Lockdown VPN configured invalid profile " + profileName); in updateLockdownVpn()
/frameworks/base/telephony/java/android/service/euicc/
DEuiccProfileInfo.java320 String profileName, in EuiccProfileInfo() argument
329 this.mProfileName = profileName; in EuiccProfileInfo()
/frameworks/base/core/java/android/permission/
DPermissionControllerManager.java669 @NonNull String profileName, in getPrivilegesDescriptionStringForProfile()
674 service.getPrivilegesDescriptionStringForProfile(profileName, future); in getPrivilegesDescriptionStringForProfile()
/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
DDevicePolicyManagerService.java9077 public void setProfileName(ComponentName who, String profileName) {
9084 mUserManager.setUserName(caller.getUserId(), profileName);