HomeSort by relevance Sort by last modified time
    Searched refs:mangled (Results 1 - 25 of 41) sorted by null

1 2

  /external/valgrind/coregrind/m_demangle/
cplus-dem.c 544 consume_count_with_underscores (const char **mangled)
548 if (**mangled == '_')
550 (*mangled)++;
551 if (!ISDIGIT ((unsigned char)**mangled))
554 idx = consume_count (mangled);
555 if (**mangled != '_')
559 (*mangled)++;
563 if (**mangled < '0' || **mangled > '9')
566 idx = **mangled - '0'
    [all...]
demangle.h 132 ML_(cplus_demangle) (const char *mangled, int options);
158 cplus_demangle_v3_callback (const char *mangled, int options,
162 cplus_demangle_v3 (const char *mangled, int options);
165 java_demangle_v3_callback (const char *mangled,
169 java_demangle_v3 (const char *mangled);
172 ada_demangle (const char *mangled, int options);
185 /* Return non-zero iff NAME is the mangled form of a constructor name
204 /* Return non-zero iff NAME is the mangled form of a destructor name
212 representation of the mangled name, and the second pass turns the
403 to the mangled string, but since negative numbers are mangle
    [all...]
cp-demangle.c 39 This code first pulls the mangled name apart into a list of
44 char *cplus_demangle_v3(const char *mangled, int options)
45 char *java_demangle_v3(const char *mangled)
46 int cplus_demangle_v3_callback(const char *mangled, int options,
48 int java_demangle_v3_callback(const char *mangled,
75 char *__cxa_demangle (const char *mangled, char *buf, size_t *len,
95 stdout about the mangled string. This is not generally useful.
269 in which they appeared in the mangled string. */
1003 /* Add a new demangle mangled name component. */
6362 dyn_string_t mangled = dyn_string_new (3); local
    [all...]
  /external/ltrace/
demangle.h 31 extern char *cplus_demangle(const char *mangled, int options);
  /external/v8/src/base/
logging.cc 35 char mangled[201]; local
36 if (sscanf(symbols[i], "%*[^(]%*[(]%200[^)+]", mangled) == 1) { // NOLINT
39 char* demangled = abi::__cxa_demangle(mangled, NULL, &length, &status);
40 OS::PrintError("%s\n", demangled != NULL ? demangled : mangled);
  /external/lldb/include/lldb/Symbol/
Function.h 18 #include "lldb/Core/Mangled.h"
39 /// value should not be the mangled named, but the simple method
54 /// should not be the mangled named, but the simple method name.
146 ConstString m_name; ///< Function method name (not a mangled name).
159 /// Construct with the function method name, mangled name, and
164 /// value should not be the mangled named, but the simple method
167 /// @param[in] mangled
168 /// A C string name for the mangled name for this function. This
169 /// value can be NULL if there is no mangled information.
179 InlineFunctionInfo(const char *name, const char *mangled, const Declaration *decl_ptr, const Declaration *call_decl_ptr)
    [all...]
Variable.h 17 #include "lldb/Core/Mangled.h"
32 const char *mangled, // The mangled variable name for variables in namespaces
67 // Since a variable can have a basename "i" and also a mangled
68 // named "_ZN12_GLOBAL__N_11iE" and a demangled mangled name
168 Mangled m_mangled; // The mangled name of the variable
Block.h 381 /// @param[in] mangled
382 /// The mangled method name for the inlined function. This can
383 /// be NULL if there is no mangled name for an inlined function
397 const char *mangled,
  /external/lldb/source/Core/
Mangled.cpp 1 //===-- Mangled.cpp ---------------------------------------------*- C++ -*-===//
19 #include "lldb/Core/Mangled.h"
37 #pragma mark Mangled
41 Mangled::Mangled () :
49 // the mangled version.
51 Mangled::Mangled (const ConstString &s, bool mangled) :
56 SetValue(s, mangled);
    [all...]
ConstString.cpp 120 // Make string pool entry with the mangled counterpart already set
126 // mangled const string...
313 ConstString::SetCStringWithMangledCounterpart (const char *demangled, const ConstString &mangled)
315 m_string = StringPool().GetConstCStringAndSetMangledCounterPart (demangled, mangled.m_string);
  /external/skia/tools/
CrashHandler.cpp 41 char mangled[kMax], demangled[kMax]; local
43 unw_get_proc_name(&cursor, mangled, kMax, &offset);
47 abi::__cxa_demangle(mangled, demangled, &len, &ok);
49 SkDebugf("%s (+0x%zx)\n", ok == 0 ? demangled : mangled, (size_t)offset);
  /external/lldb/source/Plugins/SymbolFile/DWARF/
DWARFDebugPubnames.cpp 106 const char *mangled = NULL; local
129 mangled = form_value.AsCString(debug_str);
189 if (add_die && (name || mangled))
191 pubnames_set.AddDescriptor(die->GetOffset() - cu_offset, mangled ? mangled : name);
DWARFCompileUnit.cpp 12 #include "lldb/Core/Mangled.h"
791 // If we have a mangled name, then the DW_AT_name attribute
833 // Make sure our mangled name isn't the same string table entry
839 Mangled mangled (ConstString(mangled_cstr), true);
840 func_fullnames.Insert (mangled.GetMangledName(), die.GetOffset());
841 if (mangled.GetDemangledName())
842 func_fullnames.Insert (mangled.GetDemangledName(), die.GetOffset());
    [all...]
  /external/lldb/source/Symbol/
Function.cpp 95 const char *mangled,
100 m_mangled(ConstString(mangled), true),
108 const Mangled &mangled,
113 m_mangled(mangled),
129 // only compare the mangled names if both have them
130 return Mangled::Compare(a.m_mangled, a.m_mangled);
175 Mangled&
181 const Mangled&
201 const Mangled &mangled
    [all...]
Symtab.cpp 131 const char *name = pos->GetMangled().GetName(Mangled::ePreferDemangled).AsCString();
273 const Mangled &mangled = pos->GetMangled(); local
274 if (mangled.GetMangledName())
277 if (mangled.GetDemangledName())
303 const Mangled &mangled = symbol->GetMangled(); local
304 entry.cstring = mangled.GetMangledName().GetCString();
317 CPPLanguageRuntime::MethodName cxx_method (mangled.GetDemangledName());
366 entry.cstring = mangled.GetDemangledName().GetCString()
    [all...]
  /external/lldb/include/lldb/Core/
ConstString.h 384 /// Set the C string value and its mangled counterpart.
386 /// Object files and debug sybmols often use mangled string to
389 /// counterparts so when we run into another instance of a mangled
394 /// The demangled C string to correlate with the \a mangled
397 /// @param[in] mangled
398 /// The already uniqued mangled ConstString to correlate the
403 const ConstString &mangled);
406 /// Retrieve the mangled or demangled counterpart for a mangled
409 /// Object files and debug sybmols often use mangled string to
    [all...]
  /external/jemalloc/include/jemalloc/
jemalloc_mangle.sh 8 * By default application code must explicitly refer to mangled symbol names,
  /external/lldb/scripts/Python/interface/
SBFunction.i 111 __swig_getmethods__["mangled"] = GetMangledName
112 if _newclass: mangled = property(GetMangledName, None, doc='''A read only property that returns the mangled (linkage) name for this function as a string.''')
SBSymbol.i 78 __swig_getmethods__["mangled"] = GetMangledName
79 if _newclass: mangled = property(GetMangledName, None, doc='''A read only property that returns the mangled (linkage) name for this symbol as a string.''')
SBModule.i 346 mangled = symbol.mangled
347 if mangled:
348 re_match = key.search(mangled)
  /external/google-breakpad/src/common/
stabs_to_module.cc 48 static string Demangle(const string &mangled) {
50 char *demangled = abi::__cxa_demangle(mangled.c_str(), NULL, NULL, &status);
56 return string(mangled);
  /system/core/libbacktrace/
Backtrace.cpp 57 extern "C" char* __cxa_demangle(const char* mangled, char* buf, size_t* len,
  /external/valgrind/callgrind/
bbcc.c 352 HChar *mangled = CLG_MALLOC("cl.bbcc.mcxt", need); local
353 p = VG_(sprintf)(mangled, "%s", cxt->fn[0]->name);
355 p += VG_(sprintf)(mangled+p, "'%d", rec_index +1);
357 p += VG_(sprintf)(mangled+p, "'%s", cxt->fn[i]->name);
359 return mangled;
  /external/google-breakpad/src/common/solaris/
dump_symbols.cc 177 std::string Demangle(const char *mangled) {
179 std::string str(mangled);
187 if ((status = cplus_demangle(mangled, demangled, demangleLen)) ==
  /prebuilts/misc/common/swig/include/2.0.11/allegrocl/
allegrocl.swg 452 (defswig1 swig-defun ((name &optional (mangled-name name)
458 (mangle (excl::if* (cl::string-equal name mangled-name)
465 else (cl::intern mangled-name)))
480 (ff:def-foreign-call (,mangle ,mangled-name) ,ffargs ,@kwargs))
487 (defswig1 swig-defmethod ((name &optional (mangled-name name)
493 (mangle (cl::intern mangled-name))
506 (ff:def-foreign-call (,mangle ,mangled-name) ,ffargs ,@kwargs))
578 (defswig2 swig-defvar (name mangled-name &key type (ftype :unsigned-natural))
581 (ff:def-foreign-variable (,symbol ,mangled-name) :type ,ftype))))

Completed in 1125 milliseconds

1 2