Lines Matching refs:dupOutputDesc
1990 AudioOutputDescriptor *dupOutputDesc = new AudioOutputDescriptor(NULL); in checkOutputsForDevice() local
1991 dupOutputDesc->mOutput1 = mOutputs.valueFor(mPrimaryOutput); in checkOutputsForDevice()
1992 dupOutputDesc->mOutput2 = mOutputs.valueFor(output); in checkOutputsForDevice()
1993 dupOutputDesc->mSamplingRate = desc->mSamplingRate; in checkOutputsForDevice()
1994 dupOutputDesc->mFormat = desc->mFormat; in checkOutputsForDevice()
1995 dupOutputDesc->mChannelMask = desc->mChannelMask; in checkOutputsForDevice()
1996 dupOutputDesc->mLatency = desc->mLatency; in checkOutputsForDevice()
1997 addOutput(duplicatedOutput, dupOutputDesc); in checkOutputsForDevice()
2255 AudioOutputDescriptor *dupOutputDesc = mOutputs.valueAt(i); in closeOutput() local
2256 if (dupOutputDesc->isDuplicated() && in closeOutput()
2257 (dupOutputDesc->mOutput1 == outputDesc || in closeOutput()
2258 dupOutputDesc->mOutput2 == outputDesc)) { in closeOutput()
2260 if (dupOutputDesc->mOutput1 == outputDesc) { in closeOutput()
2261 outputDesc2 = dupOutputDesc->mOutput2; in closeOutput()
2263 outputDesc2 = dupOutputDesc->mOutput1; in closeOutput()
2270 int refCount = dupOutputDesc->mRefCount[j]; in closeOutput()