Searched refs:profileBadge (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/core/java/android/content/pm/
H A DUserInfo.java113 public int profileBadge; field in class:UserInfo
238 profileBadge = orig.profileBadge;
267 dest.writeInt(profileBadge);
293 profileBadge = source.readInt();
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/
H A DUserManagerServiceUserInfoTest.java131 user.profileBadge = 2;
146 assertEquals("profile badge not preseved", one.profileBadge, two.profileBadge);
H A DUserManagerServiceCreateProfileTest.java129 profile.profileBadge = nextBadge;
148 profileBadgeOne.profileBadge = 1;
/frameworks/base/services/core/java/com/android/server/pm/
H A DUserManagerService.java159 private static final String ATTR_PROFILE_BADGE = "profileBadge";
926 return userInfo != null ? userInfo.profileBadge : 0;
2051 Integer.toString(userInfo.profileBadge));
2188 int profileBadge = 0;
2228 profileBadge = readIntAttribute(parser, ATTR_PROFILE_BADGE, 0);
2285 userInfo.profileBadge = profileBadge;
2480 userInfo.profileBadge = getFreeProfileBadgeLU(parentId);
3789 && ui.profileBadge < maxManagedProfiles) {
3790 usedBadges[ui.profileBadge]
[all...]
/frameworks/base/core/java/android/app/
H A DNotification.java3829 Bitmap profileBadge = getProfileBadge();
3831 if (profileBadge != null) {
3832 contentView.setImageViewBitmap(R.id.profile_badge, profileBadge);

Completed in 87 milliseconds