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

1 2

  /system/core/libbacktrace/
BacktraceImpl.h 31 // The name returned is not demangled, Backtrace::GetFunctionName()
43 inline std::string GetFunctionName(uintptr_t pc, uintptr_t* offset) {
44 return backtrace_obj_->GetFunctionName(pc, offset);
UnwindPtrace.cpp 107 frame->func_name = GetFunctionName(frame->pc, &frame->func_offset);
UnwindCurrent.cpp 139 frame->func_name = GetFunctionName(frame->pc, &frame->func_offset);
  /external/chromium_org/gin/
try_catch.cc 43 << V8ToString(frame->GetFunctionName())
  /external/chromium_org/v8/src/
profile-generator.h 29 const char* GetFunctionName(Name* name);
30 const char* GetFunctionName(const char* name);
269 const char* GetFunctionName(Name* name) {
270 return function_and_resource_names_.GetFunctionName(name);
272 const char* GetFunctionName(const char* name) {
273 return function_and_resource_names_.GetFunctionName(name);
cpu-profiler.cc 204 rec->entry = profiles_->NewCodeEntry(tag, profiles_->GetFunctionName(name));
218 rec->entry = profiles_->NewCodeEntry(tag, profiles_->GetFunctionName(name));
234 rec->entry = profiles_->NewCodeEntry(tag, profiles_->GetFunctionName(name));
262 profiles_->GetFunctionName(shared->DebugName()),
  /external/lldb/test/lang/c/stepping/
TestStepAndBreakpoints.py 150 self.assertTrue (thread.GetFrameAtIndex(0).GetFunctionName() == "a")
156 self.assertTrue (thread.GetFrameAtIndex(0).GetFunctionName() == "main")
178 self.assertTrue (thread.GetFrameAtIndex(0).GetFunctionName() == "b")
208 self.assertTrue (thread.GetFrameAtIndex(0).GetFunctionName() == "b")
217 self.assertTrue (thread.GetFrameAtIndex(0).GetFunctionName() == "complex")
240 self.assertTrue (thread.GetFrameAtIndex(0).GetFunctionName() == "b")
249 self.assertTrue (thread.GetFrameAtIndex(0).GetFunctionName() == "main")
  /external/lldb/test/functionalities/return-value/
TestReturnValue.py 68 fun_name = frame.GetFunctionName()
119 fun_name = frame.GetFunctionName()
141 fun_name = frame.GetFunctionName ()
151 fun_name = frame.GetFunctionName()
179 fun_name = frame.GetFunctionName()
  /external/lldb/scripts/Python/interface/
SBFrame.i 118 ") GetFunctionName;
120 GetFunctionName();
125 /// See also GetFunctionName().
310 __swig_getmethods__["name"] = GetFunctionName
311 if _newclass: name = property(GetFunctionName, None, doc='''A read only property that retuns the name for the function that this frame represents. Inlined stack frame might have a concrete function that differs from the name of the inlined function (a named lldb.SBBlock).''')
  /external/lldb/test/python_api/default-constructor/
sb_frame.py 21 obj.GetFunctionName()
  /external/lldb/source/Target/
ThreadPlanStepInRange.cpp 289 const char *frame_function_name = sc.GetFunctionName().GetCString();
347 if (step_in_range_plan->m_step_into_target == sc.GetFunctionName())
354 const char *function_name = sc.GetFunctionName().AsCString();
363 sc.GetFunctionName().AsCString(),
  /external/lldb/test/benchmarks/disassembly/
TestDoAttachThenDisassembly.py 54 #print "frame#%d %s" % (i, f.GetFunctionName())
55 if "MainLoop" in f.GetFunctionName():
  /system/core/include/backtrace/
Backtrace.h 79 virtual std::string GetFunctionName(uintptr_t pc, uintptr_t* offset);
  /external/lldb/test/functionalities/inferior-assert/
TestInferiorAssert.py 165 substrs = ['->', frame.GetFunctionName()])
173 print "Checking if function %s is main" % frame.GetFunctionName()
175 if 'main' == frame.GetFunctionName():
  /external/chromium_org/extensions/renderer/
logging_native_handler.cc 85 ToStringOrDefault(frame->GetFunctionName(), "<anonymous>").c_str(),
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
ScriptProfile.cpp 79 .setFunctionName(toCoreString(node->GetFunctionName()))
  /external/lldb/include/lldb/API/
SBFrame.h 89 GetFunctionName();
93 /// See also GetFunctionName().
  /external/lldb/test/lang/objc/print-obj/
TestPrintObj.py 89 name = frame.GetFunctionName()
  /external/lldb/source/API/
SBTypeSummary.cpp 120 const char* fname = script_summary_ptr->GetFunctionName();
292 current_summary_ptr->GetFunctionName(),
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ScriptCallStackFactory.cpp 60 v8::Local<v8::String> functionNameValue(frame->GetFunctionName());
  /external/chromium_org/v8/include/
v8-profiler.h 26 Handle<String> GetFunctionName() const;
  /external/lldb/include/lldb/Symbol/
SymbolContext.h 288 GetFunctionName (Mangled::NamePreference preference = Mangled::ePreferDemangled) const;
  /external/lldb/examples/python/
diagnose_unwind.py 223 print "Disassembly of %s, frame %d, address 0x%x" % (frame.GetFunctionName(), frame.GetFrameID(), frame.GetPC())
250 print "Unwind instructions for %s, frame %d" % (frame.GetFunctionName(), frame.GetFrameID())
  /external/lldb/include/lldb/DataFormatters/
TypeSummary.h 484 GetFunctionName () const
  /external/lldb/tools/lldb-perf/lib/
Xcode.cpp 102 auto fname = frame.GetFunctionName();

Completed in 531 milliseconds

1 2