Home
last modified time | relevance | path

Searched refs:BLASTBufferQueue (Results 1 – 25 of 25) sorted by relevance

/aosp12/frameworks/base/core/jni/
H A Dandroid_graphics_BLASTBufferQueue.cpp72 sp<BLASTBufferQueue> queue = new BLASTBufferQueue(name.c_str()); in nativeCreate()
80 sp<BLASTBufferQueue> queue = in nativeCreateAndUpdate()
81 new BLASTBufferQueue(name.c_str(), reinterpret_cast<SurfaceControl*>(surfaceControl), in nativeCreateAndUpdate()
88 sp<BLASTBufferQueue> queue = reinterpret_cast<BLASTBufferQueue*>(ptr); in nativeDestroy()
94 sp<BLASTBufferQueue> queue = reinterpret_cast<BLASTBufferQueue*>(ptr); in nativeGetSurface()
100 sp<BLASTBufferQueue> queue = reinterpret_cast<BLASTBufferQueue*>(ptr); in nativeSetNextTransaction()
107 sp<BLASTBufferQueue> queue = reinterpret_cast<BLASTBufferQueue*>(ptr); in nativeUpdate()
115 sp<BLASTBufferQueue> queue = reinterpret_cast<BLASTBufferQueue*>(ptr); in nativeMergeWithNextTransaction()
123 sp<BLASTBufferQueue> queue = reinterpret_cast<BLASTBufferQueue*>(ptr); in nativeSetTransactionCompleteCallback()
136 sp<BLASTBufferQueue> queue = reinterpret_cast<BLASTBufferQueue*>(ptr); in nativeGetLastAcquiredFrameNum()
H A Dandroid_view_Surface.cpp307 sp<BLASTBufferQueue> queue = reinterpret_cast<BLASTBufferQueue*>(blastBufferQueueNativeObj); in nativeGetFromBlastBufferQueue()
/aosp12/frameworks/native/libs/gui/
H A DBLASTBufferQueue.cpp130 BLASTBufferQueue::BLASTBufferQueue(const std::string& name) in BLASTBufferQueue() function in android::BLASTBufferQueue
163 BLASTBufferQueue::BLASTBufferQueue(const std::string& name, const sp<SurfaceControl>& surface, in BLASTBufferQueue() function in android::BLASTBufferQueue
165 : BLASTBufferQueue(name) { in BLASTBufferQueue()
169 BLASTBufferQueue::~BLASTBufferQueue() { in ~BLASTBufferQueue()
248 sp<BLASTBufferQueue> bq = static_cast<BLASTBufferQueue*>(context); in transactionCommittedCallbackThunk()
299 sp<BLASTBufferQueue> bq = static_cast<BLASTBufferQueue*>(context); in transactionCallbackThunk()
389 void BLASTBufferQueue::flushShadowQueueLocked() { in flushShadowQueueLocked()
398 void BLASTBufferQueue::flushShadowQueue() { in flushShadowQueue()
466 void BLASTBufferQueue::acquireNextBufferLocked( in acquireNextBufferLocked()
624 void BLASTBufferQueue::acquireAndReleaseBuffer() { in acquireAndReleaseBuffer()
[all …]
H A DSurfaceControl.cpp142 mBbq = sp<BLASTBufferQueue>::make("bbq-adapter", mBbqChild, mWidth, mHeight, mFormat); in generateSurfaceLocked()
H A DAndroid.bp169 "BLASTBufferQueue.cpp",
/aosp12/frameworks/native/libs/gui/include/gui/
H A DBLASTBufferQueue.h35 class BLASTBufferQueue; variable
41 int bufferCount, bool controlledByApp, wp<BLASTBufferQueue> bbq) in BLASTBufferItemConsumer()
61 const wp<BLASTBufferQueue> mBLASTBufferQueue;
72 class BLASTBufferQueue
76 BLASTBufferQueue(const std::string& name);
77 BLASTBufferQueue(const std::string& name, const sp<SurfaceControl>& surface, int width,
117 virtual ~BLASTBufferQueue();
123 BLASTBufferQueue& operator = (const BLASTBufferQueue& rhs);
124 BLASTBufferQueue(const BLASTBufferQueue& rhs);
H A DSurfaceControl.h40 class BLASTBufferQueue; variable
119 mutable sp<BLASTBufferQueue> mBbq;
/aosp12/frameworks/base/graphics/java/android/graphics/
H A DBLASTBufferQueue.java26 public final class BLASTBufferQueue { class
56 public BLASTBufferQueue(String name, SurfaceControl sc, int width, int height, in BLASTBufferQueue() method in BLASTBufferQueue
61 public BLASTBufferQueue(String name) { in BLASTBufferQueue() method in BLASTBufferQueue
H A DOWNERS10 per-file BLASTBufferQueue.java = file:/services/core/java/com/android/server/wm/OWNERS
/aosp12/frameworks/base/services/core/java/com/android/server/wm/
H A DEmulatorDisplayOverlay.java23 import android.graphics.BLASTBufferQueue;
45 private final BLASTBufferQueue mBlastBufferQueue;
80 mBlastBufferQueue = new BLASTBufferQueue(TITLE, mSurfaceControl, mScreenSize.x, in EmulatorDisplayOverlay()
H A DStrictModeFlash.java22 import android.graphics.BLASTBufferQueue;
38 private final BLASTBufferQueue mBlastBufferQueue;
66 mBlastBufferQueue = new BLASTBufferQueue(TITLE, mSurfaceControl, 1 /* width */, in StrictModeFlash()
H A DWatermark.java21 import android.graphics.BLASTBufferQueue;
51 private final BLASTBufferQueue mBlastBufferQueue;
129 mBlastBufferQueue = new BLASTBufferQueue(TITLE, mSurfaceControl, 1 /* width */, in Watermark()
H A DAccessibilityController.java57 import android.graphics.BLASTBufferQueue;
1199 private final BLASTBufferQueue mBlastBufferQueue;
1224 mBlastBufferQueue = new BLASTBufferQueue(SURFACE_TITLE, mSurfaceControl, in ViewportWindow()
/aosp12/frameworks/base/services/core/java/com/android/server/display/
H A DColorFade.java22 import android.graphics.BLASTBufferQueue;
97 private BLASTBufferQueue mBLASTBufferQueue;
603 mBLASTBufferQueue = new BLASTBufferQueue("ColorFade", mBLASTSurfaceControl,
/aosp12/frameworks/base/core/java/android/view/
H A DSurface.java27 import android.graphics.BLASTBufferQueue;
634 public void copyFrom(BLASTBufferQueue queue) { in copyFrom()
H A DSurfaceView.java29 import android.graphics.BLASTBufferQueue;
254 private BLASTBufferQueue mBlastBufferQueue;
1356 mBlastBufferQueue = new BLASTBufferQueue(name); in createBlastSurfaceControls()
H A DViewRootImpl.java103 import android.graphics.BLASTBufferQueue;
586 private BLASTBufferQueue mBlastBufferQueue;
2018 mBlastBufferQueue = new BLASTBufferQueue(mTag, mSurfaceControl, in getOrCreateBLASTSurface()
/aosp12/frameworks/base/core/java/android/widget/
H A DMagnifier.java33 import android.graphics.BLASTBufferQueue;
943 private final BLASTBufferQueue mBBQ;
1024 mBBQ = new BLASTBufferQueue("magnifier surface", mBbqSurfaceControl, in InternalPopupWindow()
/aosp12/frameworks/base/core/java/android/service/wallpaper/
H A DWallpaperService.java44 import android.graphics.BLASTBufferQueue;
279 BLASTBufferQueue mBlastBufferQueue;
2037 mBlastBufferQueue = new BLASTBufferQueue("Wallpaper", mBbqSurfaceControl, in getOrCreateBLASTSurface()
/aosp12/frameworks/native/libs/gui/tests/
H A DBLASTBufferQueue_test.cpp72 mBlastBufferQueueAdapter = new BLASTBufferQueue("TestBLASTBufferQueue", sc, width, height, in BLASTBufferQueueHelper()
127 sp<BLASTBufferQueue> mBlastBufferQueueAdapter;
/aosp12/frameworks/base/boot/
H A Dboot-image-profile.txt6303 HSPLandroid/graphics/BLASTBufferQueue;-><init>(Ljava/lang/String;Landroid/view/SurfaceControl;III)V
6304 HSPLandroid/graphics/BLASTBufferQueue;->createSurface()Landroid/view/Surface;
6305 HSPLandroid/graphics/BLASTBufferQueue;->destroy()V
6306 HSPLandroid/graphics/BLASTBufferQueue;->finalize()V
6307 HSPLandroid/graphics/BLASTBufferQueue;->flushShadowQueue()V
6308 HSPLandroid/graphics/BLASTBufferQueue;->mergeWithNextTransaction(Landroid/view/SurfaceControl$Trans…
6309 HSPLandroid/graphics/BLASTBufferQueue;->update(Landroid/view/SurfaceControl;III)V
17211 HSPLandroid/view/Surface;->copyFrom(Landroid/graphics/BLASTBufferQueue;)V
18666 …/SurfaceControl$Transaction;J)V+]Landroid/graphics/BLASTBufferQueue;Landroid/graphics/BLASTBufferQ…
24745 Landroid/graphics/BLASTBufferQueue$TransactionCompleteCallback;
[all …]
H A Dpreloaded-classes1824 android.graphics.BLASTBufferQueue
/aosp12/frameworks/base/config/
H A Dboot-image-profile.txt6301 HSPLandroid/graphics/BLASTBufferQueue;-><init>(Ljava/lang/String;Landroid/view/SurfaceControl;III)V
6302 HSPLandroid/graphics/BLASTBufferQueue;->createSurface()Landroid/view/Surface;
6303 HSPLandroid/graphics/BLASTBufferQueue;->destroy()V
6304 HSPLandroid/graphics/BLASTBufferQueue;->finalize()V
6305 HSPLandroid/graphics/BLASTBufferQueue;->flushShadowQueue()V
6306 HSPLandroid/graphics/BLASTBufferQueue;->mergeWithNextTransaction(Landroid/view/SurfaceControl$Trans…
6307 HSPLandroid/graphics/BLASTBufferQueue;->update(Landroid/view/SurfaceControl;III)V
17260 HSPLandroid/view/Surface;->copyFrom(Landroid/graphics/BLASTBufferQueue;)V
18714 …/SurfaceControl$Transaction;J)V+]Landroid/graphics/BLASTBufferQueue;Landroid/graphics/BLASTBufferQ…
34382 Landroid/graphics/BLASTBufferQueue$TransactionCompleteCallback;
[all …]
H A Dpreloaded-classes1823 android.graphics.BLASTBufferQueue
/aosp12/frameworks/base/services/
H A Dart-profile17634 …/ColorFade$NaturalSurfaceLayout;]Landroid/graphics/BLASTBufferQueue;Landroid/graphics/BLASTBufferQ…
17639 …/ColorFade$NaturalSurfaceLayout;]Landroid/graphics/BLASTBufferQueue;Landroid/graphics/BLASTBufferQ…
47998 …w/Surface;Landroid/view/Surface;]Landroid/graphics/BLASTBufferQueue;Landroid/graphics/BLASTBufferQ…