| 97 | } |
| 98 | |
| 99 | bool InotifyTree::nodeExists(int wd) { |
| 100 | auto nodeIterator = mInotifyNodeByWatchDescriptor->find(wd); |
| 101 | return nodeIterator != mInotifyNodeByWatchDescriptor->end(); |
| 102 | } |
| 103 | |
| 104 | void InotifyTree::removeDirectory(int wd) { |
| 105 | auto nodeIterator = mInotifyNodeByWatchDescriptor->find(wd); |
no outgoing calls
no test coverage detected