Home
last modified time | relevance | path

Searched refs:userType (Results 1 – 19 of 19) sorted by relevance

/packages/apps/Dialer/java/com/android/incallui/
DCallerInfo.java123 public @UserType long userType; field in CallerInfo
172 userType = ContactsUtils.USER_TYPE_CURRENT; in CallerInfo()
206 info.userType = ContactsUtils.USER_TYPE_CURRENT; in getCallerInfo()
316 info.userType = ContactsUtils.determineUserType(directoryId, contactId); in getCallerInfo()
320 context, info.lookupKeyOrNull, info.userType, directoryId); in getCallerInfo()
562 .append("\nuserType: " + userType) in toString()
DContactInfoCache.java265 cce.userType = info.userType; in populateCacheEntry()
707 public long userType = ContactsUtils.USER_TYPE_CURRENT; field in ContactInfoCache.ContactCacheEntry
746 + userType in toString()
DStatusBarNotifier.java306 final String content = getContentString(call, contactInfo.userType); in buildAndSendNotification()
589 if (contactInfo.lookupUri != null && contactInfo.userType != ContactsUtils.USER_TYPE_WORK) { in addPersonReference()
676 private String getContentString(DialerCall call, @UserType long userType) { in getContentString() argument
727 if (userType == ContactsUtils.USER_TYPE_WORK || isWorkCall) { in getContentString()
DCallerInfoUtils.java141 info.userType = ci.userType; in buildCachedContactInfo()
DCallCardPresenter.java440 && mPrimaryContactInfo.userType == ContactsUtils.USER_TYPE_WORK); in updatePrimaryCallState()
740 boolean isWorkContact = (mPrimaryContactInfo.userType == ContactsUtils.USER_TYPE_WORK); in updatePrimaryDisplayInfo()
DExternalCallNotifier.java420 if (contactInfo.lookupUri != null && contactInfo.userType != ContactsUtils.USER_TYPE_WORK) { in getPersonReference()
/packages/apps/Dialer/java/com/android/dialer/phonenumbercache/
DContactInfo.java61 public @UserType long userType; field in ContactInfo
129 if (userType != other.userType) { in equals()
174 + userType in toString()
DContactInfoHelper.java108 Context context, String lookupKey, @UserType long userType, @Nullable Long directoryId) { in lookUpDisplayNameAlternative() argument
110 if (lookupKey == null || userType == ContactsUtils.USER_TYPE_WORK) { in lookUpDisplayNameAlternative()
372 info.userType = in createPhoneLookupContactInfo()
/packages/apps/Settings/src/com/android/settings/users/
DUserSettings.java373 private void onAddUserClicked(int userType) { in onAddUserClicked() argument
376 switch (userType) { in onAddUserClicked()
498 final int userType = dialogId == DIALOG_ADD_USER in onCreateDialog() local
506 addUserNow(userType); in onCreateDialog()
669 private void addUserNow(final int userType) { in addUserNow() argument
672 mAddingUserName = userType == USER_TYPE_USER ? getString(R.string.user_new_user_name) in addUserNow()
679 if (userType == USER_TYPE_USER) { in addUserNow()
689 if (userType == USER_TYPE_USER) { in addUserNow()
/packages/apps/Launcher3/src/com/android/launcher3/logging/
DDumpTargetWrapper.java131 + "), pageIdx=" + t.pageId + " user=" + t.userType; in getItemStr()
148 … node.userType = (info.user.equals(Process.myUserHandle()))? UserType.DEFAULT : UserType.WORK; in writeToDumpTarget()
/packages/apps/Dialer/java/com/android/dialer/app/calllog/
DMissedCallNotifier.java154 contactInfo.userType == ContactsUtils.USER_TYPE_WORK in updateMissedCallNotification()
245 contactInfo.userType == ContactsUtils.USER_TYPE_WORK in getNotificationForCall()
DCallLogAdapter.java867 details.contactUserType = info.userType; in loadData()
/packages/apps/Contacts/src/com/android/contacts/list/
DContactEntryListAdapter.java624 final long userType = ContactsUtils.determineUserType(directoryId, null); in bindWorkProfileIcon() local
625 view.setWorkProfileIconEnabled(userType == ContactsUtils.USER_TYPE_WORK); in bindWorkProfileIcon()
DPhoneNumberListAdapter.java525 final long userType = ContactsUtils.determineUserType(directoryId, null); in bindWorkProfileIcon() local
530 !isExtendedDirectory(directoryId) && userType == ContactsUtils.USER_TYPE_WORK); in bindWorkProfileIcon()
/packages/apps/Dialer/java/com/android/contacts/common/list/
DContactEntryListAdapter.java569 final long userType = ContactsUtils.determineUserType(directoryId, null); in bindWorkProfileIcon() local
570 view.setWorkProfileIconEnabled(userType == ContactsUtils.USER_TYPE_WORK); in bindWorkProfileIcon()
DPhoneNumberListAdapter.java447 final long userType = ContactsUtils.determineUserType(directoryId, null); in bindWorkProfileIcon() local
452 !isExtendedDirectory(directoryId) && userType == ContactsUtils.USER_TYPE_WORK); in bindWorkProfileIcon()
/packages/services/Telecomm/src/com/android/server/telecom/
DRingtoneFactory.java135 (contactCallerInfo.userType == CallerInfo.USER_TYPE_WORK); in isWorkContact()
/packages/apps/Dialer/java/com/android/dialer/app/list/
DRegularSearchListAdapter.java66 info.userType = in getContactInfo()
/packages/services/Telecomm/src/com/android/server/telecom/ui/
DMissedCallNotifierImpl.java293 if (ci != null && ci.userType == CallerInfo.USER_TYPE_WORK) { in showMissedCallNotification()