Home
last modified time | relevance | path

Searched refs:bar_func (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/third_party/android_crazy_linker/src/tests/
Dzoo.cpp17 void (*bar_func)(); in Zoo() local
19 bar_func = reinterpret_cast<void (*)()>(dlsym(bar_lib, "Bar")); in Zoo()
20 if (!bar_func) { in Zoo()
24 printf("%s: Found 'Bar' symbol at @%p\n", __FUNCTION__, bar_func); in Zoo()
28 (*bar_func)(); in Zoo()
Dtest_load_library_depends.cpp32 FunctionPtr bar_func; in main() local
34 library, "Bar", reinterpret_cast<void**>(&bar_func))) { in main()
39 (*bar_func)(); in main()
Dtest_two_shared_relros.cpp71 FunctionPtr bar_func; in main() local
73 bar.library, "Bar", reinterpret_cast<void**>(&bar_func))) in main()
77 (*bar_func)(); in main()
/external/clang/test/Index/Inputs/
Dfoo.h4 void bar_func(void);
Dt2.c5 void bar_func(void) { in bar_func() function
Dt1.c8 bar_func(); in foo_func()