in reply to Which subroutine or method was called?

To remove all doubt, don't export any functions, then explicitly call the one from the Time::HiRes module:
use Time::HiRes (); # prevents exporting any functions, although POD s +ays none are exported anyway Time::HiRes::sleep(5);