Lines Matching defs:handle
31 void *handle = dlopen(g_absoluteLib, RTLD_LAZY);
32 EXPECT_TRUE("RapthAbsolute", handle);
33 if (handle) {
34 dlclose(handle);
46 void *handle = dlopen(g_originLib, RTLD_LAZY);
47 EXPECT_TRUE("RapthRelative", handle);
48 if (handle) {
49 dlclose(handle);
62 void *handle = dlopen(g_multipleLib, RTLD_LAZY);
63 EXPECT_TRUE("RapthMultiple", handle);
64 if (handle) {
65 dlclose(handle);
93 void *handle = dlopen_ns(&dlns, g_originLib, RTLD_LAZY);
94 EXPECT_TRUE("RpathNsOrigin_correct", handle);
95 if (handle) {
96 dlclose(handle);
115 void *handle = dlopen_ns(&dlns, g_multipleLib, RTLD_LAZY);
116 EXPECT_TRUE("RpathNsMultiple", handle);
117 if (handle) {
118 dlclose(handle);