Searched defs:Surface (Results 1 - 3 of 3) sorted by relevance

/frameworks/native/include/gui/
H A DSurface.h41 class Surface;
78 sp<Surface> getSurface() const;
86 friend class Surface;
104 mutable sp<Surface> mSurfaceData;
109 class Surface : public SurfaceTextureClient class in namespace:android
122 explicit Surface(const sp<ISurfaceTexture>& st);
124 static status_t writeToParcel(const sp<Surface>& control, Parcel* parcel);
126 static sp<Surface> readFromParcel(const Parcel& data);
127 static bool isValid(const sp<Surface>& surface) {
147 Surface
[all...]
/frameworks/native/libs/gui/
H A DSurface.cpp17 #define LOG_TAG "Surface"
39 #include <gui/Surface.h>
187 sp<Surface> SurfaceControl::getSurface() const
192 mSurfaceData = new Surface(surface_control);
198 // Surface
203 Surface::Surface(const sp<SurfaceControl>& surface) function in class:android::Surface
215 Surface::Surface(const Parcel& parcel, const sp<IBinder>& ref) function in class:android::Surface
231 Surface function in class:android::Surface
[all...]
/frameworks/base/core/java/android/view/
H A DSurface.java37 public class Surface implements Parcelable { class in inherits:Parcelable
38 private static final String TAG = "Surface";
43 public static final Parcelable.Creator<Surface> CREATOR =
44 new Parcelable.Creator<Surface>() {
45 public Surface createFromParcel(Parcel source) {
47 Surface s = new Surface();
56 public Surface[] newArray(int size) {
57 return new Surface[size];
101 * Surface creatio
286 public Surface() { method in class:Surface
314 public Surface(SurfaceSession session, method in class:Surface
353 public Surface(SurfaceTexture surfaceTexture) { method in class:Surface
[all...]

Completed in 49 milliseconds