Home
last modified time | relevance | path

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

1234

/frameworks/native/services/surfaceflinger/CompositionEngine/src/
DOutput.cpp58 Output::~Output() = default;
97 std::shared_ptr<Output> createOutput( in createOutput()
99 return createOutputTemplated<Output>(compositionEngine); in createOutput()
102 Output::~Output() = default;
104 bool Output::isValid() const { in isValid()
109 std::optional<DisplayId> Output::getDisplayId() const { in getDisplayId()
113 const std::string& Output::getName() const { in getName()
117 void Output::setName(const std::string& name) { in setName()
121 void Output::setCompositionEnabled(bool enabled) { in setCompositionEnabled()
131 void Output::setLayerCachingEnabled(bool enabled) { in setLayerCachingEnabled()
[all …]
DDisplay.cpp64 return Output::isValid() && mPowerAdvisor; in isValid()
96 Output::setColorTransform(args); in setColorTransform()
125 Output::setColorProfile(colorProfile); in setColorProfile()
139 Output::dumpBase(out); in dump()
171 Output::setReleasedLayers(refreshArgs); in setReleasedLayers()
181 compositionengine::Output::ReleasedLayers releasedLayers; in setReleasedLayers()
225 Output::beginFrame(); in beginFrame()
363 compositionengine::Output::FrameFences Display::presentAndGetFrameFences() { in presentAndGetFrameFences()
364 auto fences = impl::Output::presentAndGetFrameFences(); in presentAndGetFrameFences()
408 Output::setExpensiveRenderingExpected(enabled); in setExpensiveRenderingExpected()
[all …]
/frameworks/compile/mclinker/lib/Object/
DSectionMap.cpp74 SectionMap::Output::Output(const std::string& pName) in Output() function in mcld::SectionMap::Output
95 SectionMap::Output::Output(const OutputSectDesc& pOutputDesc) in Output() function in mcld::SectionMap::Output
107 bool SectionMap::Output::hasContent() const { in hasContent()
111 SectionMap::Output::const_dot_iterator
112 SectionMap::Output::find_first_explicit_dot() const { in find_first_explicit_dot()
120 SectionMap::Output::dot_iterator SectionMap::Output::find_first_explicit_dot() { in find_first_explicit_dot()
128 SectionMap::Output::const_dot_iterator
129 SectionMap::Output::find_last_explicit_dot() const { in find_last_explicit_dot()
142 SectionMap::Output::dot_iterator SectionMap::Output::find_last_explicit_dot() { in find_last_explicit_dot()
162 Output::iterator in, inBegin = (*out)->begin(), inEnd = (*out)->end(); in ~SectionMap()
[all …]
/frameworks/native/services/surfaceflinger/CompositionEngine/mock/
DOutput.cpp23 Output::Output() = default;
24 Output::~Output() = default;
/frameworks/av/media/img_utils/src/
DOutput.cpp23 Output::~Output() {} in ~Output()
24 status_t Output::open() { return OK; } in open()
25 status_t Output::close() { return OK; } in close()
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/impl/
DOutput.h39 class Output : public virtual compositionengine::Output {
41 Output() = default;
42 ~Output() override;
87 compositionengine::Output::CoverageState&) override;
89 compositionengine::Output::CoverageState&) override;
137 compositionengine::Output::FrameFences presentAndGetFrameFences() override;
162 compositionengine::Output::ColorProfile pickColorProfile(
187 class Output final : public BaseOutput { in createOutputTemplated()
200 explicit Output(const CompositionEngine& compositionEngine, Args... args) in createOutputTemplated()
202 ~Output() override = default; in createOutputTemplated()
[all …]
DOutputLayer.h100 std::unique_ptr<BaseOutputLayer> createOutputLayerTemplated(const Output& output, in createOutputLayerTemplated()
110 using Output = std::remove_const_t< in createOutputLayerTemplated() local
117 OutputLayer(const Output& output, const sp<LayerFE>& layerFE) in createOutputLayerTemplated()
123 const Output& getOutput() const override { return mOutput; } in createOutputLayerTemplated()
131 const Output& mOutput; in createOutputLayerTemplated()
139 std::unique_ptr<OutputLayer> createOutputLayer(const compositionengine::Output&,
DDisplay.h43 class Display : public compositionengine::impl::Output, public virtual compositionengine::Display {
51 using compositionengine::impl::Output::setReleasedLayers;
62 compositionengine::Output::FrameFences presentAndGetFrameFences() override;
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/impl/planner/
DPlanner.h57 compositionengine::Output::OutputLayersEnumerator<compositionengine::Output>&& layers);
62 compositionengine::Output::OutputLayersEnumerator<compositionengine::Output>&& layers);
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/mock/
DOutput.h31 class Output : public virtual compositionengine::Output {
33 Output();
34 virtual ~Output();
89 compositionengine::Output::CoverageState&));
91 void(sp<compositionengine::LayerFE>&, compositionengine::Output::CoverageState&));
125 MOCK_METHOD0(presentAndGetFrameFences, compositionengine::Output::FrameFences());
/frameworks/compile/mclinker/include/mcld/Object/
DSectionMap.h62 class Output {
74 explicit Output(const std::string& pName);
75 explicit Output(const OutputSectDesc& pOutputDesc);
140 bool operator()(const Output* LHS, const Output* RHS) const { in operator()
145 typedef std::pair<const Output*, const Input*> const_mapping;
146 typedef std::pair<Output*, Input*> mapping;
148 typedef std::vector<Output*> OutputDescList;
/frameworks/native/libs/binder/rust/src/
Dbinder_async.rs22 pub type BoxFuture<'a, T> = Pin<Box<dyn Future<Output = T> + Send + 'a>>;
48 Fut: Future<Output = Result<B, E>>, in spawn() argument
60 fn block_on<F: Future>(&self, future: F) -> F::Output; in block_on() argument
/frameworks/av/media/img_utils/include/img_utils/
DOutput.h30 class ANDROID_API Output {
32 virtual ~Output();
DTiffWriter.h40 class Output; variable
93 virtual status_t write(Output* out, StripSource** sources, size_t sourcesCount,
107 virtual status_t write(Output* out, Endianness end = LITTLE);
DEndianUtils.h55 class ANDROID_API EndianOutput : public Output {
61 explicit EndianOutput(Output* out, Endianness end=LITTLE);
127 Output* mOutput;
DStripSource.h42 virtual status_t writeToStream(Output& stream, uint32_t count) = 0;
/frameworks/compile/mclinker/include/mcld/Script/
DOperand.h159 explicit SectDescOperand(const SectionMap::Output* pOutputDesc);
164 const SectionMap::Output* outputDesc() const { return m_pOutputDesc; } in outputDesc()
176 static SectDescOperand* create(const SectionMap::Output* pOutputDesc);
181 const SectionMap::Output* m_pOutputDesc;
/frameworks/native/libs/binder/rust/binder_tokio/
Dlib.rs91 Fut: Future<Output = Result<B, E>>, in spawn() argument
128 fn block_on<F: Future>(&self, future: F) -> F::Output { in block_on() argument
134 fn block_on<F: Future>(&self, future: F) -> F::Output { in block_on() argument
140 fn block_on<F: Future>(&self, future: F) -> F::Output { in block_on() argument
/frameworks/native/services/surfaceflinger/CompositionEngine/tests/
DCompositionEngineTest.cpp47 std::shared_ptr<mock::Output> mOutput1{std::make_shared<StrictMock<mock::Output>>()};
48 std::shared_ptr<mock::Output> mOutput2{std::make_shared<StrictMock<mock::Output>>()};
49 std::shared_ptr<mock::Output> mOutput3{std::make_shared<StrictMock<mock::Output>>()};
/frameworks/av/media/libstagefright/include/media/stagefright/
DMediaCodecSource.h153 struct Output { struct
154 Output();
160 Mutexed<Output> mOutput;
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/
DOutputLayer.h50 class Output; variable
67 virtual const Output& getOutput() const = 0;
/frameworks/compile/mclinker/lib/Script/
DScriptParser.yy152 /* Output Section Data */
159 /* Output Section Discarding */
161 /* Output Section Keywords */
164 /* Output Section Attributes */
165 /* Output Section Type */
171 /* Output Section LMA */
175 /* Output Section Constraint */
384 /* Output Section Attributes */
423 /* Forced Output Alignment */
482 data values to include directly (see Output Section Data)
[all …]
DScriptScanner.ll141 /* Output Section Data */
148 /* Output Section Discarding */
150 /* Output Section Keywords */
153 /* Output Section Attributes */
154 /* Output Section Type */
160 /* Output Section LMA */
164 /* Output Section Constraint */
/frameworks/native/services/surfaceflinger/CompositionEngine/src/planner/
DPlanner.cpp85 compositionengine::Output::OutputLayersEnumerator<compositionengine::Output>&& layers) { in plan()
167 compositionengine::Output::OutputLayersEnumerator<compositionengine::Output>&& layers) { in reportFinalPlan()
/frameworks/opt/setupwizard/tools/gradle/
Ddist-library-instrumentation-tests.gradle21 // Output all test APKs to the distribution folder.
29 // Output all library AARs to the distribution folder

1234