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

/frameworks/base/media/lib/java/com/android/media/remotedisplay/
H A DRemoteDisplay.java152 return mMutableInfo.presentationDisplayId;
155 public void setPresentationDisplayId(int presentationDisplayId) { argument
156 if (mMutableInfo.presentationDisplayId != presentationDisplayId) {
157 mMutableInfo.presentationDisplayId = presentationDisplayId;
/frameworks/base/media/java/android/media/
H A DMediaRouterClientState.java106 public int presentationDisplayId; field in class:MediaRouterClientState.RouteInfo
115 presentationDisplayId = -1;
130 presentationDisplayId = other.presentationDisplayId;
145 presentationDisplayId = in.readInt();
166 dest.writeInt(presentationDisplayId);
182 + ", presentationDisplayId=" + presentationDisplayId
H A DRemoteDisplayState.java110 public int presentationDisplayId; field in class:RemoteDisplayState.RemoteDisplayInfo
116 presentationDisplayId = -1;
127 presentationDisplayId = other.presentationDisplayId;
138 presentationDisplayId = in.readInt();
159 dest.writeInt(presentationDisplayId);
171 + ", presentationDisplayId=" + presentationDisplayId
H A DMediaRouter.java486 route.mPresentationDisplayId = globalRoute.presentationDisplayId;
540 if (route.mPresentationDisplayId != globalRoute.presentationDisplayId) {
541 route.mPresentationDisplayId = globalRoute.presentationDisplayId;
/frameworks/support/v7/mediarouter/src/android/support/v7/media/
H A DMediaRouteDescriptor.java49 private static final String KEY_PRESENTATION_DISPLAY_ID = "presentationDisplayId";
205 result.append(", presentationDisplayId=").append(getPresentationDisplayId());
401 public Builder setPresentationDisplayId(int presentationDisplayId) { argument
402 mBundle.putInt(KEY_PRESENTATION_DISPLAY_ID, presentationDisplayId);
/frameworks/base/services/java/com/android/server/media/
H A DMediaRouterService.java1309 final int presentationDisplayId = computePresentationDisplayId(descriptor);
1310 if (mMutableInfo.presentationDisplayId != presentationDisplayId) {
1311 mMutableInfo.presentationDisplayId = presentationDisplayId;
1418 final int displayId = descriptor.presentationDisplayId;

Completed in 363 milliseconds