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

/packages/apps/TV/src/com/android/tv/data/
H A DChannelLogoFetcher.java44 * Fetches channel logos from the cloud into the database. It's for the channels which have no logos
62 Context context, List<Channel> channels) {
72 if (channels == null || channels.isEmpty()) {
75 sFetchTask = new FetchLogoTask(context.getApplicationContext(), channels);
86 private FetchLogoTask(Context context, List<Channel> channels) { argument
88 mChannels = channels;
110 // Iterating channels.
126 // Removes non existing channels from SharedPreferences.
157 // Removes it from the shared preference for the failed channels t
61 startFetchingChannelLogos( Context context, List<Channel> channels) argument
[all...]
H A DChannelDataManager.java109 Collections.sort(data.channels, mChannelComparator);
134 Collections.sort(data.channels, mChannelComparator);
157 // Detect duplicate channels while sorting.
274 * Returns the number of channels.
277 return mData.channels.size();
281 * Returns a list of channels.
284 return new ArrayList<>(mData.channels);
288 * Returns a list of browsable channels.
291 List<Channel> channels = new ArrayList<>();
292 for (Channel channel : mData.channels) {
644 onPostExecute(List<Channel> channels) argument
795 final List<Channel> channels; field in class:ChannelDataManager.ChannelData
809 ChannelData(Map<Long, ChannelWrapper> channelWrapperMap, Map<String, MutableInt> channelCountMap, List<Channel> channels) argument
[all...]
/packages/apps/TV/tests/common/src/com/android/tv/testing/
H A DChannelUtils.java70 public static void updateChannels(Context context, String inputId, List<ChannelInfo> channels) { argument
71 // Create a map from original network ID to channel row ID for existing channels.
85 for (ChannelInfo channel : channels) {
132 // Deletes channels which don't exist in the new feed.
/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.java73 * Search channels, inputs, or programs from TvProvider.
93 // Search channels first.
160 private List<SearchResult> searchChannels(String query, Set<Long> channels, int limit) { argument
161 if (DEBUG) Log.d(TAG, "Searching channels: '" + query + "'");
166 null, channels, NO_LIMIT));
174 channels, limit - results.size()));
183 Log.d(TAG, "Found " + results.size() + " channels. Elapsed time for searching" +
184 " channels: " + (SystemClock.elapsedRealtime() - time) + "(msec)");
/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/data/epg/
H A DEpgFetcher.java297 if (DEBUG) Log.d(TAG, "Cannot start routine service: scanning channels.");
301 if (DEBUG) Log.d(TAG, "Cannot start routine service: no internal tuner channels.");
392 private void batchFetchEpg(List<Channel> channels, long durationSec) { argument
393 Log.i(TAG, "Start batch fetching (" + durationSec + ")...." + channels.size());
394 if (channels.size() == 0) {
398 for (Channel channel : channels) {
447 // Construct a list of display numbers for existing channels.
454 // We only support channels from internal tuner inputs.
537 // channels are known, clear up possible lineups to save resources.
544 final List<Channel> channels
[all...]
/packages/apps/TV/src/com/android/tv/recommendation/
H A DRecommendationDataManager.java225 * Returns the number of channels registered in ChannelRecord map.
317 private void onUpdateChannels(List<Channel> channels) { argument
321 for (Channel channel : channels) {
/packages/apps/TV/libs/
H A Dexoplayer.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/exoplayer/ ...
H A Dexoplayer_v2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/exoplayer2/ ...

Completed in 227 milliseconds