For what functions we use the word "On"?
Those On* functions are event handlers that are called by the Unity engine. An event handler is just a specific type of 'callback function'. So, are your functions also event handlers? If not, I would suggest some other naming convention. If you're unsure, please explain how you plan on using those functions.
C++: A Dialog | C++0x Features: Part1 (lambdas, auto, static_assert) , Part 2 (rvalue references) , Part 3 (decltype) | Write Games | Fix Your Timestep!
The OnEvent naming convention is quite old, I remember seeing it in the 1980s for exactly the same thing and it likely goes back longer than that. It is a function that is called whenever event happens. There are other options, like adding PreEvent and PostEvent, or multiple points with Event (before event processing) Eventing(called during event processing), and Evented (called after completion), for example Click(), Clicking(), and Clicked().
There are many common naming conventions: functions names are verbs if they do something, nouns if they are accessors/mutators; objects are nouns; outside of objects use a NounVerb or NounVerbNoun pattern; and so on.
The best thing about standards and conventions are that there are so many to choose from. Pick one and stick with it.