Searched refs:test (Results 1 – 4 of 4) sorted by relevance
/dlfcn/ |
A D | tststatic.c | 9 int (*test) (int); in do_test() local 19 test = dlsym (handle, "test"); in do_test() 20 if (test == NULL) in do_test() 26 res = test (2); in do_test()
|
A D | modstatic.c | 1 extern int test (int); 4 test (int a) in test() function
|
A D | tststatic2.c | 25 int (*test) (FILE *, int); in do_test() local 26 test = dlsym (handle, "test"); in do_test() 27 if (test == NULL) in do_test() 34 int res = dladdr (test, &info); 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() 71 if (info.dli_saddr != (void *) test) in do_test() 105 res = test (stdout, 2); in do_test() 145 else if (test2 != (void *) test) in do_test() [all …]
|
A D | modstatic2.c | 9 int test (FILE *out, int a); 12 test (FILE *out, int a) in test() function 36 if (test2 != test) in test() 38 fprintf (out, "test %p != test2 %p\n", test, test2); in test()
|
Completed in 7 milliseconds