HomeSort by: relevance | last modified time | path
    Searched defs:testf_dso_null (Results 1 - 2 of 2) sorted by relevancy

  /src/tests/lib/libpthread/dlopen/dso/
h_pthread_dlopen.c 46 int testf_dso_null(void);
53 testf_dso_null(void) function in typeref:typename:int
  /src/tests/lib/libpthread/dlopen/
t_dlopen.c 55 int (*testf_dso_null)(void); local in function:ATF_TC_BODY
59 testf_dso_null = dlsym(handle, "testf_dso_null");
60 ATF_REQUIRE_MSG(testf_dso_null != NULL, "dlsym fails: %s", dlerror());
62 ATF_REQUIRE(testf_dso_null() == 0xcafe);
79 int (*testf_dso_null)(void); local in function:ATF_TC_BODY
87 testf_dso_null = dlsym(handle, "testf_dso_null");
88 ATF_REQUIRE_MSG(testf_dso_null != NULL, "dlsym fails: %s", dlerror());
90 ATF_REQUIRE(testf_dso_null() == 0xcafe)
    [all...]

Completed in 11 milliseconds