HomeSort by relevance Sort by last modified time
    Searched defs:channelId (Results 26 - 50 of 78) sorted by null

12 3 4

  /packages/apps/TV/src/com/android/tv/dvr/
SeriesRecording.java 338 public Builder setChannelId(long channelId) {
339 mChannelId = channelId;
482 * The channelId to match. The channel ID might not be valid when the channel option is "ALL".
534 * SeriesId when not null is used to match programs instead of using title and channelId.
632 ", channelId=" + mChannelId +
649 String longDescription, String inputId, long channelId, String seriesId,
658 this.mChannelId = channelId;
715 long channelId = program.getChannelId();
719 && mChannelId != channelId)) {
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/notifications/
AttentionManagementVerifierActivity.java     [all...]
  /cts/tests/tests/tv/src/android/media/tv/cts/
TvViewTest.java 233 long channelId = cursor.getLong(0);
234 Uri channelUri = TvContract.buildChannelUri(channelId);
413 long channelId = cursor.getLong(0);
414 Uri channelUri = TvContract.buildChannelUri(channelId);
TvContractTest.java 150 private static ContentValues createDummyProgramValues(long channelId) {
152 values.put(Programs.COLUMN_CHANNEL_ID, channelId);
169 private static ContentValues createDummyPreviewProgramValues(long channelId) {
171 values.put(PreviewPrograms.COLUMN_CHANNEL_ID, channelId);
229 private static ContentValues createDummyRecordedProgramValues(String inputId, long channelId) {
232 values.put(RecordedPrograms.COLUMN_CHANNEL_ID, channelId);
305 private void verifyChannel(Uri channelUri, ContentValues expectedValues, long channelId) {
306 verifyChannel(channelUri, expectedValues, channelId, true);
309 private void verifyChannel(Uri channelUri, ContentValues expectedValues, long channelId,
316 assertEquals(channelId, cursor.getLong(cursor.getColumnIndex(Channels._ID)))
    [all...]
  /frameworks/base/core/java/android/app/
NotificationManager.java 458 public NotificationChannel getNotificationChannel(String channelId) {
461 return service.getNotificationChannel(mContext.getPackageName(), channelId);
486 public void deleteNotificationChannel(String channelId) {
489 service.deleteNotificationChannel(mContext.getPackageName(), channelId);
    [all...]
  /packages/apps/TV/src/com/android/tv/data/
ChannelDataManager.java 233 * Adds a {@link ChannelListener} for a specific channel with the channel ID {@code channelId}.
235 public void addChannelListener(Long channelId, ChannelListener listener) {
236 ChannelWrapper channelWrapper = mChannelWrapperMap.get(channelId);
245 * {@code channelId}.
247 public void removeChannelListener(Long channelId, ChannelListener listener) {
248 ChannelWrapper channelWrapper = mChannelWrapperMap.get(channelId);
305 public boolean doesChannelExistInDb(long channelId) {
306 return mChannelWrapperMap.get(channelId) != null;
325 * Gets the channel with the channel ID {@code channelId}.
327 public Channel getChannel(Long channelId) {
    [all...]
ProgramDataManager.java 211 public Program getCurrentProgram(long channelId) {
212 return mChannelIdCurrentProgramMap.get(channelId);
282 public List<Program> getPrograms(long channelId, long startTime) {
284 ArrayList<Program> cachedPrograms = mChannelIdProgramCache.get(channelId);
321 * @param channelId A channel ID to get notified. If it's {@link Channel#INVALID_ID}, the
325 long channelId, OnCurrentProgramUpdatedListener listener) {
327 .put(channelId, listener);
335 long channelId, OnCurrentProgramUpdatedListener listener) {
337 .remove(channelId, listener);
340 private void notifyCurrentProgramUpdate(long channelId, Program program)
    [all...]
  /packages/apps/TV/src/com/android/tv/guide/
ProgramManager.java 78 public final long channelId;
93 private TableEntry(long channelId, long startUtcMillis, long endUtcMillis) {
94 this(channelId, null, startUtcMillis, endUtcMillis, false);
97 private TableEntry(long channelId, long startUtcMillis, long endUtcMillis,
99 this(channelId, null, null, startUtcMillis, endUtcMillis, blocked);
102 private TableEntry(long channelId, Program program, long entryStartUtcMillis,
104 this(channelId, program, null, entryStartUtcMillis, entryEndUtcMillis, isBlocked);
107 private TableEntry(long channelId, Program program, ScheduledRecording scheduledRecording,
109 this.channelId = channelId;
    [all...]
  /packages/apps/TV/src/com/android/tv/tuner/tvinput/
ChannelDataManager.java 202 public TunerChannel getChannel(long channelId) {
203 TunerChannel channel = mTunerChannelMap.get(channelId);
210 channelId), CHANNEL_DATA_SELECTION_ARGS, null, null, null)) {
222 channel.setChannelId(channelId);
257 long channelId = cursor.getLong(0);
261 channel.setChannelId(channelId);
371 long channelId = getChannelId(channel);
372 if (channelId <= 0) {
375 channel.setChannelId(channelId);
519 ContentProviderOperation.Builder builder, EitItem item, Long channelId) {
    [all...]
TunerRecordingSessionWorker.java 293 long channelId;
295 channelId = ContentUris.parseId(channelUri);
297 channelId = CHANNEL_ID_NONE;
299 return (channelId == CHANNEL_ID_NONE) ? null : mChannelDataManager.getChannel(channelId);
454 public Program(long channelId) {
455 mChannelId = channelId;
530 private Uri insertRecordedProgram(Program program, long channelId, String storageUri,
535 .setChannelId(channelId)
TunerSessionWorker.java 547 public RecordedProgram(long channelId, String dataUri) {
548 mChannelId = channelId;
607 long channelId = parseChannel(channelUri);
608 TunerChannel channel = (channelId == -1) ? null
609 : mChannelDataManager.getChannel(channelId);
610 if (channelId == -1) {
    [all...]
  /packages/apps/TV/src/com/android/tv/util/
Utils.java 163 public static String getInputIdForChannel(Context context, long channelId) {
164 if (channelId == Channel.INVALID_ID) {
167 Uri channelUri = TvContract.buildChannelUri(channelId);
186 long channelId = channel.getId();
188 throw new IllegalArgumentException("channelId should be equal to or larger than 0");
191 .putLong(PREF_KEY_LAST_WATCHED_CHANNEL_ID, channelId)
193 channelId)
302 public static Program getProgramAt(Context context, long channelId, long timeMs) {
303 if (channelId == Channel.INVALID_ID) {
304 Log.e(TAG, "getCurrentProgramAt - channelId is invalid")
    [all...]
  /prebuilts/sdk/current/support/tv-provider/
android-support-tv-provider.jar 
  /packages/apps/TV/tests/unit/src/com/android/tv/data/
ChannelDataManagerTest.java 412 long channelId = ContentUris.parseId(uri);
413 channelIds.add(channelId);
433 for (long channelId : channelIds) {
435 ChannelInfoWrapper channel = mChannelInfoList.get((int) channelId);
468 long channelId = testChannelInfo.originalNetworkId;
469 mChannelInfoList.put((int) channelId,
470 new ChannelInfoWrapper(ChannelInfo.create(getContext(), (int) channelId)));
471 mContentResolver.notifyChange(TvContract.buildChannelUri(channelId), null);
477 public void simulateDelete(long channelId) {
478 mChannelInfoList.remove((int) channelId);
    [all...]
  /packages/providers/TvProvider/src/com/android/providers/tv/
TvProvider.java     [all...]
  /frameworks/base/services/core/java/com/android/server/tv/
TvInputManagerService.java     [all...]
  /packages/apps/TV/src/com/android/tv/
MainActivity.java 392 public void onCurrentProgramUpdated(long channelId, Program program) {
399 if (channel != null && channel.getId() == channelId) {
530 long channelId = Utils.getLastWatchedChannelId(this);
533 && channelId != Channel.INVALID_ID) {
534 mTvView.warmUpInput(inputId, TvContract.buildChannelUri(channelId));
567 public void onCurrentProgramUpdated(long channelId, Program program) {
    [all...]
  /hardware/ril/libril/
ril_service.cpp 382 Return<void> iccCloseLogicalChannel(int32_t serial, int32_t channelId);
    [all...]
  /packages/services/Telephony/src/com/android/phone/
PhoneInterfaceManager.java 560 int channelId = result[0];
568 openChannelResp = new IccOpenLogicalChannelResponse(channelId,
    [all...]
  /prebuilts/tools/common/m2/repository/com/google/api-client/google-api-client/1.22.0/
google-api-client-1.22.0.jar 
  /frameworks/base/services/core/java/com/android/server/notification/
NotificationManagerService.java     [all...]
  /prebuilts/tools/common/m2/repository/io/netty/netty-transport/4.1.3.Final/
netty-transport-4.1.3.Final.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-transport/4.1.6.Final/
netty-transport-4.1.6.Final.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-transport/4.1.0.CR3/
netty-transport-4.1.0.CR3.jar 
  /prebuilts/sdk/current/support/compat/libs/
android-support-compat.jar 

Completed in 977 milliseconds

12 3 4