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

1 2 3 4 5

  /frameworks/compile/mclinker/lib/Script/
OutputCmd.cpp 36 pModule.getScript().setOutputFile(m_OutputFile);
  /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 224 status_t setOutputFile(const char* path);
225 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 157 status_t MediaRecorderClient::setOutputFile(const char* path)
159 ALOGV("setOutputFile(%s)", path);
165 return mRecorder->setOutputFile(path);
168 status_t MediaRecorderClient::setOutputFile(int fd, int64_t offset, int64_t length)
170 ALOGV("setOutputFile(%d, %lld, %lld)", fd, offset, length);
176 return mRecorder->setOutputFile(fd, offset, length);
StagefrightRecorder.h 56 virtual status_t setOutputFile(const char *path);
57 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()") {
  /frameworks/compile/mclinker/lib/Core/
LinkerScript.cpp 59 void LinkerScript::setOutputFile(const std::string& pOutputFile)
  /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);
  /frameworks/compile/mclinker/include/mcld/
LinkerScript.h 85 void setOutputFile(const std::string& pOutputFile);
  /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 114 mMediaRecorder.setOutputFile(OUTPUT_PATH);
217 mMediaRecorder.setOutputFile(fileName);
296 mMediaRecorder.setOutputFile(OUTPUT_PATH2);
303 mMediaRecorder.setOutputFile(fd);
341 mMediaRecorder.setOutputFile(OUTPUT_PATH);
367 mMediaRecorder.setOutputFile(OUTPUT_PATH);
  /frameworks/av/media/libmedia/
mediarecorder.cpp 267 status_t MediaRecorder::setOutputFile(const char* path)
269 ALOGV("setOutputFile(%s)", path);
279 ALOGE("setOutputFile called in an invalid state(%d)", mCurrentState);
283 status_t ret = mMediaRecorder->setOutputFile(path);
285 ALOGV("setOutputFile failed: %d", ret);
293 status_t MediaRecorder::setOutputFile(int fd, int64_t offset, int64_t length)
295 ALOGV("setOutputFile(%d, %" PRId64 ", %" PRId64 ")", fd, offset, length);
305 ALOGE("setOutputFile called in an invalid state(%d)", mCurrentState);
320 status_t ret = mMediaRecorder->setOutputFile(fd, offset, length);
322 ALOGV("setOutputFile failed: %d", ret)
    [all...]
  /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);
396 * be called after the video AND audio sources are set, and before setOutputFile().
701 public void setOutputFile(FileDescriptor fd) throws IllegalStateException
715 public void setOutputFile(String path) throws IllegalStateException
755 * setOutputFile(). Call this after prepare().
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/mediarecorder/
MediaRecorderTest.java 90 mRecorder.setOutputFile(outFile);
140 recorder.setOutputFile(MediaNames.RECORDED_SURFACE_3GP);
237 recorder.setOutputFile(outFile);
336 mMediaRecorder.setOutputFile(filename);
369 mRecorder.setOutputFile(outFile);
  /cts/tests/tests/mediastress/src/android/mediastress/cts/
MediaRecorderStressTest.java 242 mRecorder.setOutputFile(filename);
316 mRecorder.setOutputFile(filename);
395 mRecorder.setOutputFile(filename);
  /developers/build/prebuilts/gradle/MediaRecorder/Application/src/main/java/com/example/android/mediarecorder/
MainActivity.java 177 mMediaRecorder.setOutputFile(CameraHelper.getOutputMediaFile(
  /developers/samples/android/media/MediaRecorder/Application/src/main/java/com/example/android/mediarecorder/
MainActivity.java 177 mMediaRecorder.setOutputFile(CameraHelper.getOutputMediaFile(
  /development/samples/browseable/MediaRecorder/src/com.example.android.mediarecorder/
MainActivity.java 177 mMediaRecorder.setOutputFile(CameraHelper.getOutputMediaFile(

Completed in 1307 milliseconds

1 2 3 4 5