Home | History | Annotate | Download | only in media

Lines Matching refs:mMutableInfo

1362             private final MediaRouterClientState.RouteInfo mMutableInfo;
1370 mMutableInfo = new MediaRouterClientState.RouteInfo(uniqueId);
1386 return mMutableInfo.id;
1391 mImmutableInfo = new MediaRouterClientState.RouteInfo(mMutableInfo);
1401 return mMutableInfo.enabled;
1405 return mMutableInfo.statusCode;
1414 if (!Objects.equals(mMutableInfo.name, name)) {
1415 mMutableInfo.name = name;
1419 if (!Objects.equals(mMutableInfo.description, description)) {
1420 mMutableInfo.description = description;
1424 if (mMutableInfo.supportedTypes != supportedTypes) {
1425 mMutableInfo.supportedTypes = supportedTypes;
1429 if (mMutableInfo.enabled != enabled) {
1430 mMutableInfo.enabled = enabled;
1434 if (mMutableInfo.statusCode != statusCode) {
1435 mMutableInfo.statusCode = statusCode;
1439 if (mMutableInfo.playbackType != playbackType) {
1440 mMutableInfo.playbackType = playbackType;
1444 if (mMutableInfo.playbackStream != playbackStream) {
1445 mMutableInfo.playbackStream = playbackStream;
1449 if (mMutableInfo.volume != volume) {
1450 mMutableInfo.volume = volume;
1454 if (mMutableInfo.volumeMax != volumeMax) {
1455 mMutableInfo.volumeMax = volumeMax;
1459 if (mMutableInfo.volumeHandling != volumeHandling) {
1460 mMutableInfo.volumeHandling = volumeHandling;
1464 if (mMutableInfo.presentationDisplayId != presentationDisplayId) {
1465 mMutableInfo.presentationDisplayId = presentationDisplayId;
1480 pw.println(indent + "mMutableInfo=" + mMutableInfo);
1487 return "Route " + mMutableInfo.name + " (" + mMutableInfo.id + ")";