MCPcopy Create free account
hub / github.com/apache/trafficserver / Lookup

Method Lookup

src/cripts/Configs.cc:163–174  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

161}
162
163const Records *
164Records::Lookup(const cripts::string_view name)
165{
166 auto it = _gRecords.find(name);
167
168 if (it != _gRecords.end()) {
169 CAssert(it->second->Loaded());
170 return it->second;
171 }
172
173 return nullptr;
174}
175
176} // namespace cripts

Callers

nothing calls this directly

Calls 3

LoadedMethod · 0.80
findMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected