Searched defs:programUri (Results 1 - 6 of 6) sorted by relevance

/frameworks/support/tv-provider/tests/src/android/support/media/tv/
H A DProgramTest.java112 Uri programUri = resolver.insert(Programs.CONTENT_URI,
115 Program programFromSystemDb = loadProgramFromContentProvider(resolver, programUri);
134 Uri programUri = resolver.insert(Programs.CONTENT_URI,
137 Program programFromSystemDb = loadProgramFromContentProvider(resolver, programUri);
144 programUri, updatedProgram.toContentValues(), null, null));
145 programFromSystemDb = loadProgramFromContentProvider(resolver, programUri);
152 programUri, updatedProgram.toContentValues(), null, null));
153 programFromSystemDb = loadProgramFromContentProvider(resolver, programUri);
160 assertEquals(1, resolver.update(programUri, values, null, null));
161 programFromSystemDb = loadProgramFromContentProvider(resolver, programUri);
172 loadProgramFromContentProvider( ContentResolver resolver, Uri programUri) argument
[all...]
/frameworks/base/media/java/android/media/tv/
H A DTvRecordingClient.java160 * A non-null {@code programUri} implies the started recording should be of that specific
161 * program, whereas null {@code programUri} does not impose such a requirement and the
168 * @param programUri The URI for the TV program to record, built by
172 public void startRecording(@Nullable Uri programUri) { argument
177 mSession.startRecording(programUri);
H A DITvInputSessionWrapper.java355 public void startRecording(@Nullable Uri programUri) { argument
356 mCaller.executeOrSendMessage(mCaller.obtainMessageO(DO_START_RECORDING, programUri));
H A DTvInputService.java1699 * A non-null {@code programUri} implies the started recording should be of that specific
1700 * program, whereas null {@code programUri} does not impose such a requirement and the
1707 * @param programUri The URI for the TV program to record, built by
1710 public abstract void onStartRecording(@Nullable Uri programUri); argument
1765 void startRecording(@Nullable Uri programUri) { argument
1766 onStartRecording(programUri);
H A DTvInputManager.java2185 * @param programUri The URI for the TV program to record as a hint, built by
2188 void startRecording(@Nullable Uri programUri) { argument
2194 mService.startRecording(mToken, programUri, mUserId);
/frameworks/base/services/core/java/com/android/server/tv/
H A DTvInputManagerService.java1647 public void startRecording(IBinder sessionToken, @Nullable Uri programUri, int userId) { argument
1656 programUri);

Completed in 1531 milliseconds