Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/hardware/radio/
DProgramList.java259 ProgramSelector.Identifier primaryKey = Objects.requireNonNull(key.getPrimaryId()); in putLocked() local
260 if (!mPrograms.containsKey(primaryKey)) { in putLocked()
261 mPrograms.put(primaryKey, new ArrayMap<>()); in putLocked()
263 mPrograms.get(primaryKey).put(key, value); in putLocked()
264 changedIdentifierSet.add(primaryKey); in putLocked()
270 ProgramSelector.Identifier primaryKey = Objects.requireNonNull(key.getPrimaryId()); in removeLocked() local
271 if (!mPrograms.containsKey(primaryKey)) { in removeLocked()
274 Map<UniqueProgramIdentifier, RadioManager.ProgramInfo> entries = mPrograms.get(primaryKey); in removeLocked()
278 removedIdentifierList.add(primaryKey); in removeLocked()