/elf/ |
A D | reldepmod3.c | 10 int (*fp) (void); in call_me() local 12 fp = dlsym (RTLD_DEFAULT, "foo"); in call_me() 13 if (fp == NULL) in call_me() 19 return fp () - 42; in call_me()
|
A D | tst-align.c | 27 void (*fp) (int *); in do_test() local 37 fp = dlsym (h, "in_dso"); in do_test() 38 if (fp == NULL) in do_test() 44 fp (&result); in do_test()
|
A D | tst-pathopt.c | 11 int (*fp) (int); in do_test() local 23 fp = dlsym (h, "in_renamed"); in do_test() 24 if (fp == NULL) in do_test() 30 result = fp (10); in do_test()
|
A D | reldepmod4.c | 11 int (*fp) (void); in call_me() local 21 fp = dlsym (h, "foo"); in call_me() 22 if (fp == NULL) in call_me() 28 res = fp () - 42; in call_me()
|
A D | reldep5.c | 11 int (*fp) (void); in main() local 30 fp = dlsym (h2, "bar"); in main() 31 if (fp == NULL) in main() 39 if (fp () != 0) in main() 55 if (fp () != 0) in main()
|
A D | testobj4.c | 21 int (*fp) (int) = dlsym (RTLD_NEXT, "preload"); in preload() local 22 if (fp != NULL) in preload() 23 return fp (a) + 10; in preload()
|
A D | testobj5.c | 22 int (*fp) (int) = dlsym (RTLD_NEXT, "preload"); in preload() local 23 if (fp != NULL) in preload() 24 return fp (a) + 10; in preload()
|
A D | nextmod1.c | 11 int (*fp) (void); in successful_rtld_next_test() local 14 fp = (int (*) (void)) dlsym (RTLD_NEXT, __FUNCTION__); in successful_rtld_next_test() 17 return fp (); in successful_rtld_next_test()
|
A D | testobj1.c | 21 int (*fp) (int) = dlsym (RTLD_NEXT, "preload"); in preload() local 22 if (fp != NULL) in preload() 23 return fp (a) + 10; in preload()
|
A D | testobj3.c | 22 int (*fp) (int) = dlsym (RTLD_NEXT, "preload"); in preload() local 23 if (fp != NULL) in preload() 24 return fp (a) + 10; in preload()
|
A D | tst-tls17.c | 15 int (*fp) (void) = (int (*) (void)) dlsym (h, "tlsmod17b"); in do_test() local 16 if (fp == NULL) in do_test() 22 if (fp ()) in do_test()
|
A D | origtest.c | 10 int (*fp) (int); in main() local 18 fp = dlsym (h, "obj1func1"); in main() 19 if (fp == NULL) in main() 23 res = fp (10); in main()
|
A D | testobj2.c | 22 int (*fp) (int) = dlsym (RTLD_NEXT, "preload"); in preload() local 23 if (fp != NULL) in preload() 24 return fp (a) + 10; in preload()
|
A D | tst-tls4.c | 12 int (*fp) (int, int *); in do_test() local 22 fp = dlsym (h, "in_dso"); in do_test() 23 if (fp == NULL) in do_test() 29 result |= fp (0, NULL); in do_test()
|
A D | tst-audit12.c | 32 int (*fp) (void) = (int (*) (void)) dlsym (h, "f1"); in do_test() local 33 if (fp == NULL) in do_test() 38 int res = fp (); in do_test()
|
A D | lateglobal.c | 11 int (*fp) (void); in main() local 32 fp = dlsym (h[1], "foo"); in main() 33 if (fp == NULL) in main() 39 fail = fp (); in main()
|
A D | tst-tls15.c | 22 int (*fp) (void) = (int (*) (void)) dlsym (h, "in_dso"); in do_test() local 23 if (fp == NULL) in do_test() 29 return fp (); in do_test()
|
A D | tst-ldconfig-ld_so_conf-update.c | 85 FILE *fp = xfopen (CONF, "a+"); in do_test() local 86 if (!fp) in do_test() 88 xfclose (fp); in do_test() 98 fp = xfopen (CONF, "w"); in do_test() 99 if (!(fwrite (DSO_DIR, 1, sizeof (DSO_DIR), fp))) in do_test() 101 xfclose (fp); in do_test()
|
A D | dblload.c | 12 int (*fp) (void); in main() local 31 fp = dlsym (p1, "foo"); in main() 32 if (fp == NULL) in main() 38 result = fp (); in main()
|
A D | dblunload.c | 12 int (*fp) (void); in main() local 37 fp = dlsym (p2, "xyzzy"); in main() 38 if (fp == NULL) in main() 44 result = fp (); in main()
|
A D | tst-tls7.c | 13 int (*fp) (void); in do_test() local 39 fp = dlsym (h, "in_dso2"); in do_test() 40 if (fp == NULL) in do_test() 46 result |= fp (); in do_test()
|
A D | tst-tls16.c | 32 void *(*fp) (void) = (void *(*) (void)) dlsym (h, "in_dso"); in do_test() local 33 if (fp == NULL) in do_test() 43 if (fp () != p) in do_test()
|
A D | tst-audit9.c | 7 int (*fp)(void) = dlsym(h, "f"); in do_test() local 8 return fp() - 1; in do_test()
|
A D | tst-tls5.c | 13 int (*fp) (int, int *); in do_test() local 32 fp = dlsym (h, "in_dso"); in do_test() 33 if (fp == NULL) in do_test() 39 result |= fp (42, foop); in do_test()
|
A D | tst-unique3.cc | 15 int (*fp) (); in main() local 16 if (d == NULL || (fp = (int(*)()) dlsym (d, "in_lib2")) == NULL) in main() 21 result |= fp (); in main()
|