Conditional Breakpoint on Function Pointer Native Method Name?
Hello, I'm trying to set a conditional breakpoint on native function pointer name. Something like "if <function name> contains string"
Is there a way to get at the name through some rider api? It's shown right there in the Debugger, but how to get it in the condition is what I'm after.
This is what it looks like in the debugger:

So i'd like to setup a condition on the function name (in this example "...AActor::execK2_GetActorRotation...") and filter if it contains another string, like "Ability" or something.
This is what it looks like in Evaluate, I'm looking for some way to extract the method as string and feed to strstr()

Please sign in to leave a comment.
Well I did find something that would work for this:
I also applied the Source Map Fix which may have helped, or I was overlooking NamePrivate the whole time. I'm not sure.
Hi @...,
This approach is correct, you should be able to use Function->NamePrivate to get the method name. If you encounter any issues using this condition for breakpoints - let us know.
Have a nice day!