Searched refs:p (Results 1 – 5 of 5) sorted by relevance
22 extern void fluffy (void *p);23 extern void bar (void *p);28 fluffy (void *p) in fluffy() argument31 *(int *) p = global = 1; in fluffy()36 bar (void *p) in bar() argument39 __cxa_atexit (fluffy, p, __dso_handle); in bar()
25 extern void foo (void *p);36 foo (void *p) in foo() argument40 ip = p; in foo()
17 void *p; in test_in_mod1() local21 p = dlsym (RTLD_DEFAULT, "main"); in test_in_mod1()22 if (p == NULL) in test_in_mod1()27 else if ((int (*)(int, char **))p != mainp) in test_in_mod1()
24 void *p; in test_in_mod2() local28 p = dlsym (RTLD_DEFAULT, "main"); in test_in_mod2()29 if (p == NULL) in test_in_mod2()34 else if ((int (*)(int, char **))p != mainp) in test_in_mod2()
14 void *p; in main() local33 p = dlsym (RTLD_DEFAULT, "main"); in main()34 if (p == NULL) in main()39 else if ((int (*)(int, char **))p != main) in main()
Completed in 10 milliseconds