Searched defs:prepare (Results 1 - 15 of 15) sorted by relevance

/frameworks/base/core/java/android/os/
H A DLooper.java26 * {@link #prepare} in the thread that is to run the loop, and then
33 * using the separation of {@link #prepare} and {@link #loop} to create an
41 * Looper.prepare();
57 // sThreadLocal.get() will return null unless you've called prepare().
72 public static final void prepare() { method in class:Looper
82 * {@link #prepare()}
86 prepare();
/frameworks/base/media/libmediaplayerservice/
H A DTestPlayerStub.h51 // p.prepare();
81 virtual status_t prepare() {return mPlayer->prepare();} function in class:android::TestPlayerStub
H A DMediaRecorderClient.cpp199 status_t MediaRecorderClient::prepare() function in class:android::MediaRecorderClient
201 LOGV("prepare");
207 return mRecorder->prepare();
H A DMidiFile.cpp177 status_t MidiFile::prepare() function in class:android::MidiFile
179 LOGV("MidiFile::prepare");
196 status_t ret = prepare();
H A DStagefrightPlayer.cpp54 status_t StagefrightPlayer::prepare() { function in class:android::StagefrightPlayer
55 return mPlayer->prepare();
H A DStagefrightRecorder.cpp631 status_t StagefrightRecorder::prepare() { function in class:android::StagefrightRecorder
/frameworks/base/include/private/ui/
H A DRegionHelper.h79 spannerInner.prepare(inside);
222 inline void prepare(int inside) { function in class:android::region_operator::SpannerInner
/frameworks/base/libs/utils/
H A DLooper.cpp141 sp<Looper> Looper::prepare(int opts) { function in class:Looper
/frameworks/base/media/libmedia/
H A Dmediarecorder.cpp388 status_t MediaRecorder::prepare() function in class:android::MediaRecorder
390 LOGV("prepare");
396 LOGE("prepare called in an invalid state: %d", mCurrentState);
417 status_t ret = mMediaRecorder->prepare();
419 LOGE("prepare failed: %d", ret);
H A DIMediaRecorder.cpp203 status_t prepare() function in class:android::BpMediaRecorder
205 LOGV("prepare");
315 reply->writeInt32(prepare());
H A Dmediaplayer.cpp230 // that generated the error. The sync version of prepare returns only 1 error
232 status_t MediaPlayer::prepare() function in class:android::MediaPlayer
234 LOGV("prepare");
249 mSignal.wait(mLock); // wait for prepare done
252 LOGV("prepare complete - status=%d", mPrepareStatus);
465 // Can't change the stream type after prepare
563 // The threadId hack below works around this for the care of prepare
/frameworks/base/media/tests/players/
H A Dinvoke_mock_media_player.cpp71 virtual status_t prepare() {return OK;} function in class:__anon654::Player
/frameworks/base/media/java/android/media/
H A DMediaPlayer.java87 * {@link #stop()}, {@link #seekTo(int)}, {@link #prepare()} or
137 * thrown to prevent programming errors such as calling {@link #prepare()},
163 * either a call to {@link #prepare()} (synchronous) which
169 * until the preparation work completes. When the preparation completes or when {@link #prepare()} call returns,
179 * thrown if {@link #prepare()} or {@link #prepareAsync()} is called in
225 * until {@link #prepare()} or {@link #prepareAsync()} are called to set
326 * <tr><td>prepare </p></td>
365 * prepare() or prepareAsync().</p></td></tr>
599 * On success, {@link #prepare()} will already have been called and must not be called again.
614 * On success, {@link #prepare()} wil
795 public native void prepare() throws IOException, IllegalStateException; method in class:MediaPlayer
[all...]
H A DMediaRecorder.java46 * recorder.prepare();
102 * the camera object. Must call before prepare().
110 * before prepare() to make sure that the desirable preview display is
299 * This method should be called before prepare(). This method will not
324 * after setAudioSource()/setVideoSource() but before prepare().
332 * @throws IllegalStateException if it is called after prepare() or before
342 * prepare().
347 * prepare() or before setOutputFormat()
355 * prepare().
359 * prepare() o
530 public void prepare() throws IllegalStateException, IOException method in class:MediaRecorder
[all...]
/frameworks/base/media/libstagefright/
H A DAwesomePlayer.cpp575 LOGV("cache has reached EOS, prepare is done.");
609 LOGV("cache has filled up (> %d), prepare is done",
636 LOGV("cache has filled up (%.2f secs), prepare is done",
1395 status_t AwesomePlayer::prepare() { function in class:android::AwesomePlayer
1427 return UNKNOWN_ERROR; // async prepare already pending
1436 return UNKNOWN_ERROR; // async prepare already pending
1695 LOGI("prepare was cancelled before doing anything");

Completed in 219 milliseconds