| 956 | } |
| 957 | |
| 958 | void RuntimeProfile::PrependChild(RuntimeProfileBase* child, bool indent) { |
| 959 | lock_guard<SpinLock> l(children_lock_); |
| 960 | AddChildLocked(child, indent, children_.begin()); |
| 961 | } |
| 962 | |
| 963 | RuntimeProfile* RuntimeProfile::CreateChild( |
| 964 | const string& name, bool indent, bool prepend, bool add_default_counters) { |