Home
last modified time | relevance | path

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

/frameworks/base/media/lib/remotedisplay/java/com/android/media/remotedisplay/
DRemoteDisplay.java32 private final RemoteDisplayInfo mMutableInfo; field in RemoteDisplay
80 mMutableInfo = new RemoteDisplayInfo(id); in RemoteDisplay()
85 return mMutableInfo.id; in getId()
89 return mMutableInfo.name; in getName()
93 if (!Objects.equals(mMutableInfo.name, name)) { in setName()
94 mMutableInfo.name = name; in setName()
100 return mMutableInfo.description; in getDescription()
104 if (!Objects.equals(mMutableInfo.description, description)) { in setDescription()
105 mMutableInfo.description = description; in setDescription()
111 return mMutableInfo.status; in getStatus()
[all …]
/frameworks/base/services/core/java/com/android/server/media/
DMediaRouterService.java1789 private final MediaRouterClientState.RouteInfo mMutableInfo; field in MediaRouterService.UserHandler.RouteRecord
1797 mMutableInfo = new MediaRouterClientState.RouteInfo(uniqueId); in RouteRecord()
1813 return mMutableInfo.id; in getUniqueId()
1818 mImmutableInfo = new MediaRouterClientState.RouteInfo(mMutableInfo); in getInfo()
1828 return mMutableInfo.enabled; in isEnabled()
1832 return mMutableInfo.statusCode; in getStatus()
1841 if (!Objects.equals(mMutableInfo.name, name)) { in updateDescriptor()
1842 mMutableInfo.name = name; in updateDescriptor()
1846 if (!Objects.equals(mMutableInfo.description, description)) { in updateDescriptor()
1847 mMutableInfo.description = description; in updateDescriptor()
[all …]