Lines Matching refs:self
76 void* self = dlopen(nullptr, RTLD_NOW); in TEST() local
77 ASSERT_TRUE(self != nullptr); in TEST()
80 void* sym = dlsym(self, "DlSymTestFunction"); in TEST()
89 ASSERT_EQ(0, dlclose(self)); in TEST()
817 void* self = dlopen("/does/not/exist", RTLD_NOW); in TEST() local
818 ASSERT_TRUE(self == nullptr); in TEST()
887 void* self = dlopen(nullptr, RTLD_NOW); in TEST() local
888 ASSERT_TRUE(self != nullptr); in TEST()
905 sym = dlsym(self, "ThisSymbolDoesNotExist"); in TEST()
909 ASSERT_EQ(0, dlclose(self)); in TEST()
914 void* self = dlopen(nullptr, RTLD_NOW); in TEST() local
915 ASSERT_TRUE(self != nullptr); in TEST()
918 void* sym = dlsym(self, "DlSymTestFunction"); in TEST()
956 ASSERT_EQ(0, dlclose(self)); in TEST()