Home
last modified time | relevance | path

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

/ohos5.0/foundation/resourceschedule/ffrt/src/sched/
H A Dtask_client_adapter.h87 if (handle_1 != nullptr) { in Load()
96 handle_1 = dlopen(TRACE_LIB_PATH_1.c_str(), RTLD_NOW | RTLD_LOCAL); in Load()
97 if (handle_1 == nullptr) { in Load()
108 #define LOAD_FUNC(func) func##Func = reinterpret_cast<func##Type>(dlsym(handle_1, #func)); \ in Load()
128 if (handle_1 != nullptr) { in UnLoad()
129 if (dlclose(handle_1) != 0) { in UnLoad()
132 handle_1 = nullptr; in UnLoad()
142 void* handle_1 = nullptr; variable