Lines Matching defs:perf_gtk_handle
12 void *perf_gtk_handle;
23 if (perf_gtk_handle)
26 perf_gtk_handle = dlopen(PERF_GTK_DSO, RTLD_LAZY);
27 if (perf_gtk_handle == NULL) {
30 perf_gtk_handle = dlopen(buf, RTLD_LAZY);
32 if (perf_gtk_handle == NULL)
35 perf_ui_init = dlsym(perf_gtk_handle, "perf_gtk__init");
43 dlclose(perf_gtk_handle);
51 if (perf_gtk_handle == NULL)
54 perf_ui_exit = dlsym(perf_gtk_handle, "perf_gtk__exit");
61 dlclose(perf_gtk_handle);
63 perf_gtk_handle = NULL;