Searched defs:presentationDisplayId (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/media/java/android/media/
H A DMediaRouterClientState.java106 public int presentationDisplayId; field in class:MediaRouterClientState.RouteInfo
116 presentationDisplayId = -1;
132 presentationDisplayId = other.presentationDisplayId;
148 presentationDisplayId = in.readInt();
170 dest.writeInt(presentationDisplayId);
187 + ", 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
/frameworks/base/media/lib/remotedisplay/java/com/android/media/remotedisplay/
H A DRemoteDisplay.java151 return mMutableInfo.presentationDisplayId;
154 public void setPresentationDisplayId(int presentationDisplayId) { argument
155 if (mMutableInfo.presentationDisplayId != presentationDisplayId) {
156 mMutableInfo.presentationDisplayId = presentationDisplayId;
/frameworks/support/v7/mediarouter/src/android/support/v7/media/
H A DMediaRouteDescriptor.java58 static final String KEY_PRESENTATION_DISPLAY_ID = "presentationDisplayId";
328 result.append(", presentationDisplayId=").append(getPresentationDisplayId());
646 public Builder setPresentationDisplayId(int presentationDisplayId) { argument
647 mBundle.putInt(KEY_PRESENTATION_DISPLAY_ID, presentationDisplayId);

Completed in 160 milliseconds