Is there a wildcard/catchall filter hook?

I’ve tried the same thing and was able to hook into the pre_option_ filter by using all as filter.

add_filter('all', 'pre_option_',1,3);

function pre_option_($actionHook,$bool=false,$option_name)
{
    if(strpos($actionHook,'pre_option_') === FALSE){
        return $bool;
    }
}