Home
last modified time | relevance | path

Searched refs:outSupported (Results 1 – 16 of 16) sorted by relevance

/aosp12/frameworks/native/libs/ui/
H A DGralloc3.cpp315 bool* outSupported) const { in isSupported()
326 if (outSupported) { in isSupported()
327 *outSupported = tmpSupported; in isSupported()
H A DGraphicBufferMapper.cpp188 uint64_t usage, bool* outSupported) { in isSupported() argument
189 return mMapper->isSupported(width, height, format, layerCount, usage, outSupported); in isSupported()
H A DGraphicBuffer.cpp351 bool* outSupported) const { in isSupported()
353 outSupported); in isSupported()
H A DGralloc4.cpp408 bool* outSupported) const { in isSupported()
419 if (outSupported) { in isSupported()
420 *outSupported = tmpSupported; in isSupported()
/aosp12/frameworks/native/libs/ui/include/ui/
H A DGralloc3.h64 uint32_t layerCount, uint64_t usage, bool* outSupported) const override;
H A DGraphicBuffer.h199 uint32_t inLayerCount, uint64_t inUsage, bool* outSupported) const;
H A DGraphicBufferMapper.h90 uint32_t layerCount, uint64_t usage, bool* outSupported);
H A DGralloc4.h68 uint64_t usage, bool* outSupported) const override;
/aosp12/frameworks/native/libs/gui/include/gui/
H A DISurfaceComposer.h184 std::vector<FrameEvent>* outSupported) const = 0;
339 virtual status_t getProtectedContentSupport(bool* outSupported) const = 0;
/aosp12/frameworks/native/libs/gui/
H A DISurfaceComposer.cpp181 status_t getSupportedFrameTimestamps(std::vector<FrameEvent>* outSupported) const override { in getSupportedFrameTimestamps()
182 if (!outSupported) { in getSupportedFrameTimestamps()
185 outSupported->clear(); in getSupportedFrameTimestamps()
217 outSupported->reserve(supported.size()); in getSupportedFrameTimestamps()
219 outSupported->push_back(static_cast<FrameEvent>(s)); in getSupportedFrameTimestamps()
731 status_t getProtectedContentSupport(bool* outSupported) const override { in getProtectedContentSupport()
739 error = reply.readBool(outSupported); in getProtectedContentSupport()
/aosp12/frameworks/native/libs/ui/include_vndk/ui/
H A DGraphicBuffer.h199 uint32_t inLayerCount, uint64_t inUsage, bool* outSupported) const;
H A DGraphicBufferMapper.h90 uint32_t layerCount, uint64_t usage, bool* outSupported);
/aosp12/hardware/qcom/display/msm8996/sdm/libs/hwc2/
H A Dhwc_session.h113 int32_t *outSupported);
/aosp12/frameworks/native/libs/gui/tests/
H A DSurface_test.cpp718 status_t getSupportedFrameTimestamps(std::vector<FrameEvent>* outSupported) in getSupportedFrameTimestamps()
720 *outSupported = { in getSupportedFrameTimestamps()
731 outSupported->push_back( in getSupportedFrameTimestamps()
/aosp12/frameworks/native/services/surfaceflinger/
H A DSurfaceFlinger.h630 status_t getSupportedFrameTimestamps(std::vector<FrameEvent>* outSupported) const override;
675 status_t getProtectedContentSupport(bool* outSupported) const override;
H A DSurfaceFlinger.cpp925 std::vector<FrameEvent>* outSupported) const { in getSupportedFrameTimestamps()
926 *outSupported = { in getSupportedFrameTimestamps()
939 outSupported->push_back(FrameEvent::DISPLAY_PRESENT); in getSupportedFrameTimestamps()
1471 status_t SurfaceFlinger::getProtectedContentSupport(bool* outSupported) const { in getProtectedContentSupport()
1472 if (!outSupported) { in getProtectedContentSupport()
1475 *outSupported = getRenderEngine().supportsProtectedContent(); in getProtectedContentSupport()