/openjdk7/hotspot/src/os/solaris/vm/ |
H A D | decoder_solaris.cpp | 27 #include <demangle.h> 29 bool ElfDecoder::demangle(const char* symbol, char *buf, int buflen) { function in class:ElfDecoder
|
H A D | os_solaris.cpp | 1987 if (!Decoder::demangle(dlinfo.dli_sname, buf, buflen)) 2007 if (!Decoder::demangle(dlinfo.dli_sname, buf, buflen))
|
/openjdk7/hotspot/src/os/linux/vm/ |
H A D | decoder_linux.cpp | 30 bool ElfDecoder::demangle(const char* symbol, char *buf, int buflen) { function in class:ElfDecoder
|
H A D | os_linux.cpp | 1728 if(!Decoder::demangle(dlinfo.dli_sname, buf, buflen)) {
|
/openjdk7/hotspot/src/os/bsd/vm/ |
H A D | decoder_machO.hpp | 41 virtual bool demangle(const char* symbol, char* buf, int buflen);
|
H A D | decoder_machO.cpp | 35 bool MachODecoder::demangle(const char* symbol, char *buf, int buflen) { function in class:MachODecoder
|
H A D | os_bsd.cpp | 1973 if(!Decoder::demangle(dlinfo.dli_sname, buf, buflen)) { 1989 if(!Decoder::demangle(localbuf, buf, buflen)) {
|
/openjdk7/hotspot/src/share/vm/utilities/ |
H A D | decoder_elf.hpp | 44 bool demangle(const char* symbol, char *buf, int buflen);
|
H A D | decoder.hpp | 52 // demangle a C++ symbol 53 virtual bool demangle(const char* symbol, char* buf, int buflen) = 0; 91 virtual bool demangle(const char* symbol, char* buf, int buflen) { function in class:NullDecoder 105 static bool demangle(const char* symbol, char* buf, int buflen);
|
H A D | decoder_elf.cpp | 50 demangle(buf, buf, buflen);
|
H A D | decoder.cpp | 106 bool Decoder::demangle(const char* symbol, char* buf, int buflen) { function in class:Decoder 113 return decoder->demangle(symbol, buf, buflen);
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/cdbg/ |
H A D | CDebugger.java | 78 public String demangle(String sym) throws UnsupportedOperationException; method in interface:CDebugger
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/proc/ |
H A D | ProcCDebugger.java | 98 public String demangle(String sym) { method in class:ProcCDebugger 99 return dbg.demangle(sym);
|
H A D | ProcDebugger.java | 61 public String demangle(String name); method in interface:ProcDebugger
|
H A D | ProcDebuggerLocal.java | 481 public String demangle(String name) { method in class:ProcDebuggerLocal 652 // demangle a C++ name
|
/openjdk7/hotspot/src/os/windows/vm/ |
H A D | decoder_windows.hpp | 48 bool demangle(const char* symbol, char *buf, int buflen);
|
H A D | decoder_windows.cpp | 147 address addr = (address)Decoder::demangle; 150 _can_decode_in_vm = !strcmp(buf, "Decoder::demangle"); 179 if (demangle(pSymbol->Name, buf, buflen)) { 192 bool WindowsDecoder::demangle(const char* symbol, char *buf, int buflen) {
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/bsd/ |
H A D | BsdCDebugger.java | 118 public String demangle(String sym) { method in class:BsdCDebugger
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/windbg/ |
H A D | WindbgCDebugger.java | 105 public String demangle(String sym) { method in class:WindbgCDebugger
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/linux/ |
H A D | LinuxCDebugger.java | 129 public String demangle(String sym) { method in class:LinuxCDebugger
|
/openjdk7/jdk/src/share/classes/sun/invoke/util/ |
H A D | BytecodeName.java | 136 * To demangle a mangled string that begins with an escape, 155 * In practice, to demangle almost any name “found in nature”, 164 * <code><big><b>\-bar</b></big></code>, and <code><big><b>baz\!</b></big></code>, which demangle to <code><big><b>foo</b></big></code>, <code><big><b>\bar</b></big></code>, and 284 sn = demangle(s); 527 private static String demangle(String s) { method in class:BytecodeName
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/tools/ |
H A D | PStack.java | 94 name = cdbg.demangle(name);
|
/openjdk7/hotspot/agent/src/os/solaris/proc/ |
H A D | saproc.cpp | 33 #include <demangle.h>
|