Home
last modified time | relevance | path

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

/packages/apps/TV/src/com/android/tv/util/
DTvInputManagerHelper.java171 private final Map<String, TvInputInfoCompat> mInputMap = new HashMap<>(); field in TvInputManagerHelper
187 TvInputInfo info = mInputMap.get(inputId).getTvInputInfo();
205 mInputMap.put(inputId, new TvInputInfoCompat(mContext, info));
225 mInputMap.remove(inputId);
248 mInputMap.put(inputId, new TvInputInfoCompat(mContext, info));
270 mInputMap.put(inputInfo.getId(), new TvInputInfoCompat(mContext, inputInfo));
362 mInputMap.clear(); in stop()
505 return mStarted && !TextUtils.isEmpty(inputId) && mInputMap.get(inputId) != null; in hasTvInputInfo()
524 return mInputMap.get(inputId); in getTvInputInfoCompat()
534 for (TvInputInfoCompat input : mInputMap.values()) { in getTunerTvInputSize()
[all …]
/packages/apps/TV/tests/common/src/com/android/tv/testing/
DFakeTvInputManager.java33 private final Map<String, TvInputInfo> mInputMap = new HashMap<>(); field in FakeTvInputManager
41 mInputMap.put(inputId, inputInfo); in add()
73 mInputMap.remove(inputId); in remove()
89 return mInputMap.get(inputId); in getTvInputInfo()
109 return new ArrayList(mInputMap.values()); in getTvInputList()