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

123

/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
H A DDrawOverlayFilter.java56 public void prepare(FilterContext context) { method in class:DrawOverlayFilter
H A DDrawRectFilter.java81 public void prepare(FilterContext context) { method in class:DrawRectFilter
H A DToPackedGrayFilter.java111 public void prepare(FilterContext context) { method in class:ToPackedGrayFilter
H A DAutoFixFilter.java198 protected void prepare(FilterContext context) { method in class:AutoFixFilter
/frameworks/base/tests/utils/SleepUtils/AlarmService/src/com/android/testing/alarmservice/
H A DAlarmImpl.java41 public int prepare() throws RemoteException { method in class:AlarmImpl
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
H A DRawTexture.java48 protected void prepare(GLCanvas canvas) { method in class:RawTexture
/frameworks/base/core/java/android/os/
H A DLooper.java27 * {@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() was
[all...]
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/base/
H A DCallbackFilter.java74 public void prepare(FilterContext context) { method in class:CallbackFilter
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DColumnAdapter.java55 public static void prepare(ListView list) { method in class:ColumnAdapter
/frameworks/av/media/libmediaplayerservice/
H A DTestPlayerStub.h51 // p.prepare();
84 virtual status_t prepare() {return mPlayer->prepare();} function in class:android::TestPlayerStub
H A DMediaRecorderClient.cpp210 status_t MediaRecorderClient::prepare() function in class:android::MediaRecorderClient
212 ALOGV("prepare");
218 return mRecorder->prepare();
H A DStagefrightPlayer.cpp81 status_t StagefrightPlayer::prepare() { function in class:android::StagefrightPlayer
82 return mPlayer->prepare();
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/ui/
H A DSurfaceRenderFilter.java109 public void prepare(FilterContext context) { method in class:SurfaceRenderFilter
H A DSurfaceTargetFilter.java115 public void prepare(FilterContext context) { method in class:SurfaceTargetFilter
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosrc/
H A DSurfaceTextureSource.java154 protected void prepare(FilterContext context) { method in class:SurfaceTextureSource
H A DSurfaceTextureTarget.java132 public void prepare(FilterContext context) { method in class:SurfaceTextureTarget
/frameworks/base/media/tests/players/
H A Dinvoke_mock_media_player.cpp79 virtual status_t prepare() { return OK; } function in class:__anon1050::Player
/frameworks/av/cmds/stagefright/
H A DSimplePlayer.cpp82 status_t SimplePlayer::prepare() { function in class:android::SimplePlayer
/frameworks/av/media/libmedia/
H A Dmediarecorder.cpp418 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/base/core/java/android/database/sqlite/
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/hardware/camera2/
H A DCameraCaptureSession.java93 * <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
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>
237 * the middle of being {@link #prepare prepare
[all...]
/frameworks/base/core/java/android/hardware/camera2/impl/
H A DCameraCaptureSessionImpl.java144 public void prepare(Surface surface) throws CameraAccessException { method in class:CameraCaptureSessionImpl
145 mDeviceImpl.prepare(surface);
H A DCameraConstrainedHighSpeedCaptureSessionImpl.java167 public void prepare(Surface surface) throws CameraAccessException { method in class:CameraConstrainedHighSpeedCaptureSessionImpl
168 mSessionImpl.prepare(surface);
/frameworks/base/core/java/android/net/
H A DVpnService.java80 * <p>There are two primary methods in this class: {@link #prepare} and
84 * An application must call {@link #prepare} to grant the right to use
88 * <li>When the user presses the button to connect, call {@link #prepare}
157 public static Intent prepare(Context context) { method in class:VpnService
169 * Version of {@link #prepare(Context)} which does not require user consent.
174 * <p>Once this is run, future preparations may be done with the standard prepare method as this
175 * will authorize the package to prepare the VPN without consent in the future.
184 // Only prepare if we're not already prepared.
357 * @see #prepare
/frameworks/base/core/java/android/view/
H A DHardwareLayer.java108 public boolean prepare(int width, int height, boolean isOpaque) { method in class:HardwareLayer

Completed in 2144 milliseconds

123