| 234 | } |
| 235 | |
| 236 | void MountPointManager::apply(function<bool(const wchar_t*mountpoint, CryptThreadData*tdata)> f) |
| 237 | { |
| 238 | for (auto it = m_tdatas.begin(); it != m_tdatas.end(); ++it) { |
| 239 | if (!f(it->first.c_str(), it->second)) { |
| 240 | return; |
| 241 | } |
| 242 | } |
| 243 | } |
| 244 | |
| 245 | |
| 246 | int MountPointManager::get_open_handle_count(const wchar_t *mountpoint) |
no outgoing calls
no test coverage detected