Home
last modified time | relevance | path

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

/frameworks/av/services/audiopolicy/
DAudioPolicyManager.cpp498 sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output); in updateCallRouting() local
499 ALOG_ASSERT(!outputDesc->isDuplicated(), in updateCallRouting()
501 outputDesc->toAudioPortConfig(&patch.sources[1]); in updateCallRouting()
541 sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output); in updateCallRouting() local
542 ALOG_ASSERT(!outputDesc->isDuplicated(), in updateCallRouting()
544 outputDesc->toAudioPortConfig(&patch.sources[1]); in updateCallRouting()
885 sp<AudioOutputDescriptor> outputDesc = new AudioOutputDescriptor(NULL); in getOutputForDevice() local
886 outputDesc->mDevice = mTestDevice; in getOutputForDevice()
887 outputDesc->mLatency = mTestLatencyMs; in getOutputForDevice()
888 outputDesc->mFlags = in getOutputForDevice()
[all …]
DAudioPolicyManager.h455 bool sharesHwModuleWith(const sp<AudioOutputDescriptor> outputDesc);
546 void addOutput(audio_io_handle_t output, sp<AudioOutputDescriptor> outputDesc);
711 uint32_t checkDeviceMuteStrategies(sp<AudioOutputDescriptor> outputDesc,
/frameworks/av/media/libmedia/
DAudioSystem.cpp264 OutputDescriptor *outputDesc; in getSamplingRate() local
267 outputDesc = AudioSystem::gOutputs.valueFor(output); in getSamplingRate()
268 if (outputDesc == NULL) { in getSamplingRate()
276 *samplingRate = outputDesc->samplingRate; in getSamplingRate()
308 OutputDescriptor *outputDesc; in getFrameCount() local
311 outputDesc = AudioSystem::gOutputs.valueFor(output); in getFrameCount()
312 if (outputDesc == NULL) { in getFrameCount()
318 *frameCount = outputDesc->frameCount; in getFrameCount()
350 OutputDescriptor *outputDesc; in getLatency() local
353 outputDesc = AudioSystem::gOutputs.valueFor(output); in getLatency()
[all …]
/frameworks/compile/mclinker/lib/Script/
DUnaryOp.cpp80 sect = llvm::cast<SectDescOperand>(m_pOperand)->outputDesc()->getSection(); in eval()
102 sect = llvm::cast<SectDescOperand>(m_pOperand)->outputDesc()->getSection(); in eval()
179 sect = llvm::cast<SectDescOperand>(m_pOperand)->outputDesc()->getSection(); in eval()
/frameworks/compile/mclinker/include/mcld/Script/
DOperand.h178 const SectionMap::Output* outputDesc() const { return m_pOutputDesc; } in outputDesc() function