HomeSort by relevance Sort by last modified time
    Searched defs:setOutputFile (Results 1 - 11 of 11) sorted by null

  /external/opencore/android/author/
PVMediaRecorder.cpp 106 status_t PVMediaRecorder::setOutputFile(const char *path)
108 LOGV("setOutputFile(%s)", path);
120 return setOutputFile(fd, 0, 0);
123 status_t PVMediaRecorder::setOutputFile(int fd, int64_t offset, int64_t length)
125 LOGV("setOutputFile(%d, %lld, %lld)", fd, offset, length);
  /frameworks/base/media/libmedia/
mediarecorder.cpp 259 status_t MediaRecorder::setOutputFile(const char* path)
261 LOGV("setOutputFile(%s)", path);
271 LOGE("setOutputFile called in an invalid state(%d)", mCurrentState);
275 status_t ret = mMediaRecorder->setOutputFile(path);
277 LOGV("setOutputFile failed: %d", ret);
285 status_t MediaRecorder::setOutputFile(int fd, int64_t offset, int64_t length)
287 LOGV("setOutputFile(%d, %lld, %lld)", fd, offset, length);
297 LOGE("setOutputFile called in an invalid state(%d)", mCurrentState);
301 status_t ret = mMediaRecorder->setOutputFile(fd, offset, length);
303 LOGV("setOutputFile failed: %d", ret)
    [all...]
IMediaRecorder.cpp 140 status_t setOutputFile(const char* path)
142 LOGV("setOutputFile(%s)", path);
150 status_t setOutputFile(int fd, int64_t offset, int64_t length) {
151 LOGV("setOutputFile(%d, %lld, %lld)", fd, offset, length);
366 reply->writeInt32(setOutputFile(path));
375 reply->writeInt32(setOutputFile(fd, offset, length));
  /frameworks/base/media/libmediaplayerservice/
MediaRecorderClient.cpp 145 status_t MediaRecorderClient::setOutputFile(const char* path)
147 LOGV("setOutputFile(%s)", path);
153 return mRecorder->setOutputFile(path);
156 status_t MediaRecorderClient::setOutputFile(int fd, int64_t offset, int64_t length)
158 LOGV("setOutputFile(%d, %lld, %lld)", fd, offset, length);
164 return mRecorder->setOutputFile(fd, offset, length);
StagefrightRecorder.cpp 110 status_t StagefrightRecorder::setOutputFile(const char *path) {
117 status_t StagefrightRecorder::setOutputFile(int fd, int64_t offset, int64_t length) {
  /frameworks/base/media/java/android/media/
MediaRecorder.java 45 * recorder.setOutputFile(PATH_NAME);
264 * be called after the video AND audio sources are set, and before setOutputFile().
455 public void setOutputFile(FileDescriptor fd) throws IllegalStateException
469 public void setOutputFile(String path) throws IllegalStateException
508 * setOutputFile(). Call this after prepare().
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 

Completed in 419 milliseconds