HomeSort by relevance Sort by last modified time
    Searched refs:mCurrentChannel (Results 1 - 6 of 6) sorted by null

  /packages/apps/TV/src/com/android/tv/
ChannelTuner.java 52 // is changed to mCurrentChannel(Id).
58 @Nullable private Channel mCurrentChannel;
118 mCurrentChannel = null;
144 return mCurrentChannel;
154 mCurrentChannel = currentChannel;
159 return mCurrentChannel != null ? mCurrentChannel.getId() : Channel.INVALID_ID;
164 if (mCurrentChannel == null) {
167 if (mCurrentChannel.isPassthrough()) {
168 return TvContract.buildChannelUriForPassthroughInput(mCurrentChannel.getInputId())
    [all...]
  /packages/apps/Car/Radio/src/com/android/car/radio/
ManualTunerController.java 41 private final StringBuilder mCurrentChannel = new StringBuilder();
72 * An interface that will perform various validations on {@link #mCurrentChannel}.
174 int channelFrequency = mChannelValidator.convertToHz(mCurrentChannel.toString());
288 String currentChannel = mCurrentChannel.toString();
511 * Sets the {@link #mCurrentChannel} on {@link #mChannelView}. Will append a decimal point to
515 if (mChannelValidator.shouldAppendPeriod(mCurrentChannel.toString())) {
516 mCurrentChannel.append(mPeriod);
519 mChannelView.setText(mCurrentChannel.toString());
531 mCurrentChannel.setLength(0);
543 if (mCurrentChannel.length() == 0)
    [all...]
  /packages/apps/TV/src/com/android/tv/ui/
TunableTvView.java 135 private Channel mCurrentChannel;
199 Channel channel = mCurrentChannel;
200 mCurrentChannel = null;
218 Channel channel = mCurrentChannel;
219 mCurrentChannel = null;
399 mTracker.sendChannelVideoUnavailable(mCurrentChannel, reason);
567 if (mCurrentChannel != null) {
569 mTracker.sendChannelViewStop(mCurrentChannel, duration);
570 if (mWatchedHistoryManager != null && !mCurrentChannel.isPassthrough()) {
572 mCurrentChannel, System.currentTimeMillis(), duration)
    [all...]
ChannelBannerView.java 117 private Channel mCurrentChannel;
331 mCurrentChannel = mMainActivity.getCurrentChannel();
333 mCurrentChannel != null && mCurrentChannel.channelLogoExists();
387 if (mCurrentChannel != null) {
388 displayNumber = mCurrentChannel.getDisplayNumber();
392 displayName = mCurrentChannel.getDisplayName();
432 if (mCurrentChannel != null && mCurrentChannelLogoExists) {
433 mCurrentChannel.loadBitmap(
438 createChannelLogoCallback(this, mCurrentChannel));
    [all...]
SelectInputView.java 99 private Channel mCurrentChannel;
202 mCurrentChannel != null && mCurrentChannel.isPassthrough()
203 ? mCurrentChannel.getInputId()
314 mCurrentChannel = channel;
  /packages/apps/TV/src/com/android/tv/data/api/
Channel.java 100 boolean hasSameReadOnlyInfo(Channel mCurrentChannel);

Completed in 652 milliseconds