HomeSort by relevance Sort by last modified time
    Searched full:recording (Results 1 - 25 of 1812) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/vulkan-validation-layers/demos/smoke/
README.md 1 This demo demonstrates multi-thread command buffer recording.
  /art/test/595-profile-saving/
info.txt 1 Check that profile recording works even when JIT compilation is not enabled.
  /external/jsilver/src/com/google/streamhtmlparser/util/
CharacterRecorder.java 21 * whether recording is currently enabled.
24 * supplied character to the recording buffer but only if
25 * recording is in progress. This is useful in our
27 * as the caller logic to enable/disable recording is decoupled from the logic
28 * of recording.
38 * <li>There is a size limit to the recording buffer as set in
41 * recording is currently enabled.
54 * This is where characters provided for recording are stored. Given
60 /** Holds whether we are currently recording characters or not. */
61 private boolean recording; field in class:CharacterRecorder
    [all...]
  /packages/apps/TV/src/com/android/tv/dvr/provider/
DvrContract.java 26 /** Column definition for Recording table. */
29 public static final String TABLE_NAME = "recording";
31 /** The recording type for program recording. */
34 /** The recording type for timed recording. */
37 /** The recording type for season recording. */
40 /** The recording has not been started yet. */
43 /** The recording is in progress. *
    [all...]
  /frameworks/base/docs/html/preview/features/
tv-recording-api.jd 1 page.title=TV Recording
2 page.keywords=preview,sdk,tv,recording
12 <li><a href="#supporting">Indicating Support for Recording</a></li>
13 <li><a href="#recording">Recording a Session</a></li>
14 <li><a href="#errors">Handling Recording Errors</a></li>
25 <p>Users can schedule recordings in advance, or start a recording as they watch
26 a program. Once the system has saved a recording, the user can browse, manage,
27 and play back the recording using the system TV app.</p>
29 <p>If you want to provide recording functionality for your TV input service
    [all...]
  /packages/apps/TV/tests/unit/src/com/android/tv/dvr/
ScheduledProgramReaperTest.java 57 ScheduledRecording recording = addNewScheduledRecordingForTomorrow(); local
59 .assertContentsInAnyOrder(mDvrDataManager.getAllScheduledRecordings(), recording); local
62 .assertContentsInAnyOrder(mDvrDataManager.getAllScheduledRecordings(), recording); local
66 ScheduledRecording recording = addNewScheduledRecordingForTomorrow(); local
68 .assertContentsInAnyOrder(mDvrDataManager.getAllScheduledRecordings(), recording); local
72 .assertContentsInAnyOrder(mDvrDataManager.getAllScheduledRecordings(), recording); local
76 ScheduledRecording recording = addNewScheduledRecordingForTomorrow(); local
78 .assertContentsInAnyOrder(mDvrDataManager.getAllScheduledRecordings(), recording); local
83 .assertContentsInAnyOrder(mDvrDataManager.getAllScheduledRecordings(), recording); local
87 ScheduledRecording recording = addNewScheduledRecordingForTomorrow() local
89 .assertContentsInAnyOrder(mDvrDataManager.getAllScheduledRecordings(), recording); local
    [all...]
  /external/caliper/caliper/src/main/java/com/google/caliper/worker/
AggregateAllocationsRecorder.java 33 private volatile boolean recording = false; field in class:AggregateAllocationsRecorder
38 if (recording) {
50 checkState(!recording, "startRecording called, but we were already recording.");
53 recording = true;
57 checkState(recording, "stopRecording called, but we were not recording.");
58 recording = false;
AllocationRecorder.java 30 * Clears the prior state and starts a new recording.
32 * @throws IllegalStateException if the recording infrastructure is misconfigured.
42 String.format("The allocation recording infrastructure appears to be broken. "
51 /** Clears the prior state and starts a new recording. */
55 * Stops recording allocations and saves all the allocation data recorded since the previous call
  /cts/suite/audio_quality/test_description/processing/
recording_thd.py 24 # Input: host recording (mono), device recording (mono),
28 # host recording will be longer than device recording
30 # 1. match the start of device recording with host recording
31 # As the host recording starts eariler and longer than device recording,
33 # 2. calculate THD of host recording and client recording
    [all...]
  /packages/apps/TV/src/com/android/tv/dvr/ui/
RecordedProgramPresenter.java 36 import com.android.tv.common.recording.RecordedProgram;
62 final RecordedProgram recording = (RecordedProgram) o; local
67 Channel channel = mChannelDataManager.getChannel(recording.getChannelId());
69 if (!TextUtils.isEmpty(recording.getTitle())) {
70 cardView.setTitle(recording.getTitle());
74 if (recording.getPosterArt() != null) {
75 cardView.setImageUri(recording.getPosterArt());
76 } else if (recording.getThumbnail() != null) {
77 cardView.setImageUri(recording.getThumbnail());
83 cardView.setContent(Utils.getDurationString(context, recording.getStartTimeUtcMillis()
    [all...]
ScheduledRecordingPresenter.java 69 final ScheduledRecording recording = (ScheduledRecording) o; local
73 long programId = recording.getProgramId();
75 setTitleAndImage(cardView, recording, null);
82 setTitleAndImage(cardView, recording, program);
88 cardView.setContent(Utils.getDurationString(context, recording.getStartTimeMs(),
89 recording.getEndTimeMs(), true));
94 switch (recording.getState()) {
96 showScheduledRecordingDialog(v.getContext(), recording);
100 showCurrentlyRecordingDialog(v.getContext(), recording);
109 private void setTitleAndImage(RecordingCardView cardView, ScheduledRecording recording,
    [all...]
  /frameworks/base/core/java/android/hardware/hdmi/
IHdmiRecordListener.aidl 40 * Called when timer recording is started or failed during initialization.
42 * @param recorderAddress An address of recorder that reports result of timer recording
44 * @param result result code for timer recording
48 * Called when receiving result for clear timer recording request.
50 * @param recorderAddress An address of recorder that reports result of clear timer recording
HdmiControlManager.java 106 // --- One Touch Recording success result
107 /** Recording currently selected source. Indicates the status of a recording. */
109 /** Recording Digital Service. Indicates the status of a recording. */
111 /** Recording Analogue Service. Indicates the status of a recording. */
113 /** Recording External input. Indicates the status of a recording. */
117 /** No recording ? unable to record Digital Service. No suitable tuner. *
    [all...]
  /external/autotest/server/site_tests/brillo_RecordingAudioTest/
brillo_RecordingAudioTest.py 18 # Recording sample rate (48kHz).
20 # Recording sample format is signed 16-bit PCM (two bytes).
27 """Verify that audio recording works."""
38 """Get a recording command based on the method.
40 @param recording_method: A string specifying the recording method to
43 @param num_channels: Number of channels to use for recording.
49 @raises TestError: Invalid recording method.
64 raise error.TestError('Test called with invalid recording method.')
69 """Performs a recording test.
72 @param recording_method: A string representing a recording method t
    [all...]
  /external/skia/include/core/
SkPictureRecorder.h 38 // If you call drawPicture() or drawDrawable() on the recording canvas, this flag forces
44 @param bounds the cull rect used when recording this picture. Any drawing the falls outside
47 @param recordFlags optional flags that control recording.
60 /** Returns the recording canvas if one is active, or NULL if recording is
66 * Signal that the caller is done recording. This invalidates the canvas returned by
70 * The returned picture is immutable. If during recording drawables were added to the canvas,
71 * these will have been "drawn" into a recording canvas, so that this resulting picture will
78 * Signal that the caller is done recording, and update the cull rect to use for bounding
89 * Signal that the caller is done recording. This invalidates the canvas returned b
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/tunes_db/server/
appengine_config.py 11 from google.appengine.ext.appstats import recording namespace
12 app = recording.appstats_wsgi_middleware(app)
  /frameworks/base/media/java/android/media/tv/
TvRecordingClient.java 37 * recording.
59 * @param callback The callback to receive recording status changes.
70 * Tunes to a given channel for TV program recording. The first tune request will create a new
71 * recording session for the corresponding TV input and establish a connection between the
72 * application and the session. If recording has already started in the current recording
75 * <p>The application may call this method before starting or after stopping recording, but not
76 * during recording.
78 * <p>The recording session will respond by calling
84 * @throws IllegalStateException If recording is already started
    [all...]
  /cts/suite/audio_quality/test/
AudioHardwareTest.cpp 34 android::sp<AudioHardware> recording = AudioHardware::createAudioHw(true, false); local
35 ASSERT_TRUE(recording.get() != NULL);
43 android::sp<AudioHardware> recording = AudioHardware::createAudioHw(false, false, testCase); local
44 ASSERT_TRUE(recording.get() != NULL);
  /developers/build/prebuilts/gradle/Camera2Video/Application/src/main/res/values/
strings.xml 6 <string name="permission_request">This sample needs permission for camera and audio recording.</string>
  /developers/samples/android/media/Camera2Video/Application/src/main/res/values/
strings.xml 6 <string name="permission_request">This sample needs permission for camera and audio recording.</string>
  /development/samples/browseable/Camera2Video/res/values/
strings.xml 6 <string name="permission_request">This sample needs permission for camera and audio recording.</string>
  /packages/apps/TV/src/com/android/tv/dvr/
WritableDvrDataManager.java 30 * Add a new recording.
35 * Add a season recording/
40 * Remove a recording.
50 * Update an existing recording.
  /frameworks/av/include/camera/
ICameraRecordingProxy.h 32 * allow applications using the camera during recording.
36 * access the camera directly during recording. So ICameraRecordingProxy is a
37 * proxy of ICamera, which allows the media recorder to start/stop the recording
38 * and release recording frames. ICameraRecordingProxyListener is an interface
39 * that allows the recorder to receive video frames during recording.
55 * camera service and starts the recording. The app owns the camera and can do
59 * recording.
64 * 3. Start recording
70 * 4. During recording
73 * 5. Stop recording
    [all...]
  /packages/apps/TV/tests/common/src/com/android/tv/testing/dvr/
RecordingTestUtils.java 45 ScheduledRecording recording = createTestRecordingWithPeriod(channelId, startTime, endTime); local
46 recording = dvrDataManager.addScheduledRecordingInternal(recording);
47 return recording;
62 Assert.assertEquals("parent season recording", expected.getParentSeasonRecording(),
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/appstats/protorpc_appstats/
__init__.py 29 from google.appengine.ext.appstats import recording namespace
69 # TODO(rafek): Remove this function when recording.load_summary_protos is
81 tmpl = '%s%s%s' % (recording.config.KEY_PREFIX,
82 recording.config.KEY_TEMPLATE,
83 recording.config.PART_SUFFIX)
86 range(0, recording.config.KEY_DISTANCE * recording.config.KEY_MODULUS,
87 recording.config.KEY_DISTANCE)]
88 results = memcache.get_multi(keys, namespace=recording.config.KEY_NAMESPACE)
103 # TODO(rafek): Remove this function when recording.load_full_protos i
    [all...]

Completed in 754 milliseconds

1 2 3 4 5 6 7 8 91011>>