MCPcopy Create free account
hub / github.com/Pagghiu/SaneCppLibraries / get

Method get

Libraries/Process/Process.cpp:304–317  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

302 return true;
303 }
304 }
305 return false;
306}
307
308bool SC::ProcessEnvironment::get(StringSpan variableName, StringSpan& value) const
309{
310 for (size_t idx = 0; idx < numberOfEnvironment; ++idx)
311 {
312 StringSpan name, variableValue;
313 SC_TRY(get(idx, name, variableValue));
314 if (name == variableName)
315 {
316 value = variableValue;
317 return true;
318 }
319 }
320 return false;

Callers 15

write_individual_dotsFunction · 0.45
check_dependenciesFunction · 0.45
fetch_urlMethod · 0.45
benchmark_crawlerMethod · 0.45
wait_for_serverFunction · 0.45
mainFunction · 0.45
visitFunction · 0.45
build_library_recordFunction · 0.45
write_regular_headerFunction · 0.45
processFileRecursivelyFunction · 0.45
aggregateRecordsFunction · 0.45

Calls 1

getFunction · 0.85

Tested by

no test coverage detected