Lines Matching refs:handle2
71 void* handle2 = dlopen_ns(&dlns1, dllName, RTLD_NOW);
72 if(!handle2)
75 if (handle1 != handle2)
81 if(dlclose(handle2))
100 void* handle2 = dlopen_ns(&dlns2, dllName, RTLD_NOW);
101 if(!handle2)
104 if (handle1 == handle2)
110 if(dlclose(handle2))
130 void* handle2 = dlopen_ns(&dlns2, dllName, RTLD_NOW);
131 if(!handle2)
134 if (handle1 != handle2)
140 if(dlclose(handle2))
196 void* handle2 = dlopen_ns(&inherit_A, dllName, RTLD_LAZY);
197 if(!handle2)
200 if(dlclose(handle2))
207 t_error("dlopen_ns_by_ini_no_inherit handle2 %s should not open successfully \n", dllName);
262 void* handle2 = dlopen_ns(&dlns, dllName, RTLD_LAZY);
263 if(handle2)