Including admin-options.php file in Child Themes

I think that in wordpress you can’t override a file of functions of a parent theme, the only thing that can do is to make an override of the functions of this file in your functions.php of your child theme.

if ( ! function_exists ( 'my_function' ) ) {
    function my_function() {
        // Contents of your function here.
    }
}