/elf/ |
A D | tst-unique1.c | 21 void *h2 = dlopen ("tst-unique1mod2.so", RTLD_LAZY); in do_test() local 22 if (h2 == NULL) in do_test() 27 int (*f2) (int *) = dlsym (h2, "f"); in do_test() 38 dlclose (h2); in do_test() 41 h2 = dlopen ("tst-unique1mod2.so", RTLD_LAZY); in do_test() 42 if (h2 == NULL) in do_test() 47 f2 = dlsym (h2, "f"); in do_test()
|
A D | tst-global1.c | 14 void *h2 = dlopen ("$ORIGIN/testobj2.so", in do_test() local 16 if (h2 == NULL) in do_test() 24 void (*f) (void) = dlsym (h2, "p"); in do_test() 33 dlclose (h2); in do_test()
|
A D | reldep5.c | 10 void *h2; in main() local 22 h2 = dlopen ("reldepmod6.so", RTLD_LAZY); in main() 23 if (h2 == NULL) in main() 30 fp = dlsym (h2, "bar"); in main() 63 if (dlclose (h2) != 0) in main()
|
A D | tst-tls9.c | 20 void *h2 = dlopen (modname2, RTLD_LAZY); in do_test() local 21 if (h2 == NULL) in do_test() 29 if (h2 != NULL) in do_test() 30 dlclose (h2); in do_test()
|
A D | tst-nodelete-opened.c | 34 void *h2 = dlopen ("$ORIGIN/tst-nodelete-opened-lib.so", in do_test() local 36 if (h2 == NULL) in do_test() 42 int *foo = dlsym (h2, "foo_var"); in do_test() 55 if (dlclose (h2) != 0) in do_test()
|
A D | reldep7.c | 9 void *h2; in main() local 19 h2 = dlopen ("reldep7mod2.so", RTLD_GLOBAL | RTLD_LAZY); in main() 20 if (h2 == NULL) in main() 33 mod2_bar = dlsym (h2, "mod2_bar"); in main() 51 if (dlclose (h2) != 0) in main()
|
A D | reldep4.c | 10 void *h1, *h2; in main() local 22 h2 = dlopen ("reldep4mod2.so", RTLD_NOW | RTLD_GLOBAL); in main() 23 if (h2 == NULL) in main() 33 if (dlclose (h2) != 0) in main()
|
A D | tst-tls8.c | 17 void *h2; in do_test() local 55 h2 = dlopen (modname2, RTLD_LAZY); in do_test() 56 if (h2 == NULL) in do_test() 74 bazp = dlsym (h2, "baz"); in do_test() 83 fp2 = dlsym (h2, "in_dso"); in do_test() 93 dlclose (h2); in do_test() 124 h2 = dlopen (modname2, RTLD_LAZY); in do_test() 125 if (h2 == NULL) in do_test() 141 bazp = dlsym (h2, "baz"); in do_test() 150 fp2 = dlsym (h2, "in_dso"); in do_test() [all …]
|
A D | unload8.c | 14 void *h2 = dlopen ("$ORIGIN/unload8mod1x.so", RTLD_LAZY); in main() local 15 if (h2 == NULL) in main() 20 dlclose (h2); in main()
|
A D | order2.c | 18 void *h2 = dlopen ("$ORIGIN/order2mod2.so", RTLD_LAZY); in do_test() local 19 if (h2 == NULL) in do_test() 29 if (dlclose (h2) != 0) in do_test()
|
A D | reldep6.c | 14 void *h2; in main() local 44 h2 = dlopen ("reldep6mod4.so", RTLD_LAZY); in main() 45 if (h2 == NULL) in main() 51 baz = dlsym (h2, "baz"); in main() 74 bar = dlsym (h2, "bar"); in main() 86 baz = dlsym (h2, "baz"); in main() 102 if (dlclose (h2) != 0) in main()
|
A D | unload7.c | 26 void *h2 = dlopen ("$ORIGIN/unload7mod2.so", RTLD_LAZY); in main() local 27 if (h2 == NULL) in main() 32 dlclose (h2); in main()
|
A D | reldep2.c | 10 void *h2; in main() local 23 h2 = dlopen ("reldepmod3.so", RTLD_LAZY); in main() 24 if (h2 == NULL) in main() 42 fp = dlsym (h2, "call_me"); in main() 94 if (dlclose (h2) != 0) in main()
|
A D | reldep3.c | 10 void *h2; in main() local 23 h2 = dlopen ("reldepmod4.so", RTLD_LAZY); in main() 24 if (h2 == NULL) in main() 42 fp = dlsym (h2, "call_me"); in main() 94 if (dlclose (h2) != 0) in main()
|
A D | reldep.c | 10 void *h2; in main() local 23 h2 = dlopen ("reldepmod2.so", RTLD_LAZY); in main() 24 if (h2 == NULL) in main() 42 fp = dlsym (h2, "call_me"); in main() 73 if (dlclose (h2) != 0) in main()
|
A D | restest1.c | 12 void *h2; in main() local 24 h2 = dlopen ("testobj1_1.so", RTLD_LAZY); in main() 34 fp2 = dlsym (h2, "obj1func1"); in main() 45 if (dlclose (h2) != 0) in main()
|
A D | tst-noload.c | 36 void *h2 = dlopen (LIBM_SO, RTLD_LAZY | RTLD_NOLOAD | RTLD_NODELETE); in do_test() local 37 if (h2 != NULL) in do_test()
|