Home
last modified time | relevance | path

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

/bionic/linker/
Dlinker.cpp77 static std::unordered_map<void*, size_t> g_dso_handle_counters; variable
2070 auto it = g_dso_handle_counters.find(dso_handle); in increment_dso_handle_reference_counter()
2071 if (it != g_dso_handle_counters.end()) { in increment_dso_handle_reference_counter()
2083 g_dso_handle_counters[dso_handle] = 1U; in increment_dso_handle_reference_counter()
2092 auto it = g_dso_handle_counters.find(dso_handle); in decrement_dso_handle_reference_counter()
2093 CHECK(it != g_dso_handle_counters.end()); in decrement_dso_handle_reference_counter()
2106 g_dso_handle_counters.erase(it); in decrement_dso_handle_reference_counter()