Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/security/attestationverification/
DAttestationProfile.java82 @Nullable String profileName) { in AttestationProfile() argument
85 mProfileName = profileName; in AttestationProfile()
124 public AttestationProfile(@NonNull String packageName, @NonNull String profileName) { in AttestationProfile() argument
125 this(PROFILE_APP_DEFINED, packageName, profileName); in AttestationProfile()
126 if (packageName == null || profileName == null) { in AttestationProfile()
259 String profileName = (flg & 0x4) == 0 ? null : in.readString(); in AttestationProfile() local
265 this.mProfileName = profileName; in AttestationProfile()
/frameworks/native/cmds/installd/binder/android/os/
DIInstalld.aidl67 @nullable @utf8InCpp String profileName, in dexopt() argument
76 int mergeProfiles(int uid, @utf8InCpp String packageName, @utf8InCpp String profileName); in mergeProfiles() argument
77 boolean dumpProfiles(int uid, @utf8InCpp String packageName, @utf8InCpp String profileName, in dumpProfiles() argument
80 @utf8InCpp String packageName, @utf8InCpp String profileName); in copySystemProfile() argument
81 void clearAppProfiles(@utf8InCpp String packageName, @utf8InCpp String profileName); in clearAppProfiles() argument
83 void deleteReferenceProfile(@utf8InCpp String packageName, @utf8InCpp String profileName); in deleteReferenceProfile() argument
86 @utf8InCpp String profileName, @utf8InCpp String classpath); in createProfileSnapshot() argument
87 void destroyProfileSnapshot(@utf8InCpp String packageName, @utf8InCpp String profileName); in destroyProfileSnapshot() argument
113 int userId, int appId, @utf8InCpp String profileName, @utf8InCpp String codePath, in prepareAppProfile() argument
/frameworks/base/core/java/android/app/admin/
DManagedProfileProvisioningParams.java59 @Nullable String profileName, in ManagedProfileProvisioningParams() argument
67 this.mProfileName = profileName; in ManagedProfileProvisioningParams()
204 public Builder setProfileName(@Nullable String profileName) { in setProfileName() argument
205 this.mProfileName = profileName; in setProfileName()
322 String profileName = in.readString();
332 profileName,
DIDevicePolicyManager.aidl195 void setProfileName(in ComponentName who, String profileName); in setProfileName() argument
DDevicePolicyManager.java9919 public void setProfileName(@NonNull ComponentName admin, String profileName) { in setProfileName() argument
9923 mService.setProfileName(admin, profileName); in setProfileName()
/frameworks/native/cmds/installd/
DInstalldNativeService.h142 int32_t targetSdkVersion, const std::optional<std::string>& profileName,
151 const std::string& profileName, int* _aidl_return);
153 const std::string& profileName, const std::string& codePath,
156 int32_t uid, const std::string& packageName, const std::string& profileName,
158 binder::Status clearAppProfiles(const std::string& packageName, const std::string& profileName);
161 const std::string& profileName);
164 const std::string& profileName, const std::string& classpath, bool* _aidl_return);
166 const std::string& profileName);
197 int32_t userId, int32_t appId, const std::string& profileName,
DInstalldNativeService.cpp1163 const std::string& profileName) { in clearAppProfiles() argument
1166 CHECK_ARGUMENT_FILE_NAME(profileName); in clearAppProfiles()
1167 if (!base::EndsWith(profileName, ".prof")) { in clearAppProfiles()
1170 profileName.c_str())); in clearAppProfiles()
1175 if (!clear_primary_reference_profile(packageName, profileName)) { in clearAppProfiles()
1178 if (!clear_primary_current_profiles(packageName, profileName)) { in clearAppProfiles()
1345 const std::string& profileName) { in deleteReferenceProfile() argument
1352 create_reference_profile_path(packageName, profileName, /*is_secondary_dex=*/false); in deleteReferenceProfile()
1357 return error("Failed to delete profile " + profileName + " for " + packageName); in deleteReferenceProfile()
3193 const std::string& profileName, in dumpProfiles() argument
[all …]
/frameworks/base/services/core/java/com/android/server/pm/
DPackageDexOptimizer.java317 String profileName = ArtManager.getProfileName( in performDexOptLI() local
353 analyseProfiles(pkg, sharedGid, profileName, compilerFilter); in performDexOptLI()
358 cloudProfileName = "cloud-" + profileName; in performDexOptLI()
360 profileName = cloudProfileName; in performDexOptLI()
366 profileName = null; in performDexOptLI()
384 packageStats, options.isDowngrade(), profileName, dexMetadataPath, in performDexOptLI()
442 private boolean prepareCloudProfile(AndroidPackage pkg, String profileName, String path, in prepareCloudProfile() argument
469 CompilerStats.PackageStats packageStats, boolean downgrade, String profileName, in dexOptPath() argument
495 pkg.getTargetSdkVersion(), profileName, dexMetadataPath, in dexOptPath()
789 private int analyseProfiles(AndroidPackage pkg, int uid, String profileName, in analyseProfiles() argument
DOtaDexoptService.java302 int targetSdkVersion, @Nullable String profileName, in generatePackageDexopts()
331 encodeParameter(builder, profileName); in generatePackageDexopts()
DInstaller.java599 @Nullable String profileName, @Nullable String dexMetadataPath, in dexopt() argument
/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/packages/SettingsLib/src/com/android/settingslib/bluetooth/
DLocalBluetoothProfileManager.java287 private void addHeadsetProfile(LocalBluetoothProfile profile, String profileName, in addHeadsetProfile() argument
293 mProfileNameMap.put(profileName, profile); in addHeadsetProfile()
300 String profileName, String stateChangedAction) { in addProfile() argument
302 mProfileNameMap.put(profileName, profile); in addProfile()
306 String profileName, String stateChangedAction) { in addPanProfile() argument
309 mProfileNameMap.put(profileName, profile); in addPanProfile()
/frameworks/base/services/tests/VpnTests/java/com/android/server/
DVpnManagerServiceTest.java299 private void setupVpnProfile(String profileName) { in setupVpnProfile() argument
300 final VpnProfile profile = new VpnProfile(profileName); in setupVpnProfile()
301 profile.name = profileName; in setupVpnProfile()
306 doReturn(encodedProfile).when(mVpnProfileStore).get(Credentials.VPN + profileName); in setupVpnProfile()
/frameworks/base/telephony/java/android/service/euicc/
DEuiccProfileInfo.java330 String profileName, in EuiccProfileInfo() argument
339 this.mProfileName = profileName; in EuiccProfileInfo()
/frameworks/base/services/tests/VpnTests/java/com/android/server/net/
DLockdownVpnTrackerTest.java106 final String profileName = "testVpnProfile"; in createTestVpnProfile() local
107 final VpnProfile profile = new VpnProfile(profileName); in createTestVpnProfile()
/frameworks/base/services/core/java/com/android/server/
DVpnManagerService.java502 String profileName = new String(profileTag); in updateLockdownVpn() local
504 profileName, mVpnProfileStore.get(Credentials.VPN + profileName)); in updateLockdownVpn()
506 loge("Lockdown VPN configured invalid profile " + profileName); in updateLockdownVpn()
/frameworks/native/vulkan/vkprofiles/generated/
Dvulkan_profiles.h154 char profileName[VP_MAX_PROFILE_NAME_SIZE]; member
Dvulkan_profiles.cpp10135 VPAPI_ATTR const VpProfileDesc* vpGetProfileDesc(const char profileName[VP_MAX_PROFILE_NAME_SIZE]) { in vpGetProfileDesc()
10137 …if (strncmp(profiles[i].props.profileName, profileName, VP_MAX_PROFILE_NAME_SIZE) == 0) return &pr… in vpGetProfileDesc()
10146 const detail::VpProfileDesc* profile_desc = detail::vpGetProfileDesc(profile.profileName); in GatherProfiles()
10235 const detail::VpProfileDesc* pProfileDesc = vpGetProfileDesc(pProfile->profileName); in vpGetInstanceProfileSupportSingleProfile()
10313 …etail::VpProfileDesc* profile_desc = detail::vpGetProfileDesc(profiles[profile_index].profileName); in vpGetProfileStructureTypes()
10390 …etail::VpProfileDesc* profile_desc = detail::vpGetProfileDesc(profiles[profile_index].profileName); in vpGetProfileExtensionProperties()
10469 const detail::VpProfileDesc* pDesc = detail::vpGetProfileDesc(pProfile->profileName); in vpGetProfileRequiredProfiles()
10495 const detail::VpProfileDesc* pDesc = detail::vpGetProfileDesc(profiles[i].profileName); in vpGetProfileAPIVersion()
10509 const detail::VpProfileDesc* pDesc = detail::vpGetProfileDesc(pProfile->profileName); in vpGetProfileFallbacks()
10531 …const detail::VpProfileDesc* pDesc = detail::vpGetProfileDesc(profiles[profile_index].profileName); in vpHasMultipleVariantsProfile()
[all …]
/frameworks/base/core/java/android/permission/
DPermissionControllerManager.java721 @NonNull String profileName, in getPrivilegesDescriptionStringForProfile()
726 service.getPrivilegesDescriptionStringForProfile(profileName, future); in getPrivilegesDescriptionStringForProfile()
/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
DDevicePolicyManagerService.java10559 public void setProfileName(ComponentName who, String profileName) {
10567 profileName.substring(0, Math.min(profileName.length(), MAX_PROFILE_NAME_LENGTH));