Searched refs:browsable (Results 1 - 3 of 3) sorted by relevance

/packages/apps/TV/src/com/android/tv/data/
H A DChannelDataManager.java276 * Returns a list of browsable channels.
327 public void updateBrowsable(Long channelId, boolean browsable) { argument
328 updateBrowsable(channelId, browsable, false);
336 * {@link #notifyChannelBrowsableChanged} should be directly called, once browsable
339 public void updateBrowsable(Long channelId, boolean browsable, argument
345 if (channelWrapper.mChannel.isBrowsable() != browsable) {
346 channelWrapper.mChannel.setBrowsable(browsable);
347 if (browsable == channelWrapper.mBrowsableInDb) {
527 * Called when channels are added, deleted, or updated. But, when browsable is changed,
533 * Called when browsable o
[all...]
H A DChannel.java290 public void setBrowsable(boolean browsable) { argument
291 mBrowsable = browsable;
300 * channels have same logos. It also excludes browsable and locked, because two fields are
333 + ", browsable=" + mBrowsable
463 public Builder setBrowsable(boolean browsable) { argument
464 mChannel.mBrowsable = browsable;
/packages/apps/TV/tests/unit/src/com/android/tv/data/
H A DChannelDataManagerTest.java68 private static final String COLUMN_BROWSABLE = "browsable";
186 // Test if all channels are browsable
342 public boolean browsable; field in class:ChannelDataManagerTest.ChannelInfoWrapper
346 browsable = true;
408 * only for changing browsable and locked.
445 channel.browsable = (values.getAsInteger(COLUMN_BROWSABLE) == 1);
593 return channel.browsable ? 1 : 0;

Completed in 96 milliseconds