Home
last modified time | relevance | path

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

/packages/apps/Car/Settings/src/com/android/car/settings/users/
DUserGridRecyclerView.java134 List<UserRecord> userRecords = createUserRecords(getUsersForUserGrid()); in buildAdapter()
139 private List<UserRecord> createUserRecords(List<UserInfo> userInfoList) { in createUserRecords()
142 List<UserRecord> userRecords = new ArrayList<>(); in createUserRecords()
159 UserRecord record = new UserRecord(userInfo, in createUserRecords()
160 isForeground ? UserRecord.FOREGROUND_USER : UserRecord.BACKGROUND_USER); in createUserRecords()
177 private UserRecord createForegroundUserRecord() { in createForegroundUserRecord()
178 return new UserRecord(getCurrentForegroundUserInfo(), UserRecord.FOREGROUND_USER); in createForegroundUserRecord()
204 private UserRecord createStartGuestUserRecord() { in createStartGuestUserRecord()
205 return new UserRecord(/* userInfo= */ null, UserRecord.START_GUEST); in createStartGuestUserRecord()
211 private UserRecord createAddUserRecord() { in createAddUserRecord()
[all …]