HomeSort by relevance Sort by last modified time
    Searched refs:setOutputFile (Results 1 - 25 of 62) sorted by null

1 2 3

  /frameworks/av/include/media/
IMediaRecorder.h 44 virtual status_t setOutputFile(const char* path) = 0;
45 virtual status_t setOutputFile(int fd, int64_t offset, int64_t length) = 0;
MediaRecorderBase.h 46 virtual status_t setOutputFile(const char *path) = 0;
47 virtual status_t setOutputFile(int fd, int64_t offset, int64_t length) = 0;
mediarecorder.h 216 status_t setOutputFile(const char* path);
217 status_t setOutputFile(int fd, int64_t offset, int64_t length);
  /frameworks/av/media/libmediaplayerservice/
MediaRecorderClient.h 41 virtual status_t setOutputFile(const char* path);
42 virtual status_t setOutputFile(int fd, int64_t offset,
MediaRecorderClient.cpp 156 status_t MediaRecorderClient::setOutputFile(const char* path)
158 ALOGV("setOutputFile(%s)", path);
164 return mRecorder->setOutputFile(path);
167 status_t MediaRecorderClient::setOutputFile(int fd, int64_t offset, int64_t length)
169 ALOGV("setOutputFile(%d, %lld, %lld)", fd, offset, length);
175 return mRecorder->setOutputFile(fd, offset, length);
StagefrightRecorder.h 55 virtual status_t setOutputFile(const char *path);
56 virtual status_t setOutputFile(int fd, int64_t offset, int64_t length);
  /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) {
FetchBaseTask.java 101 public void setOutputFile(String outputFile) {
  /cts/tests/tests/permission/src/android/permission/cts/
AudioPermissionTest.java 52 mMediaRecorder.setOutputFile(AUDIO_CAPTURE_PATH);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
SourceFileData.java 93 void setOutputFile(IFile outputFile) {
  /cts/tests/tests/media/src/android/media/cts/
MediaRecorderTest.java 112 mMediaRecorder.setOutputFile(OUTPUT_PATH);
215 mMediaRecorder.setOutputFile(fileName);
294 mMediaRecorder.setOutputFile(OUTPUT_PATH2);
301 mMediaRecorder.setOutputFile(fd);
330 mMediaRecorder.setOutputFile(OUTPUT_PATH);
354 mMediaRecorder.setOutputFile(OUTPUT_PATH);
  /frameworks/av/media/libmedia/
mediarecorder.cpp 261 status_t MediaRecorder::setOutputFile(const char* path)
263 ALOGV("setOutputFile(%s)", path);
273 ALOGE("setOutputFile called in an invalid state(%d)", mCurrentState);
277 status_t ret = mMediaRecorder->setOutputFile(path);
279 ALOGV("setOutputFile failed: %d", ret);
287 status_t MediaRecorder::setOutputFile(int fd, int64_t offset, int64_t length)
289 ALOGV("setOutputFile(%d, %lld, %lld)", fd, offset, length);
299 ALOGE("setOutputFile called in an invalid state(%d)", mCurrentState);
314 status_t ret = mMediaRecorder->setOutputFile(fd, offset, length);
316 ALOGV("setOutputFile failed: %d", ret)
    [all...]
IMediaRecorder.cpp 159 status_t setOutputFile(const char* path)
161 ALOGV("setOutputFile(%s)", path);
169 status_t setOutputFile(int fd, int64_t offset, int64_t length) {
170 ALOGV("setOutputFile(%d, %lld, %lld)", fd, offset, length);
395 reply->writeInt32(setOutputFile(path));
404 reply->writeInt32(setOutputFile(fd, offset, length));
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-jdepend.jar 
  /frameworks/base/media/java/android/media/
MediaRecorder.java 45 * recorder.setOutputFile(PATH_NAME);
349 * be called after the video AND audio sources are set, and before setOutputFile().
654 public void setOutputFile(FileDescriptor fd) throws IllegalStateException
668 public void setOutputFile(String path) throws IllegalStateException
708 * setOutputFile(). Call this after prepare().
    [all...]
  /cts/tests/tests/mediastress/src/android/mediastress/cts/
MediaRecorderStressTest.java 242 mRecorder.setOutputFile(filename);
316 mRecorder.setOutputFile(filename);
395 mRecorder.setOutputFile(filename);
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/mediarecorder/
MediaRecorderTest.java 84 mRecorder.setOutputFile(outFile);
151 mMediaRecorder.setOutputFile(filename);
184 mRecorder.setOutputFile(outFile);
  /developers/samples/android/media/MediaRecorder/MediaRecorder/src/main/java/com/example/android/media/recorder/
MainActivity.java 184 mMediaRecorder.setOutputFile(CameraHelper.getOutputMediaFile(
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowMediaRecorder.java 105 public void setOutputFile(String path) {
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosink/
MediaEncoderFilter.java 263 mMediaRecorder.setOutputFile(mFd);
265 mMediaRecorder.setOutputFile(mOutputFile);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/
buildTools.jar 
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/performance/
MediaPlayerPerformance.java 236 mRecorder.setOutputFile(outFile);
271 mRecorder.setOutputFile(filePath);

Completed in 403 milliseconds

1 2 3