HomeSort by relevance Sort by last modified time
    Searched defs:prepare (Results 51 - 75 of 418) sorted by null

1 23 4 5 6 7 8 91011>>

  /cts/tests/tests/media/src/android/media/cts/
VideoSurfaceView.java 123 mMediaPlayer.prepare();
125 Log.e(TAG, "media player prepare failed");
  /cts/tests/tests/mediastress/src/android/mediastress/cts/
CodecTest.java 85 mp.prepare();
105 mp.prepare();
132 mp.prepare();
159 mp.prepare();
196 mp.prepare();
221 mp.prepare();
230 mp.prepare();
264 mMediaPlayer.prepare();
300 mMediaPlayer.prepare();
325 mp.prepare();
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
Section.java 42 /** whether {@link #prepare} has been called successfully on this
212 public final void prepare() { method in class:Section
227 * Does the main work of {@link #prepare}.
239 * Throws an exception if {@link #prepare} has not been
249 * Throws an exception if {@link #prepare} has already been called
  /dalvik/dx/src/com/android/dx/dex/file/
Section.java 41 /** whether {@link #prepare} has been called successfully on this
211 public final void prepare() { method in class:Section
226 * Does the main work of {@link #prepare}.
238 * Throws an exception if {@link #prepare} has not been
248 * Throws an exception if {@link #prepare} has already been called
  /development/samples/ApiDemos/src/com/example/android/apis/media/
MediaPlayerDemo_Audio.java 72 mMediaPlayer.prepare();
  /development/samples/RandomMusicPlayer/src/com/example/android/musicplayer/
MusicRetriever.java 31 * Retrieves and organizes media to play. Before being used, you must call {@link #prepare()},
54 public void prepare() { method in class:MusicRetriever
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
Section.java 42 /** whether {@link #prepare} has been called successfully on this
212 public final void prepare() { method in class:Section
227 * Does the main work of {@link #prepare}.
239 * Throws an exception if {@link #prepare} has not been
249 * Throws an exception if {@link #prepare} has already been called
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/
NamePrepTransform.java 99 public StringBuffer prepare(UCharacterIterator src, method in class:NamePrepTransform
102 return prepare(src.getText(),options);
121 public StringBuffer prepare(String src,int options) method in class:NamePrepTransform
  /external/javasqlite/src/main/java/SQLite/
Stmt.java 21 * Internal last error code for prepare()/step() methods.
27 * Prepare the next SQL statement for the Stmt instance.
32 public native boolean prepare() throws SQLite.Exception; method in class:Stmt
41 * Stmt s = db.prepare("select * from x; select * from y;");
50 * // s.prepare() for the next piece of SQL
51 * while (s.prepare()) {
  /external/llvm/lib/CodeGen/
SpillPlacement.cpp 369 void SpillPlacement::prepare(BitVector &RegBundles) { function in class:SpillPlacement
380 assert(ActiveNodes && "Call prepare() first");
  /external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/
NettyHttpClient.java 64 @Override public void prepare(final Benchmark benchmark) { method in class:NettyHttpClient
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
LooperTest.java 50 Looper.prepare();
  /frameworks/av/media/libmedia/
mediarecorder.cpp 418 status_t MediaRecorder::prepare() function in class:android::MediaRecorder
420 ALOGV("prepare");
426 ALOGE("prepare called in an invalid state: %d", mCurrentState);
447 status_t ret = mMediaRecorder->prepare();
449 ALOGE("prepare failed: %d", ret);
  /frameworks/av/media/libmediaplayerservice/
MediaRecorderClient.cpp 210 status_t MediaRecorderClient::prepare() function in class:android::MediaRecorderClient
212 ALOGV("prepare");
218 return mRecorder->prepare();
StagefrightPlayer.cpp 81 status_t StagefrightPlayer::prepare() { function in class:android::StagefrightPlayer
82 return mPlayer->prepare();
TestPlayerStub.h 51 // p.prepare();
84 virtual status_t prepare() {return mPlayer->prepare();} function in class:android::TestPlayerStub
  /frameworks/base/core/java/android/hardware/camera2/
CameraCaptureSession.java 93 * <p>The prepare() method can be used to perform this preallocation. It may only be called for
98 * prepare may result in higher memory consumption than the normal on-demand behavior results
99 * in. Prepare() will also delay the time to first output to a given Surface, in exchange for
106 * prepare() on the ImageReader Surface will result in all 10 Images being allocated. So
112 * used as a target of a capture request in the first session, prepare cannot be called on it
116 * the Surface provided to this method. Between the prepare call and the onSurfacePrepared call,
117 * the Surface provided to prepare must not be used as a target of a CaptureRequest submitted
139 public abstract void prepare(@NonNull Surface surface) throws CameraAccessException; method in class:CameraCaptureSession
160 * <p>A Surface that has had tearDown() called on it is eligible to have prepare() invoked on it
162 * doesn't get used as a target of a request between the tearDown() and prepare() calls.</p
    [all...]
  /frameworks/base/core/java/android/os/
Looper.java 27 * {@link #prepare} in the thread that is to run the loop, and then
34 * using the separation of {@link #prepare} and {@link #loop} to create an
42 * Looper.prepare();
67 // sThreadLocal.get() will return null unless you've called prepare().
82 public static void prepare() { method in class:Looper
83 prepare(true);
86 private static void prepare(boolean quitAllowed) { method in class:Looper
97 * to call this function yourself. See also: {@link #prepare()}
100 prepare(false);
125 throw new RuntimeException("No Looper; Looper.prepare() wasn't called on this thread.")
    [all...]
  /frameworks/base/core/java/android/view/
HardwareLayer.java 108 public boolean prepare(int width, int height, boolean isOpaque) { method in class:HardwareLayer
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
DrawRectFilter.java 81 public void prepare(FilterContext context) { method in class:DrawRectFilter
ToPackedGrayFilter.java 111 public void prepare(FilterContext context) { method in class:ToPackedGrayFilter
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/
CodecTest.java 94 mp.prepare();
114 mp.prepare();
146 mp.prepare();
173 mp.prepare();
210 mp.prepare();
235 mp.prepare();
244 mp.prepare();
278 mMediaPlayer.prepare();
314 mMediaPlayer.prepare();
339 mp.prepare();
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/mediarecorder/
MediaRecorderTest.java 103 Log.v(TAG, "prepare");
104 mRecorder.prepare();
148 /* Test: getSurface() before prepare()
158 recorder.prepare();
160 /* Test: getSurface() after prepare()
257 recorder.prepare();
361 mMediaRecorder.prepare();
395 Log.v(TAG, "prepare");
396 mRecorder.prepare();
418 Log.v(TAG, "before player prepare");
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/power/
MediaPlayerPowerTest.java 53 mp.prepare();
  /frameworks/base/media/tests/players/
invoke_mock_media_player.cpp 79 virtual status_t prepare() { return OK; } function in class:__anon22716::Player

Completed in 964 milliseconds

1 23 4 5 6 7 8 91011>>