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.cpp531 for (it = open_fd_map_.begin(); it != open_fd_map_.end(); ++it) { in ReopenOrDetach()
543 : open_fd_map_(map) { in FileDescriptorTable()
547 for (auto& it : open_fd_map_) { in ~FileDescriptorTable()
564 std::unordered_map<int, FileDescriptorInfo*>::iterator it = open_fd_map_.begin(); in RestatInternal()
565 while (it != open_fd_map_.end()) { in RestatInternal()
575 it = open_fd_map_.erase(it); in RestatInternal()
617 open_fd_map_[fd] = FileDescriptorInfo::CreateFromFd(fd, fail_fn); in RestatInternal()
Dfd_utils.h106 std::unordered_map<int, FileDescriptorInfo*> open_fd_map_; variable