Home
last modified time | relevance | path

Searched refs:findStart (Results 1 – 4 of 4) sorted by relevance

/openbmc/entity-manager/src/entity_manager/
H A Dutils.cpp99 std::ranges::subrange<std::string::const_iterator> findStart = in handleLeftOverTemplateVars() local
102 if (!findStart) in handleLeftOverTemplateVars()
108 strPtr->begin() + (findStart.end() - strPtr->begin()), in handleLeftOverTemplateVars()
129 "VAR", std::string(findStart.begin(), templateVarEnd)); in handleLeftOverTemplateVars()
130 strPtr->erase(findStart.begin(), templateVarEnd); in handleLeftOverTemplateVars()
H A Dconfiguration.cpp182 auto findStart = probe->find('('); in filterProbeInterfaces() local
183 if (findStart != std::string::npos) in filterProbeInterfaces()
185 std::string interface = probe->substr(0, findStart); in filterProbeInterfaces()
H A Dperform_probe.cpp153 auto findStart = probe.find('('); in doProbe() local
154 if (findStart == std::string::npos) in doProbe()
159 std::string probeInterface = probe.substr(0, findStart); in doProbe()
H A Dperform_scan.cpp704 auto findStart = probe.find('('); in run() local
705 std::string interface = probe.substr(0, findStart); in run()