Searched refs:path_fd_map_ (Results 1 – 2 of 2) sorted by relevance
133 path_fd_map_.insert(std::make_pair(path_id, std::move(fd))); in RegisterFilePath()176 auto fd_it = path_fd_map_.find(path_id); in UnregisterFilePath()177 DCHECK(fd_it != path_fd_map_.end()); in UnregisterFilePath()178 path_fd_map_.erase(fd_it); in UnregisterFilePath()185 auto it = path_fd_map_.find(path_id); in GetFdForPath()186 if (it == path_fd_map_.end()) { in GetFdForPath()477 size_t fd_count = path_fd_map_.size(); in Dump()479 for (auto it = path_fd_map_.begin(); it != path_fd_map_.end(); ++it) { in Dump()532 auto fd_it = path_fd_map_.find(path_id); in Dump()534 if (fd_it != path_fd_map_.end()) { in Dump()
172 std::unordered_map</*path_id*/size_t, android::base::unique_fd> path_fd_map_; variable