OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:SurfaceControl
(Results
1 - 12
of
12
) sorted by null
/frameworks/native/include/gui/
SurfaceControl.h
42
class
SurfaceControl
: public RefBase
45
static bool isValid(const sp<
SurfaceControl
>& surface) {
54
const sp<
SurfaceControl
>& lhs, const sp<
SurfaceControl
>& rhs);
72
const sp<
SurfaceControl
>& control, Parcel* parcel);
78
SurfaceControl
& operator = (
SurfaceControl
& rhs);
79
SurfaceControl
(const
SurfaceControl
& rhs);
84
SurfaceControl
(
[
all
...]
/frameworks/base/services/java/com/android/server/display/
DisplayDevice.java
22
import android.view.
SurfaceControl
;
126
SurfaceControl
.setDisplayLayerStack(mDisplayToken, layerStack);
159
SurfaceControl
.setDisplayProjection(mDisplayToken,
170
SurfaceControl
.setDisplaySurface(mDisplayToken, surface);
/frameworks/native/libs/gui/
SurfaceControl.cpp
17
#define LOG_TAG "
SurfaceControl
"
40
#include <gui/
SurfaceControl
.h>
45
//
SurfaceControl
48
SurfaceControl
::
SurfaceControl
(
56
SurfaceControl
::~
SurfaceControl
()
61
void
SurfaceControl
::destroy()
74
void
SurfaceControl
::clear()
85
bool
SurfaceControl
::isSameSurface
[
all
...]
/frameworks/base/services/java/com/android/server/wm/
DimLayer.java
10
import android.view.
SurfaceControl
;
22
SurfaceControl
mDimSurface;
59
SurfaceControl
.openTransaction();
65
SurfaceControl
.FX_SURFACE_DIM |
SurfaceControl
.HIDDEN);
67
mDimSurface = new
SurfaceControl
(service.mFxSession, TAG,
69
SurfaceControl
.FX_SURFACE_DIM |
SurfaceControl
.HIDDEN);
78
SurfaceControl
.closeTransaction();
WindowAnimator.java
23
import android.view.
SurfaceControl
;
474
SurfaceControl
.openTransaction();
475
SurfaceControl
.setAnimationTransaction();
537
SurfaceControl
.closeTransaction();
DragState.java
37
import android.view.
SurfaceControl
;
49
SurfaceControl
mSurfaceControl;
68
DragState(WindowManagerService service, IBinder token,
SurfaceControl
surface,
298
SurfaceControl
.openTransaction();
305
SurfaceControl
.closeTransaction();
Session.java
44
import android.view.
SurfaceControl
;
318
final
SurfaceControl
surfaceControl
= mService.mDragState.mSurfaceControl;
321
SurfaceControl
.openTransaction();
323
surfaceControl
.setPosition(touchX - thumbCenterX,
325
surfaceControl
.setAlpha(.7071f);
326
surfaceControl
.setLayer(mService.mDragState.getDragLayerLw());
327
surfaceControl
.setLayerStack(display.getLayerStack());
328
surfaceControl
.show();
330
SurfaceControl
.closeTransaction()
[
all
...]
ScreenRotationAnimation.java
32
import android.view.
SurfaceControl
;
49
SurfaceControl
mSurfaceControl;
239
SurfaceControl
.openTransaction();
247
PixelFormat.OPAQUE,
SurfaceControl
.HIDDEN);
251
mSurfaceControl = new
SurfaceControl
(session, "ScreenshotSurface",
253
PixelFormat.OPAQUE,
SurfaceControl
.HIDDEN);
259
SurfaceControl
.screenshot(
SurfaceControl
.getBuiltInDisplay(
260
SurfaceControl
.BUILT_IN_DISPLAY_ID_MAIN), sur);
277
SurfaceControl
.closeTransaction()
[
all
...]
WindowStateAnimator.java
33
import android.view.
SurfaceControl
;
83
SurfaceControl
mSurfaceControl;
84
SurfaceControl
mPendingDestroySurface;
479
static class SurfaceTrace extends
SurfaceControl
{
624
SurfaceControl
createSurfaceLocked() {
642
int flags =
SurfaceControl
.HIDDEN;
646
flags |=
SurfaceControl
.SECURE;
682
flags |=
SurfaceControl
.OPAQUE;
690
mSurfaceControl = new
SurfaceControl
(
728
SurfaceControl
.openTransaction()
[
all
...]
WindowManagerService.java
122
import android.view.
SurfaceControl
;
804
SurfaceControl
.openTransaction();
810
SurfaceControl
.closeTransaction();
[
all
...]
/frameworks/base/services/java/com/android/server/power/
ElectronBeam.java
40
import android.view.
SurfaceControl
;
85
private
SurfaceControl
mSurfaceControl;
396
SurfaceControl
.screenshot(
SurfaceControl
.getBuiltInDisplay(
397
SurfaceControl
.BUILT_IN_DISPLAY_ID_MAIN), s);
506
SurfaceControl
.openTransaction();
512
flags =
SurfaceControl
.FX_SURFACE_DIM |
SurfaceControl
.HIDDEN;
514
flags =
SurfaceControl
.OPAQUE |
SurfaceControl
.HIDDEN
[
all
...]
/frameworks/base/core/java/android/view/
SurfaceControl.java
30
*
SurfaceControl
33
public class
SurfaceControl
{
34
private static final String TAG = "
SurfaceControl
";
73
IBinder displayToken,
SurfaceControl
.PhysicalDisplayInfo outInfo);
181
* Use only with {@link
SurfaceControl
#getBuiltInDisplay()}.
187
* Use only with {@link
SurfaceControl
#getBuiltInDisplay()}.
214
* @throws throws OutOfResourcesException If the
SurfaceControl
cannot be created.
216
public
SurfaceControl
(SurfaceSession session,
226
if ((flags &
SurfaceControl
.HIDDEN) == 0) {
241
"Couldn't allocate
SurfaceControl
native object")
[
all
...]
Completed in 397 milliseconds