HomeSort by relevance Sort by last modified time
    Searched defs:Demangle (Results 1 - 22 of 22) sorted by null

  /external/google-breakpad/src/common/
stabs_to_module.cc 46 // Demangle using abi call.
48 static string Demangle(const string &mangled) {
93 Module::Function *f = new Module::Function(Demangle(name), address);
135 // Older libstdc++ demangle implementations can crash on unexpected
138 ext->name = Demangle(name.substr(1));
  /external/llvm/include/llvm/DebugInfo/Symbolize/
Symbolize.h 35 bool Demangle : 1;
40 bool UseSymbolTable = true, bool Demangle = true,
43 Demangle(Demangle), RelativeAddresses(RelativeAddresses),
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/DebugInfo/Symbolize/
Symbolize.h 35 bool Demangle : 1;
40 bool UseSymbolTable = true, bool Demangle = true,
43 Demangle(Demangle), RelativeAddresses(RelativeAddresses),
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/DebugInfo/Symbolize/
Symbolize.h 35 bool Demangle : 1;
40 bool UseSymbolTable = true, bool Demangle = true,
43 Demangle(Demangle), RelativeAddresses(RelativeAddresses),
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/DebugInfo/Symbolize/
Symbolize.h 35 bool Demangle : 1;
40 bool UseSymbolTable = true, bool Demangle = true,
43 Demangle(Demangle), RelativeAddresses(RelativeAddresses),
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/Symbolize/
Symbolize.h 35 bool Demangle : 1;
40 bool UseSymbolTable = true, bool Demangle = true,
43 Demangle(Demangle), RelativeAddresses(RelativeAddresses),
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/DebugInfo/Symbolize/
Symbolize.h 35 bool Demangle : 1;
40 bool UseSymbolTable = true, bool Demangle = true,
43 Demangle(Demangle), RelativeAddresses(RelativeAddresses),
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/DebugInfo/Symbolize/
Symbolize.h 35 bool Demangle : 1;
40 bool UseSymbolTable = true, bool Demangle = true,
43 Demangle(Demangle), RelativeAddresses(RelativeAddresses),
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/DebugInfo/Symbolize/
Symbolize.h 35 bool Demangle : 1;
40 bool UseSymbolTable = true, bool Demangle = true,
43 Demangle(Demangle), RelativeAddresses(RelativeAddresses),
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/Symbolize/
Symbolize.h 35 bool Demangle : 1;
40 bool UseSymbolTable = true, bool Demangle = true,
43 Demangle(Demangle), RelativeAddresses(RelativeAddresses),
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_symbolizer_internal.h 64 virtual const char *Demangle(const char *name) {
sanitizer_symbolizer_libbacktrace.cc 27 # include "demangle.h"
205 const char *LibbacktraceSymbolizer::Demangle(const char *name) {
sanitizer_symbolizer_libcdep.cc 120 const char *Symbolizer::Demangle(const char *name) {
124 if (const char *demangled = tool.Demangle(name))
sanitizer_symbolizer_win.cc 34 const char *Demangle(const char *name) override;
132 const char *WinSymbolizerTool::Demangle(const char *name) {
  /prebuilts/go/darwin-x86/src/cmd/pprof/internal/plugin/
plugin.go 49 // Demangle translates a batch of symbol names from mangled
51 Demangle(names []string) (map[string]string, error)
65 // Demangle returns an empty map and a nil error.
78 func (noObjTool) Demangle(name []string) (map[string]string, error) {
  /prebuilts/go/darwin-x86/src/cmd/pprof/
pprof.go 152 func (*objTool) Demangle(names []string) (map[string]string, error) {
153 // No C++, nothing to demangle.
  /prebuilts/go/linux-x86/src/cmd/pprof/internal/plugin/
plugin.go 49 // Demangle translates a batch of symbol names from mangled
51 Demangle(names []string) (map[string]string, error)
65 // Demangle returns an empty map and a nil error.
78 func (noObjTool) Demangle(name []string) (map[string]string, error) {
  /prebuilts/go/linux-x86/src/cmd/pprof/
pprof.go 152 func (*objTool) Demangle(names []string) (map[string]string, error) {
153 // No C++, nothing to demangle.
  /prebuilts/go/darwin-x86/src/internal/pprof/profile/
profile.go 546 // Demangle attempts to demangle and optionally simplify any function
549 func (p *Profile) Demangle(d Demangler) error {
550 // Collect names to demangle.
  /prebuilts/go/linux-x86/src/internal/pprof/profile/
profile.go 546 // Demangle attempts to demangle and optionally simplify any function
549 func (p *Profile) Demangle(d Demangler) error {
550 // Collect names to demangle.
  /system/extras/simpleperf/
dso.cpp 45 const std::string s = Dso::Demangle(name_);
66 void Dso::SetDemangle(bool demangle) { demangle_ = demangle; }
71 std::string Dso::Demangle(const std::string& name) {
  /external/google-breakpad/src/common/solaris/
dump_symbols.cc 32 #include <demangle.h>
155 // Default buffer lenght for demangle.
176 // Demangle using demangle library on Solaris.
177 std::string Demangle(const char *mangled) {
189 fprintf(stderr, "incorrect demangle.\n");
530 func_name = Demangle(func_name.c_str());

Completed in 746 milliseconds