| 1307 | } |
| 1308 | |
| 1309 | bool StreamIndexedIO::Node::hasChild( const IndexedIO::EntryID &name ) const |
| 1310 | { |
| 1311 | Index::MutexLock lock; |
| 1312 | m_idx->lockDirectory( lock, m_node ); |
| 1313 | DirectoryNode::ChildMap::const_iterator cit = m_node->findChild( name ); |
| 1314 | return cit != m_node->children().end(); |
| 1315 | } |
| 1316 | |
| 1317 | DirectoryNode* StreamIndexedIO::Node::directoryChild( const IndexedIO::EntryID &name ) const |
| 1318 | { |
no test coverage detected