| 129 | } |
| 130 | |
| 131 | void FsNode::removeChildByName(BString name) { |
| 132 | this->loadChildren(); |
| 133 | BOXEDWINE_CRITICAL_SECTION_WITH_MUTEX(this->childrenByNameMutex); |
| 134 | this->childrenByName.remove(name); |
| 135 | } |
| 136 | |
| 137 | void FsNode::getAllChildren(std::vector<std::shared_ptr<FsNode> > & results) { |
| 138 | this->loadChildren(); |
no test coverage detected