Lines Matching refs:self
51 void* self = dlopen(NULL, RTLD_NOW); in TEST() local
52 ASSERT_TRUE(self != NULL); in TEST()
55 void* sym = dlsym(self, "DlSymTestFunction"); in TEST()
64 ASSERT_EQ(0, dlclose(self)); in TEST()
231 void* self = dlopen("/does/not/exist", RTLD_NOW); in TEST() local
232 ASSERT_TRUE(self == NULL); in TEST()
263 void* self = dlopen(NULL, RTLD_NOW); in TEST() local
264 ASSERT_TRUE(self != NULL); in TEST()
280 sym = dlsym(self, NULL); in TEST()
286 sym = dlsym(self, "ThisSymbolDoesNotExist"); in TEST()
290 ASSERT_EQ(0, dlclose(self)); in TEST()
295 void* self = dlopen(NULL, RTLD_NOW); in TEST() local
296 ASSERT_TRUE(self != NULL); in TEST()
299 void* sym = dlsym(self, "DlSymTestFunction"); in TEST()
348 ASSERT_EQ(0, dlclose(self)); in TEST()