Lines Matching refs:mMutableInfo

1208             private final MediaRouterClientState.RouteInfo mMutableInfo;
1216 mMutableInfo = new MediaRouterClientState.RouteInfo(uniqueId);
1232 return mMutableInfo.id;
1237 mImmutableInfo = new MediaRouterClientState.RouteInfo(mMutableInfo);
1247 return mMutableInfo.enabled;
1251 return mMutableInfo.statusCode;
1260 if (!Objects.equal(mMutableInfo.name, name)) {
1261 mMutableInfo.name = name;
1265 if (!Objects.equal(mMutableInfo.description, description)) {
1266 mMutableInfo.description = description;
1270 if (mMutableInfo.supportedTypes != supportedTypes) {
1271 mMutableInfo.supportedTypes = supportedTypes;
1275 if (mMutableInfo.enabled != enabled) {
1276 mMutableInfo.enabled = enabled;
1280 if (mMutableInfo.statusCode != statusCode) {
1281 mMutableInfo.statusCode = statusCode;
1285 if (mMutableInfo.playbackType != playbackType) {
1286 mMutableInfo.playbackType = playbackType;
1290 if (mMutableInfo.playbackStream != playbackStream) {
1291 mMutableInfo.playbackStream = playbackStream;
1295 if (mMutableInfo.volume != volume) {
1296 mMutableInfo.volume = volume;
1300 if (mMutableInfo.volumeMax != volumeMax) {
1301 mMutableInfo.volumeMax = volumeMax;
1305 if (mMutableInfo.volumeHandling != volumeHandling) {
1306 mMutableInfo.volumeHandling = volumeHandling;
1310 if (mMutableInfo.presentationDisplayId != presentationDisplayId) {
1311 mMutableInfo.presentationDisplayId = presentationDisplayId;
1326 pw.println(indent + "mMutableInfo=" + mMutableInfo);
1333 return "Route " + mMutableInfo.name + " (" + mMutableInfo.id + ")";