MCPcopy Create free account
hub / github.com/apache/impala / GetChildren

Method GetChildren

be/src/util/runtime-profile.cc:972–976  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

970}
971
972void RuntimeProfileBase::GetChildren(vector<RuntimeProfileBase*>* children) const {
973 children->clear();
974 lock_guard<SpinLock> l(children_lock_);
975 for (const auto& entry : children_) children->push_back(entry.first);
976}
977
978void RuntimeProfileBase::GetAllChildren(vector<RuntimeProfileBase*>* children) {
979 lock_guard<SpinLock> l(children_lock_);

Callers 3

QueryStateExpandedMethod · 0.45
TestEvictionPolicyMethod · 0.45
TESTFunction · 0.45

Calls 2

push_backMethod · 0.80
clearMethod · 0.65

Tested by 2

TestEvictionPolicyMethod · 0.36
TESTFunction · 0.36