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

1 2 3 4 5 6

  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
MediaRecorderSetOutputFileStateUnitTest.java 26 * MediaRecorder.setOutputFile() method can be called.
31 * 1. It is valid to call setOutputFile() in the following states:
33 * 2. It is invalid to call setOutputFile() in the following states:
51 recorder.setOutputFile(MediaRecorderStateUnitTestTemplate.RECORD_OUTPUT_PATH);
61 return "setOutputFile()";
MediaRecorderStateUnitTestTemplate.java 105 mMediaRecorder.setOutputFile(RECORD_OUTPUT_PATH);
132 mMediaRecorder.setOutputFile(RECORD_OUTPUT_PATH);
145 mMediaRecorder.setOutputFile(RECORD_OUTPUT_PATH);
159 /* Skip setAudioEncoder() and setOutputFile() calls if
167 if (mMethodUnderTest.toString() != "setOutputFile()") {
168 mMediaRecorder.setOutputFile(RECORD_OUTPUT_PATH);
192 /* Skip setOutputFormat if the method under test is setOutputFile()
193 * Because, otherwise, it is valid to call setOutputFile() after
197 if (mMethodUnderTest.toString() != "setOutputFile()") {
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
GenerateExcludeListTask.java 37 parser.setOutputFile("c:\\temp\\orbit.map.new");
45 public void setOutputFile(String outputFile) {
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/
FileCounter.java 41 aFileCounter.setOutputFile("c:\\RelEng\\dean\\files.count");
142 public void setOutputFile(String outputFile) {
  /frameworks/av/media/libmediaplayerservice/
MediaRecorderClient.cpp 164 status_t MediaRecorderClient::setOutputFile(int fd, int64_t offset, int64_t length)
166 ALOGV("setOutputFile(%d, %lld, %lld)", fd, (long long)offset, (long long)length);
172 return mRecorder->setOutputFile(fd, offset, length);
MediaRecorderClient.h 57 virtual status_t setOutputFile(int fd, int64_t offset,
  /frameworks/base/docs/html/guide/topics/media/
audio-capture.jd 56 {@link android.media.MediaRecorder#setOutputFile MediaRecorder.setOutputFile()}.
151 mRecorder.setOutputFile(mFileName);
  /frameworks/av/include/media/
IMediaRecorder.h 47 virtual status_t setOutputFile(int fd, int64_t offset, int64_t length) = 0;
MediaRecorderBase.h 48 virtual status_t setOutputFile(int fd, int64_t offset, int64_t length) = 0;
  /frameworks/compile/mclinker/lib/Script/
OutputCmd.cpp 31 pModule.getScript().setOutputFile(m_OutputFile);
  /cts/tests/tests/media/src/android/media/cts/
MediaRecorderTest.java 131 mMediaRecorder.setOutputFile(OUTPUT_PATH);
280 mMediaRecorder.setOutputFile(fileName);
376 mMediaRecorder.setOutputFile(OUTPUT_PATH2);
383 mMediaRecorder.setOutputFile(fd);
421 mMediaRecorder.setOutputFile(OUTPUT_PATH);
433 mMediaRecorder.setOutputFile(OUTPUT_PATH);
459 mMediaRecorder.setOutputFile(OUTPUT_PATH);
597 mMediaRecorder.setOutputFile(filename);
    [all...]
  /frameworks/av/media/libmedia/
mediarecorder.cpp 269 status_t MediaRecorder::setOutputFile(int fd, int64_t offset, int64_t length)
271 ALOGV("setOutputFile(%d, %" PRId64 ", %" PRId64 ")", fd, offset, length);
281 ALOGE("setOutputFile called in an invalid state(%d)", mCurrentState);
296 status_t ret = mMediaRecorder->setOutputFile(fd, offset, length);
298 ALOGV("setOutputFile failed: %d", ret);
IMediaRecorder.cpp 174 status_t setOutputFile(int fd, int64_t offset, int64_t length) {
175 ALOGV("setOutputFile(%d, %" PRId64 ", %" PRId64 ")", fd, offset, length);
433 reply->writeInt32(setOutputFile(fd, offset, length));
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/media/
MediaRecorderFacade.java 149 mMediaRecorder.setOutputFile(file.getAbsolutePath());
191 mMediaRecorder.setOutputFile(file.getAbsolutePath());
207 mMediaRecorder.setOutputFile(targetPath);
  /cts/tests/camera/src/android/hardware/multiprocess/camera/cts/
MediaRecorderCameraActivity.java 127 mMediaRecorder.setOutputFile(OUTPUT_PATH);
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowMediaRecorder.java 105 public void setOutputFile(String path) {
  /frameworks/compile/mclinker/include/mcld/
LinkerScript.h 93 void setOutputFile(const std::string& pOutputFile);
  /frameworks/compile/mclinker/lib/Core/
LinkerScript.cpp 50 void LinkerScript::setOutputFile(const std::string& pOutputFile) {
  /packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/
MmsVideoRecorder.java 78 setOutputFile(
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
SourceFileData.java 93 void setOutputFile(IFile outputFile) {
  /packages/apps/LegacyCamera/src/com/android/camera/
EffectsRecorder.java 171 public void setOutputFile(String outputFile) {
174 throw new RuntimeException("setOutputFile cannot be called while recording!");
176 throw new RuntimeException("setOutputFile called on an already released recorder!");
185 public void setOutputFile(FileDescriptor fd) {
188 throw new RuntimeException("setOutputFile cannot be called while recording!");
190 throw new RuntimeException("setOutputFile called on an already released recorder!");
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/mediarecorder/
MediaRecorderTest.java 92 mRecorder.setOutputFile(outFile);
142 recorder.setOutputFile(MediaNames.RECORDED_SURFACE_3GP);
241 recorder.setOutputFile(outFile);
351 mMediaRecorder.setOutputFile(filename);
384 mRecorder.setOutputFile(outFile);
  /cts/tests/tests/mediastress/src/android/mediastress/cts/
MediaRecorderStressTest.java 269 mRecorder.setOutputFile(filename);
358 mRecorder.setOutputFile(filename);
437 mRecorder.setOutputFile(filename);
  /frameworks/base/media/jni/
android_media_MediaRecorder.cpp 267 ALOGV("setOutputFile");
274 status_t opStatus = mr->setOutputFile(fd, offset, length);
275 process_media_recorder_call(env, opStatus, "java/io/IOException", "setOutputFile failed.");
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
MediaRecorderStressTest.java 233 mRecorder.setOutputFile(fileName);
339 mRecorder.setOutputFile(fileName);

Completed in 1017 milliseconds

1 2 3 4 5 6