Home
last modified time | relevance | path

Searched refs:fp (Results 1 – 25 of 35) sorted by relevance

12

/elf/
A Dreldepmod3.c10 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 Dtst-align.c27 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 Dtst-pathopt.c11 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 Dreldepmod4.c11 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 Dreldep5.c11 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 Dtestobj4.c21 int (*fp) (int) = dlsym (RTLD_NEXT, "preload"); in preload() local
22 if (fp != NULL) in preload()
23 return fp (a) + 10; in preload()
A Dtestobj5.c22 int (*fp) (int) = dlsym (RTLD_NEXT, "preload"); in preload() local
23 if (fp != NULL) in preload()
24 return fp (a) + 10; in preload()
A Dnextmod1.c11 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 Dtestobj1.c21 int (*fp) (int) = dlsym (RTLD_NEXT, "preload"); in preload() local
22 if (fp != NULL) in preload()
23 return fp (a) + 10; in preload()
A Dtestobj3.c22 int (*fp) (int) = dlsym (RTLD_NEXT, "preload"); in preload() local
23 if (fp != NULL) in preload()
24 return fp (a) + 10; in preload()
A Dtst-tls17.c15 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 Dorigtest.c10 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 Dtestobj2.c22 int (*fp) (int) = dlsym (RTLD_NEXT, "preload"); in preload() local
23 if (fp != NULL) in preload()
24 return fp (a) + 10; in preload()
A Dtst-tls4.c12 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 Dtst-audit12.c32 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 Dlateglobal.c11 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 Dtst-tls15.c22 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 Dtst-ldconfig-ld_so_conf-update.c85 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 Ddblload.c12 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 Ddblunload.c12 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 Dtst-tls7.c13 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 Dtst-tls16.c32 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 Dtst-audit9.c7 int (*fp)(void) = dlsym(h, "f"); in do_test() local
8 return fp() - 1; in do_test()
A Dtst-tls5.c13 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 Dtst-unique3.cc15 int (*fp) (); in main() local
16 if (d == NULL || (fp = (int(*)()) dlsym (d, "in_lib2")) == NULL) in main()
21 result |= fp (); in main()

Completed in 12 milliseconds

12