You Could create your own MultipleOutputFormat class, MyMultipleOutputFormat (which is kinda sounds like you are doing) and create a function that takes in a Reporter (as well as the other parameters) that then calls the base generateFileNameForKeyValue.
If there is a way you can access the Job from where you need to record it. You can get the context from the job (context.getConfiguration() and then increment the counter (context.getCounter(YOUR_COUNTER.HERE).increment(1);)
I don't know your exact situation, but attempting to use a counter inside a function that should be acting on/for a single record seems unnecessary and likely could be done 'outside' where access to the Reporter/Context is easy. I could be wrong and your situation/use of the counter is needed there, but I'd suggest checking if you really need it inside that function, or if it could be done outside as well.
Edit: To respond to the couple of points that were unclear;
Creating a function that takes in a Reporter: Since you are extending the MultipleOutputFormat you can add additional functions. If you add a function definition of generateFileNameForKeyValueAndTrack(K key, V value, String name, Reporter reporter) you can then do the counter incrementation in that function and have it call generateFileNameForKeyValue passing along key, value and name.
Using a counter inside seems unneeded: I'm assuming you are calling generateFileNameForKeyValue inside the map function. Replace map with whatever function if that assumption is wrong. Create a collection (don't care what type, as long as it can do what I describe) that you store the generated File Name. Everytime a filename is generated you can check if it exists in the collection and increment the appropriate counter.
I can see the appeal of doing it inside the generate... function to avoid duplicating data, so I'd (off the top of my head) probably go with creating the additional function (specified above).
I hope that helps clarify what I was suggestion.
To keep communication flowing properly (and me being notified) if you have comments/questions relating to this post, please use add a comment to this post instead of adding an answer.