Home
last modified time | relevance | path

Searched refs:swPatches (Results 1 – 3 of 3) sorted by relevance

/frameworks/av/services/audioflinger/
DPatchPanel.cpp819 std::vector <SoftwarePatch> swPatches; in notifyStreamOpened() local
820 getDownstreamSoftwarePatches(stream, &swPatches); in notifyStreamOpened()
821 if (swPatches.size() > 0) { in notifyStreamOpened()
822 auto iter = mPatches.find(swPatches[0].getPatchHandle()); in notifyStreamOpened()
DAudioFlinger.cpp1473 std::vector<PatchPanel::SoftwarePatch> swPatches; in forwardParametersToDownstreamPatches_l() local
1474 if (mPatchPanel.getDownstreamSoftwarePatches(upStream, &swPatches) != OK) return; in forwardParametersToDownstreamPatches_l()
1475 ALOGV_IF(!swPatches.empty(), "%s found %zu downstream patches for stream ID %d", in forwardParametersToDownstreamPatches_l()
1476 __func__, swPatches.size(), upStream); in forwardParametersToDownstreamPatches_l()
1477 for (const auto& swPatch : swPatches) { in forwardParametersToDownstreamPatches_l()
DThreads.cpp3554 std::vector<PatchPanel::SoftwarePatch> swPatches; in threadLoop() local
3558 if (mAudioFlinger->mPatchPanel.getDownstreamSoftwarePatches(id(), &swPatches) == OK in threadLoop()
3559 && swPatches.size() > 0) { in threadLoop()
3560 status = swPatches[0].getLatencyMs_l(&latencyMs); in threadLoop()
3561 downstreamPatchHandle = swPatches[0].getPatchHandle(); in threadLoop()