Lines Matching refs:rc

550         RcDisplay(RemoteController rc) {
551 mController = new WeakReference<RemoteController>(rc);
556 final RemoteController rc = mController.get();
557 if (rc == null) {
562 if (rc.mClientGenerationIdCurrent != genId) {
563 rc.mClientGenerationIdCurrent = genId;
568 sendMsg(rc.mEventHandler, MSG_NEW_PENDING_INTENT, SENDMSG_REPLACE,
572 sendMsg(rc.mEventHandler, MSG_CLIENT_CHANGE, SENDMSG_REPLACE,
578 final RemoteController rc = mController.get();
579 if (rc == null) {
582 sendMsg(rc.mEventHandler, MSG_DISPLAY_ENABLE, SENDMSG_REPLACE,
588 final RemoteController rc = mController.get();
589 if (rc == null) {
601 if (rc.mClientGenerationIdCurrent != genId) {
607 sendMsg(rc.mEventHandler, MSG_NEW_PLAYBACK_INFO, SENDMSG_REPLACE,
614 final RemoteController rc = mController.get();
615 if (rc == null) {
619 if (rc.mClientGenerationIdCurrent != genId) {
623 sendMsg(rc.mEventHandler, MSG_NEW_TRANSPORT_INFO, SENDMSG_REPLACE,
629 final RemoteController rc = mController.get();
630 if (rc == null) {
638 if (rc.mClientGenerationIdCurrent != genId) {
642 sendMsg(rc.mEventHandler, MSG_NEW_METADATA, SENDMSG_QUEUE,
648 final RemoteController rc = mController.get();
649 if (rc == null) {
654 if (rc.mClientGenerationIdCurrent != genId) {
660 sendMsg(rc.mEventHandler, MSG_NEW_METADATA, SENDMSG_QUEUE,
666 final RemoteController rc = mController.get();
667 if (rc == null) {
675 if (rc.mClientGenerationIdCurrent != genId) {
686 sendMsg(rc.mEventHandler, MSG_NEW_METADATA, SENDMSG_QUEUE,
748 public EventHandler(RemoteController rc, Looper looper) {