Home
last modified time | relevance | path

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

/bionic/linker/
Dlinker.cpp82 static std::unordered_map<void*, size_t> g_dso_handle_counters; variable
2004 auto it = g_dso_handle_counters.find(dso_handle); in increment_dso_handle_reference_counter()
2005 if (it != g_dso_handle_counters.end()) { in increment_dso_handle_reference_counter()
2017 g_dso_handle_counters[dso_handle] = 1U; in increment_dso_handle_reference_counter()
2026 auto it = g_dso_handle_counters.find(dso_handle); in decrement_dso_handle_reference_counter()
2027 CHECK(it != g_dso_handle_counters.end()); in decrement_dso_handle_reference_counter()
2040 g_dso_handle_counters.erase(it); in decrement_dso_handle_reference_counter()