Searched refs:g_poll_node_map (Results 1 - 1 of 1) sorted by relevance

/system/core/adb/
H A Dfdevent.cpp72 static auto& g_poll_node_map = *new std::unordered_map<int, PollNode>(); variable
150 auto pair = g_poll_node_map.emplace(fde->fd, PollNode(fde));
159 g_poll_node_map.erase(fde->fd);
173 auto it = g_poll_node_map.find(fde->fd);
174 CHECK(it != g_poll_node_map.end());
237 for (const auto& pair : g_poll_node_map) {
269 auto it = g_poll_node_map.find(pollfd.fd);
270 CHECK(it != g_poll_node_map.end());
309 auto it = g_poll_node_map.find(subproc_fd);
310 if (it == g_poll_node_map
[all...]

Completed in 17 milliseconds