Lines Matching refs:info
33 Dl_info info; in do_test() local
34 int res = dladdr (test, &info); in do_test()
42 if (strstr (info.dli_fname, "modstatic2.so") == NULL in do_test()
43 || strcmp (info.dli_sname, "test") != 0) in do_test()
45 printf ("fname %s sname %s\n", info.dli_fname, info.dli_sname); in do_test()
48 if (info.dli_saddr != (void *) test) in do_test()
50 printf ("saddr %p != test %p\n", info.dli_saddr, test); in do_test()
57 res = dladdr1 (test, &info, &symp, RTLD_DL_SYMENT); in do_test()
65 if (strstr (info.dli_fname, "modstatic2.so") == NULL in do_test()
66 || strcmp (info.dli_sname, "test") != 0) in do_test()
68 printf ("fname %s sname %s\n", info.dli_fname, info.dli_sname); in do_test()
71 if (info.dli_saddr != (void *) test) in do_test()
73 printf ("saddr %p != test %p\n", info.dli_saddr, test); in do_test()