Lines Matching refs:dso_handle
1952 void increment_dso_handle_reference_counter(void* dso_handle) {
1953 if (dso_handle == nullptr) {
1957 auto it = g_dso_handle_counters.find(dso_handle);
1961 soinfo* si = find_containing_library(dso_handle);
1967 "increment_dso_handle_reference_counter: Couldn't find soinfo by dso_handle=%p",
1968 dso_handle);
1970 g_dso_handle_counters[dso_handle] = 1U;
1974 void decrement_dso_handle_reference_counter(void* dso_handle) {
1975 if (dso_handle == nullptr) {
1979 auto it = g_dso_handle_counters.find(dso_handle);
1984 soinfo* si = find_containing_library(dso_handle);
1990 "decrement_dso_handle_reference_counter: Couldn't find soinfo by dso_handle=%p",
1991 dso_handle);