func_ptr          319 opal/mca/patcher/linux/patcher_linux_module.c     void *func_ptr;
func_ptr          321 opal/mca/patcher/linux/patcher_linux_module.c     func_ptr = dlsym(RTLD_DEFAULT, symbol);
func_ptr          322 opal/mca/patcher/linux/patcher_linux_module.c     if (func_ptr == replacement) {
func_ptr          324 opal/mca/patcher/linux/patcher_linux_module.c         func_ptr = dlsym(RTLD_NEXT, symbol);
func_ptr          325 opal/mca/patcher/linux/patcher_linux_module.c         if (func_ptr == NULL) {
func_ptr          333 opal/mca/patcher/linux/patcher_linux_module.c                          "original %s() is at %p", symbol, func_ptr);
func_ptr          335 opal/mca/patcher/linux/patcher_linux_module.c     return (intptr_t) func_ptr;