HomeSort by relevance Sort by last modified time
    Searched defs:ChannelInfo (Results 1 - 7 of 7) sorted by null

  /packages/apps/TV/tests/common/src/com/android/tv/testing/data/
ChannelUtils.java 44 * Query and return the map of (channel_id, ChannelInfo). See: {@link
45 * com.android.tv.testing.data.ChannelInfo#fromCursor(Cursor)}.
48 public static Map<Long, ChannelInfo> queryChannelInfoMapForTvInput(
51 Map<Long, ChannelInfo> map = new HashMap<>();
53 String[] projections = new String[ChannelInfo.PROJECTION.length + 1];
55 System.arraycopy(ChannelInfo.PROJECTION, 0, projections, 1, ChannelInfo.PROJECTION.length);
60 map.put(cursor.getLong(0), ChannelInfo.fromCursor(cursor));
68 public static void updateChannels(Context context, String inputId, List<ChannelInfo> channels) {
83 for (ChannelInfo channel : channels)
    [all...]
ChannelInfo.java 29 public final class ChannelInfo {
71 public static ChannelInfo create(@Nullable Context context, int channelNumber) {
95 public static ChannelInfo fromCursor(Cursor c) {
113 private ChannelInfo(
194 ChannelInfo that = (ChannelInfo) o;
217 /** Builder class for {@code ChannelInfo}. */
238 public Builder(ChannelInfo other) {
332 public ChannelInfo build() {
333 return new ChannelInfo(
    [all...]
  /frameworks/native/libs/vr/libpdx_uds/private/uds/
ipc_helper.h 110 class ChannelInfo {
117 PDX_SERIALIZABLE_MEMBERS(ChannelInfo, data_fd, pollin_event_fd,
138 std::vector<ChannelInfo<FileHandleType>> channels;
154 std::vector<ChannelInfo<FileHandleType>> channels;
  /developers/build/prebuilts/androidtv/sample-inputs/app/src/main/java/com/example/android/sampletvinput/rich/
RichTvInputService.java 425 public static final class ChannelInfo {
436 public ChannelInfo(String number, String name, String logoUrl, int originalNetworkId,
  /external/ImageMagick/coders/
psd.c 124 } ChannelInfo;
141 ChannelInfo
    [all...]
  /packages/apps/TV/tests/unit/src/com/android/tv/data/
ChannelDataManagerTest.java 45 import com.android.tv.testing.data.ChannelInfo;
169 List<ChannelInfo> channelInfoList = new ArrayList<>();
171 channelInfoList.add(ChannelInfo.create(getTargetContext(), i));
176 for (ChannelInfo channelInfo : channelInfoList) {
177 if (TextUtils.equals(channelInfo.name, channel.getDisplayName())) {
179 channelInfoList.remove(channelInfo);
317 ChannelInfo testChannelInfo = ChannelInfo.create(getTargetContext(), (int) testChannelId);
367 public ChannelInfo channelInfo
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
bdamedia.h 374 } ChannelInfo;

Completed in 492 milliseconds