Searched defs:prepare (Results 1 - 25 of 45) sorted by path

12

/frameworks/av/cmds/stagefright/
H A DSimplePlayer.cpp82 status_t SimplePlayer::prepare() { function in class:android::SimplePlayer
/frameworks/av/libvideoeditor/lvpp/
H A DPreviewPlayer.cpp1103 status_t PreviewPlayer::prepare() { function in class:android::PreviewPlayer
1104 ALOGV("prepare");
1142 return UNKNOWN_ERROR; // async prepare already pending
1193 ALOGV("prepare was cancelled before doing anything");
H A DVideoEditorPlayer.cpp91 status_t VideoEditorPlayer::prepare() { function in class:android::VideoEditorPlayer
92 ALOGV("prepare");
93 return mPlayer->prepare();
/frameworks/av/media/libmedia/
H A DIMediaRecorder.cpp220 status_t prepare() function in class:android::BpMediaRecorder
222 ALOGV("prepare");
332 reply->writeInt32(prepare());
H A Dmediaplayer.cpp248 // that generated the error. The sync version of prepare returns only 1 error
250 status_t MediaPlayer::prepare() function in class:android::MediaPlayer
252 ALOGV("prepare");
267 mSignal.wait(mLock); // wait for prepare done
270 ALOGV("prepare complete - status=%d", mPrepareStatus);
505 // Can't change the stream type after prepare
657 // The threadId hack below works around this for the care of prepare
H A Dmediarecorder.cpp419 status_t MediaRecorder::prepare() function in class:android::MediaRecorder
421 ALOGV("prepare");
427 ALOGE("prepare called in an invalid state: %d", mCurrentState);
448 status_t ret = mMediaRecorder->prepare();
450 ALOGE("prepare failed: %d", ret);
/frameworks/av/media/libmediaplayerservice/
H A DMediaRecorderClient.cpp210 status_t MediaRecorderClient::prepare() function in class:android::MediaRecorderClient
212 ALOGV("prepare");
218 return mRecorder->prepare();
H A DMidiFile.cpp175 status_t MidiFile::prepare() function in class:android::MidiFile
177 ALOGV("MidiFile::prepare");
194 status_t ret = prepare();
H A DStagefrightPlayer.cpp79 status_t StagefrightPlayer::prepare() { function in class:android::StagefrightPlayer
80 return mPlayer->prepare();
H A DStagefrightRecorder.cpp733 status_t StagefrightRecorder::prepare() { function in class:android::StagefrightRecorder
H A DTestPlayerStub.h51 // p.prepare();
82 virtual status_t prepare() {return mPlayer->prepare();} function in class:android::TestPlayerStub
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDriver.cpp105 status_t NuPlayerDriver::prepare() { function in class:android::NuPlayerDriver
111 status_t err = prepare();
/frameworks/av/media/libstagefright/
H A DAwesomePlayer.cpp681 ALOGV("cache has reached EOS, prepare is done.");
716 ALOGV("cache has filled up (> %d), prepare is done",
736 ALOGV("cache has reached EOS, prepare is done.");
771 ALOGV("cache has filled up (%.2f secs), prepare is done",
1922 status_t AwesomePlayer::prepare() { function in class:android::AwesomePlayer
1956 return UNKNOWN_ERROR; // async prepare already pending
1965 return UNKNOWN_ERROR; // async prepare already pending
2205 ALOGI("prepare was cancelled before doing anything");
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteConnection.java480 * @param sql The SQL statement to prepare.
486 public void prepare(String sql, SQLiteStatementInfo outStatementInfo) { method in class:SQLiteConnection
491 final int cookie = mRecentOperations.beginOperation("prepare", sql, null);
877 // to be not only re-entrant but recursive!). So prepare a new copy of the
H A DSQLiteSession.java566 * @param sql The SQL statement to prepare.
576 public void prepare(String sql, int connectionFlags, CancellationSignal cancellationSignal, method in class:SQLiteSession
588 mConnection.prepare(sql, outStatementInfo); // might throw
/frameworks/base/core/java/android/net/
H A DVpnService.java69 * <p>There are two primary methods in this class: {@link #prepare} and
73 * An application must call {@link #prepare} to grant the right to use
77 * <li>When the user press the button to connect, call {@link #prepare}
141 public static Intent prepare(Context context) { method in class:VpnService
227 * @see #prepare
/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();
56 // sThreadLocal.get() will return null unless you've called prepare().
72 public static void prepare() { method in class:Looper
73 prepare(true);
76 private static void prepare(boolean quitAllowed) { method in class:Looper
87 * to call this function yourself. See also: {@link #prepare()}
90 prepare(false);
114 throw new RuntimeException("No Looper; Looper.prepare() was
[all...]
/frameworks/base/core/java/android/text/
H A DStaticLayout.java919 void prepare() { method in class:StaticLayout
/frameworks/base/libs/hwui/
H A DOpenGLRenderer.cpp168 status_t OpenGLRenderer::prepare(bool opaque) { function in class:android::uirenderer::OpenGLRenderer
/frameworks/base/media/java/android/media/
H A DMediaPlayer.java97 * {@link #stop()}, {@link #seekTo(int)}, {@link #prepare()} or
147 * thrown to prevent programming errors such as calling {@link #prepare()},
173 * either a call to {@link #prepare()} (synchronous) which
179 * until the preparation work completes. When the preparation completes or when {@link #prepare()} call returns,
189 * thrown if {@link #prepare()} or {@link #prepareAsync()} is called in
235 * until {@link #prepare()} or {@link #prepareAsync()} are called to set
336 * <tr><td>prepare </p></td>
375 * prepare() or prepareAsync().</p></td></tr>
759 * On success, {@link #prepare()} will already have been called and must not be called again.
774 * On success, {@link #prepare()} wil
1001 public native void prepare() throws IOException, IllegalStateException; method in class:MediaPlayer
[all...]
H A DMediaRecorder.java45 * recorder.prepare();
118 * called before this. Must call before prepare().
126 * before prepare() to make sure that the desirable preview display is
374 * This method should be called before prepare(). This method will not
399 * This method should be called before prepare(). The geodata is
432 * after setAudioSource()/setVideoSource() but before prepare().
440 * @throws IllegalStateException if it is called after prepare() or before
450 * prepare().
455 * prepare() or before setOutputFormat()
463 * prepare()
661 public void prepare() throws IllegalStateException, IOException method in class:MediaRecorder
[all...]
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DFilter.java158 protected void prepare(FilterContext context) { method in class:Filter
448 prepare(context);
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/base/
H A DCallbackFilter.java79 public void prepare(FilterContext context) { method in class:CallbackFilter
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
H A DAutoFixFilter.java201 protected void prepare(FilterContext context) { method in class:AutoFixFilter
H A DDrawOverlayFilter.java62 public void prepare(FilterContext context) { method in class:DrawOverlayFilter

Completed in 2826 milliseconds

12