Searched defs:setOutputFile (Results 1 - 6 of 6) sorted by relevance

/frameworks/compile/mclinker/lib/Core/
H A DLinkerScript.cpp59 void LinkerScript::setOutputFile(const std::string& pOutputFile) function in class:LinkerScript
/frameworks/av/media/libmedia/
H A Dmediarecorder.cpp267 status_t MediaRecorder::setOutputFile(const char* path) function in class:android::MediaRecorder
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) function in class:android::MediaRecorder
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 faile
[all...]
H A DIMediaRecorder.cpp161 status_t setOutputFile(const char* path) function in class:android::BpMediaRecorder
163 ALOGV("setOutputFile(%s)", path);
171 status_t setOutputFile(int fd, int64_t offset, int64_t length) { function in class:android::BpMediaRecorder
172 ALOGV("setOutputFile(%d, %" PRId64 ", %" PRId64 ")", fd, offset, length);
397 reply->writeInt32(setOutputFile(path));
406 reply->writeInt32(setOutputFile(fd, offset, length));
/frameworks/av/media/libmediaplayerservice/
H A DMediaRecorderClient.cpp157 status_t MediaRecorderClient::setOutputFile(const char* path) function in class:android::MediaRecorderClient
159 ALOGV("setOutputFile(%s)", path);
165 return mRecorder->setOutputFile(path);
168 status_t MediaRecorderClient::setOutputFile(int fd, int64_t offset, int64_t length) function in class:android::MediaRecorderClient
170 ALOGV("setOutputFile(%d, %lld, %lld)", fd, offset, length);
176 return mRecorder->setOutputFile(fd, offset, length);
H A DStagefrightRecorder.cpp244 status_t StagefrightRecorder::setOutputFile(const char * /* path */) { function in class:android::StagefrightRecorder
245 ALOGE("setOutputFile(const char*) must not be called");
252 status_t StagefrightRecorder::setOutputFile(int fd, int64_t offset, int64_t length) { function in class:android::StagefrightRecorder
253 ALOGV("setOutputFile: %d, %lld, %lld", fd, offset, length);
/frameworks/base/media/java/android/media/
H A DMediaRecorder.java45 * 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 method in class:MediaRecorder
715 public void setOutputFile(String path) throws IllegalStateException method in class:MediaRecorder
755 * setOutputFile(). Call this after prepare().

Completed in 295 milliseconds