/packages/apps/TV/src/com/android/tv/interactive/ |
D | IAppManager.java | 353 Channel currentChannel = mMainActivity.getCurrentChannel(); in onRequestCurrentChannelUri() local 354 Uri currentUri = (currentChannel == null) in onRequestCurrentChannelUri() 356 : currentChannel.getUri(); in onRequestCurrentChannelUri() 365 Channel currentChannel = mMainActivity.getCurrentChannel(); in onRequestCurrentChannelLcn() local 366 if (currentChannel == null || currentChannel.getDisplayNumber() == null) { in onRequestCurrentChannelLcn() 370 String displayNumber = currentChannel.getDisplayNumber(); in onRequestCurrentChannelLcn() 417 Channel currentChannel = mMainActivity.getCurrentChannel(); in onRequestCurrentTvInputId() local 418 String currentInputId = (currentChannel == null) in onRequestCurrentTvInputId() 420 : currentChannel.getInputId(); in onRequestCurrentTvInputId()
|
/packages/apps/TV/src/com/android/tv/menu/ |
D | PlayControlsRowView.java | 94 Channel currentChannel = mMainActivity.getCurrentChannel(); 95 if (currentChannel != null && isShown()) { 97 if (schedule.getChannelId() == currentChannel.getId()) { 250 Channel currentChannel = mMainActivity.getCurrentChannel(); in isCurrentChannelRecording() local 251 return currentChannel != null in isCurrentChannelRecording() 253 && mDvrManager.getCurrentRecording(currentChannel.getId()) != null; in isCurrentChannelRecording() 258 Channel currentChannel = mMainActivity.getCurrentChannel(); in onRecordButtonClicked() local 266 if (!(mDvrManager != null && mDvrManager.isChannelRecordable(currentChannel))) { in onRecordButtonClicked() 276 .getCurrentProgram(currentChannel.getId()); in onRecordButtonClicked() 279 currentChannel.getInputId(), in onRecordButtonClicked() [all …]
|
D | ChannelsRowAdapter.java | 266 Channel currentChannel = getMainActivity().getCurrentChannel(); 267 return currentChannel != null 268 && currentChannel.getAppLinkType(mContext) != Channel.APP_LINK_TYPE_NONE 270 && inputManager.getTvInputAppInfo(currentChannel.getInputId()) != null;
|
D | MenuUpdater.java | 55 public void onChannelChanged(Channel previousChannel, Channel currentChannel) {
|
/packages/apps/TV/src/com/android/tv/ |
D | MediaSessionWrapper.java | 135 void update(boolean blocked, Channel currentChannel, Program currentProgram) { in update() argument 136 if (currentChannel == null) { in update() 160 cardTitleText = getChannelName(currentChannel); in update() 164 posterArtUri = TvContract.buildChannelLogoUri(currentChannel.getId()).toString(); in update() 166 updatePosterArt(currentChannel, currentProgram, cardTitleText, null, posterArtUri); in update() 193 Channel currentChannel, in updatePosterArt() argument 207 this, currentChannel, currentProgram, cardTitleText)); in updatePosterArt()
|
D | MainActivity.java | 480 public void onChannelChanged(Channel previousChannel, Channel currentChannel) { 481 if (currentChannel != null) { 482 GtvUtils.broadcastInputId(MainActivity.this, currentChannel.getInputId()); 694 Channel currentChannel = mChannelTuner.getCurrentChannel(); in onCreate() 695 if (currentChannel != null && !currentChannel.isPassthrough()) { in onCreate() 704 Channel currentChannel = mChannelTuner.getCurrentChannel(); in onCreate() 706 currentChannel == null ? null : currentChannel.getInputId(); in onCreate() 1917 private void checkChannelLockNeeded(TunableTvView tvView, Channel currentChannel) { in checkChannelLockNeeded() argument 1918 if (currentChannel == null) { in checkChannelLockNeeded() 1919 currentChannel = tvView.getCurrentChannel(); in checkChannelLockNeeded() [all …]
|
D | ChannelTuner.java | 147 public void setCurrentChannel(Channel currentChannel) { in setCurrentChannel() argument 148 mCurrentChannel = currentChannel; in setCurrentChannel() 304 void onChannelChanged(Channel previousChannel, Channel currentChannel); in onChannelChanged() argument
|
/packages/apps/TV/tests/input/src/com/android/tv/testinput/ |
D | TestTvInputService.java | 315 ChannelInfo currentChannel; in run() local 320 currentChannel = mChannel; in run() 321 if (currentChannel != null) { in run() 322 newState = mBackend.getChannelState(currentChannel.originalNetworkId); in run() 333 String name = currentChannel == null ? "Null" : currentChannel.name; in run() 354 update(oldState, newState, currentChannel); in run() 363 ChannelState oldState, ChannelState newState, ChannelInfo currentChannel) { in update() argument 364 Log.i(TAG, "Updating channel " + currentChannel.number + " state to " + newState); in update()
|
/packages/apps/Dialer/java/com/android/dialer/speeddial/loader/ |
D | SpeedDialUiItem.java | 268 for (Channel currentChannel : channels()) { in getDefaultVoiceChannel() 269 if (currentChannel.number().equals(defaultChannel().number()) in getDefaultVoiceChannel() 270 && currentChannel.technology() == Channel.VOICE) { in getDefaultVoiceChannel() 271 return currentChannel; in getDefaultVoiceChannel()
|
D | SpeedDialUiItemMutator.java | 663 Channel currentChannel = item.channels().get(i); in insertDuoChannelsToStarredContact() local 668 && !currentChannel.isVideoTechnology() in insertDuoChannelsToStarredContact() 672 newChannelsList.add(currentChannel); in insertDuoChannelsToStarredContact() 673 previousChannel = currentChannel; in insertDuoChannelsToStarredContact()
|
/packages/apps/TV/src/com/android/tv/ui/ |
D | TunableTvView.java | 733 public void setCurrentChannel(Channel currentChannel) { in setCurrentChannel() argument 734 mCurrentChannel = currentChannel; in setCurrentChannel()
|