Searched defs:channels (Results 1 - 8 of 8) sorted by relevance

/packages/apps/TV/tests/common/src/com/android/tv/testing/
H A DChannelUtils.java71 public static void updateChannels(Context context, String inputId, List<ChannelInfo> channels) { argument
72 // Create a map from original network ID to channel row ID for existing channels.
86 for (ChannelInfo channel : channels) {
135 // Deletes channels which don't exist in the new feed.
/packages/apps/TV/src/com/android/tv/data/
H A DChannelLogoFetcher.java123 // Load channels which doesn't have channel logos.
124 if (DEBUG) Log.d(TAG, "Starts loading the channels from DB");
136 List<Channel> channels = new ArrayList<>();
142 channels.add(new Channel.Builder().setId(c.getLong(0))
146 return channels;
151 protected void onPostExecute(List<Channel> channels) { argument
154 int count = channels == null ? 0 : channels.size();
155 Log.d(TAG, count + " channels are loaded");
159 if (channels !
172 FetchLogoTask(Context context, List<Channel> channels) argument
[all...]
H A DChannelDataManager.java145 // Detect duplicate channels while sorting.
262 * Returns the number of channels.
269 * Returns a list of channels.
276 * Returns a list of browsable channels.
279 List<Channel> channels = new ArrayList<>();
282 channels.add(channel);
285 return channels;
299 * Returns true if and only if there exists at least one channel and all channels are hidden.
384 * Updates channels from DB. Once the update is done, {@code postRunnable} will
527 * Called when channels ar
592 onPostExecute(List<Channel> channels) argument
[all...]
/packages/apps/TV/src/com/android/tv/
H A DChannelTuner.java41 * It manages the current tuned channel among browsable channels. And it determines the next channel
134 * Returns true, if all the channels are loaded.
148 * Returns the number of browsable channels.
334 * Called when all the channels are loaded.
366 private void updateChannelData(List<Channel> channels) { argument
368 mChannels.addAll(channels);
372 for (int i = 0; i < channels.size(); ++i) {
373 Channel channel = channels.get(i);
390 // channels are changed.
/packages/apps/TV/src/com/android/tv/search/
H A DTvProviderSearch.java74 * Search channels, inputs, or programs from TvProvider.
94 // Search channels first.
161 private List<SearchResult> searchChannels(String query, Set<Long> channels, int limit) { argument
165 null, channels, NO_LIMIT));
173 channels, limit - results.size()));
/packages/apps/TV/src/com/android/tv/ui/
H A DKeypadChannelSwitchView.java233 public void setChannels(@Nullable List<Channel> channels) { argument
234 mChannels = channels;
/packages/apps/TV/src/com/android/tv/recommendation/
H A DRecommendationDataManager.java235 * Returns the number of channels registered in ChannelRecord map.
323 private void onUpdateChannels(List<Channel> channels) { argument
327 for (Channel channel : channels) {
/packages/apps/TV/usbtuner/libs/
H A Dexoplayer_1.5.6.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/exoplayer/ ...

Completed in 154 milliseconds