Home
last modified time | relevance | path

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

/frameworks/base/media/lib/remotedisplay/java/com/android/media/remotedisplay/
DRemoteDisplay.java151 return mMutableInfo.presentationDisplayId; in getPresentationDisplayId()
154 public void setPresentationDisplayId(int presentationDisplayId) { in setPresentationDisplayId() argument
155 if (mMutableInfo.presentationDisplayId != presentationDisplayId) { in setPresentationDisplayId()
156 mMutableInfo.presentationDisplayId = presentationDisplayId; in setPresentationDisplayId()
/frameworks/base/media/java/android/media/
DRemoteDisplayState.java110 public int presentationDisplayId; field in RemoteDisplayState.RemoteDisplayInfo
116 presentationDisplayId = -1; in RemoteDisplayInfo()
127 presentationDisplayId = other.presentationDisplayId; in RemoteDisplayInfo()
138 presentationDisplayId = in.readInt(); in RemoteDisplayInfo()
159 dest.writeInt(presentationDisplayId); in writeToParcel()
171 + ", presentationDisplayId=" + presentationDisplayId in toString()
DMediaRouterClientState.java106 public int presentationDisplayId; field in MediaRouterClientState.RouteInfo
116 presentationDisplayId = -1; in RouteInfo()
132 presentationDisplayId = other.presentationDisplayId; in RouteInfo()
148 presentationDisplayId = in.readInt(); in RouteInfo()
170 dest.writeInt(presentationDisplayId); in writeToParcel()
187 + ", presentationDisplayId=" + presentationDisplayId in toString()
DMediaRouter.java508 route.mPresentationDisplayId = globalRoute.presentationDisplayId; in makeGlobalRoute()
562 if (route.mPresentationDisplayId != globalRoute.presentationDisplayId) { in updateGlobalRoute()
563 route.mPresentationDisplayId = globalRoute.presentationDisplayId; in updateGlobalRoute()
/frameworks/base/services/core/java/com/android/server/media/
DMediaRouterService.java1304 final int presentationDisplayId = computePresentationDisplayId(descriptor); in updateDescriptor() local
1305 if (mMutableInfo.presentationDisplayId != presentationDisplayId) { in updateDescriptor()
1306 mMutableInfo.presentationDisplayId = presentationDisplayId; in updateDescriptor()
1413 final int displayId = descriptor.presentationDisplayId; in computePresentationDisplayId()
/frameworks/support/v7/mediarouter/src/android/support/v7/media/
DMediaRouteDescriptor.java646 public Builder setPresentationDisplayId(int presentationDisplayId) { in setPresentationDisplayId() argument
647 mBundle.putInt(KEY_PRESENTATION_DISPLAY_ID, presentationDisplayId); in setPresentationDisplayId()