/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/av/include/media/ |
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;
|
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;
|
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/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.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) {
|
/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/base/docs/html/guide/topics/media/ |
audio-capture.jd | 56 {@link android.media.MediaRecorder#setOutputFile MediaRecorder.setOutputFile()}. 151 mRecorder.setOutputFile(mFileName);
|
/cts/tests/tests/permission/src/android/permission/cts/ |
AudioPermissionTest.java | 52 mMediaRecorder.setOutputFile(AUDIO_CAPTURE_PATH);
|
/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);
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowMediaRecorder.java | 105 public void setOutputFile(String path) {
|
/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/jni/ |
android_media_MediaRecorder.cpp | 250 ALOGV("setOutputFile"); 257 status_t opStatus = mr->setOutputFile(fd, offset, length); 258 process_media_recorder_call(env, opStatus, "java/io/IOException", "setOutputFile failed.");
|
/packages/apps/Camera/src/com/android/camera/ |
EffectsRecorder.java | 343 public void setOutputFile(String outputFile) { 346 throw new RuntimeException("setOutputFile cannot be called while recording!"); 348 throw new RuntimeException("setOutputFile called on an already released recorder!"); 357 public void setOutputFile(FileDescriptor fd) { 360 throw new RuntimeException("setOutputFile cannot be called while recording!"); 362 throw new RuntimeException("setOutputFile called on an already released recorder!"); [all...] |
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/ |
MediaRecorderStressTest.java | 233 mRecorder.setOutputFile(fileName); 339 mRecorder.setOutputFile(fileName);
|
/developers/build/prebuilts/gradle/MediaRecorder/MediaRecorderSample/src/main/java/com/example/android/mediarecorder/ |
MainActivity.java | 177 mMediaRecorder.setOutputFile(CameraHelper.getOutputMediaFile(
|
/developers/samples/android/media/MediaRecorder/MediaRecorderSample/src/main/java/com/example/android/mediarecorder/ |
MainActivity.java | 177 mMediaRecorder.setOutputFile(CameraHelper.getOutputMediaFile(
|