Lines Matching refs:self
90 void* self = dlopen(nullptr, RTLD_NOW); in TEST() local
91 ASSERT_TRUE(self != nullptr); in TEST()
94 void* sym = dlsym(self, "DlSymTestFunction"); in TEST()
103 ASSERT_EQ(0, dlclose(self)); in TEST()
828 void* self = dlopen("/does/not/exist", RTLD_NOW); in TEST() local
829 ASSERT_TRUE(self == nullptr); in TEST()
896 void* self = dlopen(nullptr, RTLD_NOW); in TEST() local
897 ASSERT_TRUE(self != nullptr); in TEST()
911 sym = dlsym(self, "ThisSymbolDoesNotExist"); in TEST()
915 ASSERT_EQ(0, dlclose(self)); in TEST()
920 void* self = dlopen(nullptr, RTLD_NOW); in TEST() local
921 ASSERT_TRUE(self != nullptr); in TEST()
924 void* sym = dlsym(self, "DlSymTestFunction"); in TEST()
962 ASSERT_EQ(0, dlclose(self)); in TEST()