Home
last modified time | relevance | path

Searched refs:mOutput2 (Results 1 – 5 of 5) sorted by relevance

/aosp12/frameworks/native/services/surfaceflinger/CompositionEngine/tests/
H A DCompositionEngineTest.cpp48 std::shared_ptr<mock::Output> mOutput2{std::make_shared<StrictMock<mock::Output>>()}; member
108 EXPECT_CALL(*mOutput2, prepare(Ref(mRefreshArgs), _)); in TEST_F()
114 EXPECT_CALL(*mOutput2, updateLayerStateFromFE(Ref(mRefreshArgs))); in TEST_F()
119 EXPECT_CALL(*mOutput2, present(Ref(mRefreshArgs))); in TEST_F()
122 mRefreshArgs.outputs = {mOutput1, mOutput2, mOutput3}; in TEST_F()
144 EXPECT_CALL(*mOutput2, getOutputLayerCount()).WillRepeatedly(Return(1u)); in CompositionEngineUpdateCursorAsyncTest()
145 EXPECT_CALL(*mOutput2, getOutputLayerOrderedByZByIndex(0)) in CompositionEngineUpdateCursorAsyncTest()
169 mRefreshArgs.outputs = {mOutput1, mOutput2, mOutput3}; in TEST_F()
196 mRefreshArgs.outputs = {mOutput1, mOutput2, mOutput3}; in TEST_F()
/aosp12/frameworks/av/services/audiopolicy/common/managerdefinitions/src/
H A DAudioOutputDescriptor.cpp289 mOutput1(0), mOutput2(0), mDirectOpenCount(0), in SwAudioOutputDescriptor()
308 devices.merge(mOutput2->devices()); in devices()
318 return mOutput1->sharesHwModuleWith(outputDesc) || mOutput2->sharesHwModuleWith(outputDesc); in sharesHwModuleWith()
331 supportedDevices.merge(mOutput2->supportedDevices()); in supportedDevices()
364 || mOutput2->devicesSupportEncodedFormats(deviceTypes)); in devicesSupportEncodedFormats()
375 mOutput2->containsSingleDeviceSupportingEncodedFormats(device)); in containsSingleDeviceSupportingEncodedFormats()
383 return (mOutput1->mLatency > mOutput2->mLatency) ? mOutput1->mLatency : mOutput2->mLatency; in latency()
394 mOutput2->setClientActive(client, active); in setClientActive()
590 status = mOutput2->start(); in start()
610 mOutput2->stop(); in stop()
[all …]
/aosp12/frameworks/av/services/audiopolicy/common/managerdefinitions/include/
H A DAudioOutputDescriptor.h344 virtual bool isDuplicated() const { return (mOutput1 != NULL && mOutput2 != NULL); } in isDuplicated()
347 sp<SwAudioOutputDescriptor> subOutput2() { return mOutput2; } in subOutput2()
423 sp<SwAudioOutputDescriptor> mOutput2; // used by duplicated outputs: second output variable
/aosp12/hardware/libhardware_legacy/include/hardware_legacy/
H A DAudioPolicyManagerBase.h261 bool isDuplicated() const { return (mOutput1 != NULL && mOutput2 != NULL); } in isDuplicated()
283 AudioOutputDescriptor *mOutput2; // used by duplicated outputs: second output variable
/aosp12/frameworks/av/services/audiopolicy/managerdefault/
H A DAudioPolicyManager.cpp5644 (dupOutput->mOutput1 == closingOutput || dupOutput->mOutput2 == closingOutput)) { in closeOutput()
5646 dupOutput->mOutput1 == closingOutput ? dupOutput->mOutput2 : dupOutput->mOutput1; in closeOutput()