Searched refs:testf_dso_null (Results 1 – 2 of 2) sorted by relevance
55 int (*testf_dso_null)(void); in ATF_TC_BODY() local59 testf_dso_null = dlsym(handle, "testf_dso_null"); in ATF_TC_BODY()60 ATF_REQUIRE_MSG(testf_dso_null != NULL, "dlsym fails: %s", dlerror()); in ATF_TC_BODY()62 ATF_REQUIRE(testf_dso_null() == 0xcafe); in ATF_TC_BODY()79 int (*testf_dso_null)(void); in ATF_TC_BODY() local87 testf_dso_null = dlsym(handle, "testf_dso_null"); in ATF_TC_BODY()88 ATF_REQUIRE_MSG(testf_dso_null != NULL, "dlsym fails: %s", dlerror()); in ATF_TC_BODY()90 ATF_REQUIRE(testf_dso_null() == 0xcafe); in ATF_TC_BODY()
46 int testf_dso_null(void);53 testf_dso_null(void) in testf_dso_null() function