| 99 | } |
| 100 | |
| 101 | const char *NameRender::GetCallerClassName(const char *name, char *dest, int size) { |
| 102 | snprintf(dest, size, "%s%c%sCaller", prefix_, toupper(*name), name + 1); |
| 103 | |
| 104 | return dest; |
| 105 | } |
| 106 | |
| 107 | const char *NameRender::GetStubFileName(const char *name, char *dest, int size) { |
| 108 | snprintf(dest, size, "phxrpc_%s%c%s_stub", prefix_, toupper(*name), name + 1); |
nothing calls this directly
no outgoing calls
no test coverage detected