Home
last modified time | relevance | path

Searched refs:open_fd_map_ (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/core/jni/
Dfd_utils.cpp544 for (it = open_fd_map_.begin(); it != open_fd_map_.end(); ++it) { in ReopenOrDetach()
556 : open_fd_map_(std::move(map)) { in FileDescriptorTable()
573 std::unordered_map<int, std::unique_ptr<FileDescriptorInfo>>::iterator it = open_fd_map_.begin(); in RestatInternal()
574 while (it != open_fd_map_.end()) { in RestatInternal()
584 it = open_fd_map_.erase(it); in RestatInternal()
625 open_fd_map_[fd] = FileDescriptorInfo::CreateFromFd(fd, fail_fn); in RestatInternal()
Dfd_utils.h107 std::unordered_map<int, std::unique_ptr<FileDescriptorInfo>> open_fd_map_; variable