Home
last modified time | relevance | path

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

/frameworks/av/services/audioflinger/
DAudioFlinger.cpp1438 std::vector<PatchPanel::SoftwarePatch> swPatches; in forwardParametersToDownstreamPatches_l() local
1439 if (mPatchPanel.getDownstreamSoftwarePatches(upStream, &swPatches) != OK) return; in forwardParametersToDownstreamPatches_l()
1440 ALOGV_IF(!swPatches.empty(), "%s found %zu downstream patches for stream ID %d", in forwardParametersToDownstreamPatches_l()
1441 __func__, swPatches.size(), upStream); in forwardParametersToDownstreamPatches_l()
1442 for (const auto& swPatch : swPatches) { in forwardParametersToDownstreamPatches_l()
DThreads.cpp3352 std::vector<PatchPanel::SoftwarePatch> swPatches; in threadLoop() local
3356 if (mAudioFlinger->mPatchPanel.getDownstreamSoftwarePatches(id(), &swPatches) == OK in threadLoop()
3357 && swPatches.size() > 0) { in threadLoop()
3358 status = swPatches[0].getLatencyMs_l(&latencyMs); in threadLoop()
3359 downstreamPatchHandle = swPatches[0].getPatchHandle(); in threadLoop()