HomeSort by relevance Sort by last modified time
    Searched defs:recorder (Results 1 - 25 of 32) sorted by null

1 2

  /external/chromium/net/base/
run_all_unittests.cc 17 base::StatisticsRecorder recorder; local
  /external/chromium/net/socket_stream/
socket_stream_metrics_unittest.cc 19 // Create the recorder if not yet started, as SocketStreamMetrics
22 static StatisticsRecorder *recorder = NULL; local
23 recorder = new StatisticsRecorder;
  /external/oprofile/libpp/
callgraph_container.h 49 * list. This is used to initially populate the recorder with
165 arc_recorder recorder; member in class:callgraph_container
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
MediaRecorderPrepareStateUnitTest.java 54 public void invokeMethodUnderTest(MediaRecorder recorder) {
56 recorder.prepare();
MediaRecorderResetStateUnitTest.java 53 public void invokeMethodUnderTest(MediaRecorder recorder) {
54 recorder.reset();
MediaRecorderStartStateUnitTest.java 53 public void invokeMethodUnderTest(MediaRecorder recorder) {
54 recorder.start();
MediaRecorderStopStateUnitTest.java 56 public void invokeMethodUnderTest(MediaRecorder recorder) {
57 // Wait for some time before stopping the media recorder.
66 recorder.stop();
  /frameworks/base/test-runner/tests/src/android/test/suitebuilder/
UnitTestSuiteBuilderTest.java 47 SuiteExecutionRecorder recorder = runSuite(unitTestSuiteBuilder); local
49 assertFalse(recorder.saw("InstrumentationTest.testInstrumentation"));
50 assertTrue(recorder.testsSeen.isEmpty());
60 SuiteExecutionRecorder recorder = new SuiteExecutionRecorder(); local
62 result.addListener(recorder);
64 return recorder;
InstrumentationTestSuiteBuilderTest.java 46 SuiteExecutionRecorder recorder = runSuite(instrumentationTestSuiteBuilder); local
48 assertEquals(1, recorder.testsSeen.size());
49 assertTrue(recorder.saw("InstrumentationTest.testInstrumentation"));
67 SuiteExecutionRecorder recorder = new SuiteExecutionRecorder(); local
69 result.addListener(recorder);
71 return recorder;
TestSuiteBuilderTest.java 53 SuiteExecutionRecorder recorder = runSuite(testSuiteBuilder); local
55 assertTrue(recorder.passed("SimpleTest.testSimpleOne"));
56 assertTrue(recorder.passed("SimpleTest.testSimpleTwo"));
57 assertTrue(recorder.passed("AnotherSimpleTest.testAnotherOne"));
66 SuiteExecutionRecorder recorder = runSuite(testSuiteBuilder); local
68 assertTrue(recorder.passed("SimpleTest.testSimpleTwo"));
74 SuiteExecutionRecorder recorder = runSuite(testSuiteBuilder); local
76 assertTrue(recorder.failed("FailingTest.testFailOne"));
77 assertTrue(recorder.failed("FailingTest.testFailTwo"));
83 SuiteExecutionRecorder recorder = runSuite(testSuiteBuilder) local
92 SuiteExecutionRecorder recorder = runSuite(testSuiteBuilder); local
104 SuiteExecutionRecorder recorder = runSuite(testSuiteBuilder); local
123 SuiteExecutionRecorder recorder = runSuite(testSuiteBuilder); local
    [all...]
  /external/chromium/base/metrics/
histogram_unittest.cc 68 // Finally test a statistics recorder, without really using it.
69 StatisticsRecorder recorder; local
72 // Repeat with a recorder present to register with.
74 // Test a statistics recorder, by letting histograms register.
75 StatisticsRecorder recorder; // This initializes the global state. local
151 StatisticsRecorder recorder; local
154 recorder.GetHistograms(&histograms);
225 recorder.GetHistograms(&histograms);
230 StatisticsRecorder recorder; local
  /external/guava/guava-tests/test/com/google/common/eventbus/
ReentrantEventsTest.java 72 EventRecorder recorder = new EventRecorder(); local
73 bus.register(recorder);
78 Lists.<Object>newArrayList(FIRST, SECOND), recorder.eventsReceived);
  /external/v8/test/mjsunit/
array-reduce.js 52 var f = function recorder(a, b, i, s) {
  /external/v8/src/
preparser-api.cc 193 internal::CompleteParserRecorder recorder; local
196 &recorder,
202 internal::Vector<unsigned> pre_data = recorder.ExtractData();
  /prebuilts/devtools/tools/lib/
monkeyrunner.jar 
  /external/replicaisland/src/com/replica/replicaisland/
LifetimeComponent.java 140 EventRecorder recorder = sSystemRegistry.eventRecorder; local
141 recorder.incrementEventCounter(mEventCounter);
PlayerComponent.java 470 EventRecorder recorder = sSystemRegistry.eventRecorder; local
471 if (recorder != null) {
472 recorder.setLastDeathPosition(parentObject.getPosition());
  /frameworks/av/media/libmedia/
IMediaPlayerService.cpp 235 sp<IMediaRecorder> recorder = createMediaRecorder(); local
236 reply->writeStrongBinder(recorder->asBinder());
  /frameworks/wilhelm/tests/examples/
slesTestRecBuffQueue.cpp 152 /* Objects this application uses: one audio recorder */
153 SLObjectItf recorder; local
155 /* Interfaces for the audio recorder */
184 /* Configuration of the recorder */
215 /* Create the audio recorder */
216 result = (*EngineItf)->CreateAudioRecorder(EngineItf, &recorder, &recSource, &recDest,
219 fprintf(stdout, "Recorder created\n");
222 result = (*recorder)->GetInterface(recorder, SL_IID_ANDROIDCONFIGURATION, (void*)&configItf);
225 /* Use the configuration interface to configure the recorder before it's realized *
    [all...]
  /cts/tests/tests/hardware/src/android/hardware/cts/
CameraTest.java 986 MediaRecorder recorder = new MediaRecorder(); local
    [all...]
  /external/skia/tools/
PictureRenderer.cpp 166 SkCanvas* recorder = newPicture->beginRecording(fPicture->width(), fPicture->height(), local
168 fPicture->draw(recorder);
251 SkCanvas* recorder = replayer->beginRecording(this->getViewWidth(), this->getViewHeight(), local
253 this->scaleToScaleFactor(recorder);
254 fPicture->draw(recorder);
743 SkCanvas* recorder = fReplayer->beginRecording(this->getViewWidth(), this->getViewHeight(), local
745 this->scaleToScaleFactor(recorder);
746 fPicture->draw(recorder);
  /frameworks/base/media/java/android/media/
AudioRecord.java 725 void onMarkerReached(AudioRecord recorder);
731 void onPeriodicNotification(AudioRecord recorder);
748 NativeEventHandler(AudioRecord recorder, Looper looper) {
750 mAudioRecord = recorder;
787 AudioRecord recorder = (AudioRecord)((WeakReference)audiorecord_ref).get(); local
788 if (recorder == null) {
792 if (recorder.mEventHandler != null) {
794 recorder.mEventHandler.obtainMessage(what, arg1, arg2, obj);
795 recorder.mEventHandler.sendMessage(m);
  /frameworks/av/media/libmediaplayerservice/
MediaPlayerService.cpp 232 sp<MediaRecorderClient> recorder = new MediaRecorderClient(this, pid); local
233 wp<MediaRecorderClient> w = recorder;
236 ALOGV("Create new media recorder client from pid %d", pid);
237 return recorder;
244 ALOGV("Delete media recorder client");
396 result.append(" No media recorder client\n\n");
    [all...]
  /packages/apps/LegacyCamera/src/com/android/camera/
EffectsRecorder.java 151 throw new RuntimeException("setCamera called on an already released recorder!");
164 throw new RuntimeException("setProfile called on an already released recorder!");
176 throw new RuntimeException("setOutputFile called on an already released recorder!");
190 throw new RuntimeException("setOutputFile called on an already released recorder!");
210 throw new RuntimeException("setMaxFileSize called on an already released recorder!");
226 throw new RuntimeException("setMaxDuration called on an already released recorder!");
239 throw new RuntimeException("setCaptureRate called on an already released recorder!");
256 throw new RuntimeException("setPreviewDisplay called on an already released recorder!");
284 throw new RuntimeException("setEffect called on an already released recorder!");
338 Filter recorder = mRunner.getGraph().getFilter("recorder") local
662 Filter recorder = mRunner.getGraph().getFilter("recorder"); local
714 Filter recorder = mRunner.getGraph().getFilter("recorder"); local
    [all...]
  /hardware/ti/omap4xxx/test/CameraHal/
camera_test_menu.cpp 37 sp<MediaRecorder> recorder; variable
820 recorder = new MediaRecorder();
822 if ( NULL == recorder.get() ) {
832 if ( NULL == recorder.get() ) {
833 printf("invalid recorder reference\n");
838 if ( recorder->init() < 0 ) {
839 printf("recorder failed to initialize\n");
844 if ( recorder->close() < 0 ) {
845 printf("recorder failed to close\n");
850 if ( recorder->release() < 0 )
    [all...]

Completed in 926 milliseconds

1 2