HomeSort by relevance Sort by last modified time
    Searched refs:GetNumFrames (Results 1 - 23 of 23) sorted by null

  /external/lldb/test/functionalities/conditional_break/
conditional_break.py 20 if thread.GetNumFrames() >= 2:
TestConditionalBreak.py 83 if thread.GetNumFrames() >= 2:
  /external/lldb/scripts/Python/interface/
SBThread.i 185 GetNumFrames ();
219 return int(self.sbthread.GetNumFrames())
223 if type(key) is int and key < self.sbthread.GetNumFrames():
250 __swig_getmethods__["num_frames"] = GetNumFrames
251 if _newclass: num_frames = property(GetNumFrames, None, doc='''A read only property that returns the number of stack frames in this thread as an integer.''')
  /external/lldb/test/python_api/default-constructor/
sb_thread.py 29 obj.GetNumFrames()
  /external/lldb/test/api/multithreaded/
test_listener_event_process_state.cpp 46 uint32_t num_frames = thread.GetNumFrames();
  /external/lldb/include/lldb/Target/
StackFrameList.h 37 GetNumFrames (bool can_create = true);
Thread.h 351 return GetStackFrameList()->GetNumFrames();
    [all...]
  /external/lldb/include/lldb/API/
SBThread.h 160 GetNumFrames ();
  /external/lldb/test/lang/cpp/class_types/
TestClassTypesDisassembly.py 102 depth = thread.GetNumFrames()
  /external/lldb/test/lang/cpp/stl/
TestStdCXXDisassembly.py 51 depth = thread.GetNumFrames()
  /external/lldb/test/lang/objc/print-obj/
TestPrintObj.py 86 depth = other_thread.GetNumFrames()
  /external/lldb/test/
lldbutil.py 566 depth = thread.GetNumFrames()
583 return map(GetFuncName, range(thread.GetNumFrames()))
593 return map(GetSymbol, range(thread.GetNumFrames()))
603 return map(GetPCAddress, range(thread.GetNumFrames()))
613 return map(GetFilename, range(thread.GetNumFrames()))
623 return map(GetLineNumber, range(thread.GetNumFrames()))
633 return map(GetModuleName, range(thread.GetNumFrames()))
643 return map(GetStackFrame, range(thread.GetNumFrames()))
652 depth = thread.GetNumFrames()
  /external/lldb/test/functionalities/inline-stepping/
TestInlineStepping.py 56 expected_stack_depth = self.thread.GetNumFrames()
90 real_stack_depth = self.thread.GetNumFrames()
  /external/lldb/source/Target/
StackFrameList.cpp 463 StackFrameList::GetNumFrames (bool can_create)
763 if (curr_ap.get() == NULL || curr_ap->GetNumFrames (false) == 0)
772 if (prev_sp.get() == NULL || prev_sp->GetNumFrames (false) == 0)
784 const uint32_t num_curr_frames = curr_ap->GetNumFrames (false);
808 const uint32_t num_prev_frames = prev_sp->GetNumFrames (false);
    [all...]
  /external/lldb/test/functionalities/inferior-assert/
TestInferiorAssert.py 168 depth = thread.GetNumFrames()
  /external/lldb/test/python_api/frame/
TestFrames.py 74 numFrames = min(3, thread.GetNumFrames())
  /external/lldb/tools/lldb-perf/lib/
Xcode.cpp 79 auto tCount = thread.GetNumFrames ();
  /art/runtime/
stack.h 462 return GetNumFrames() - cur_depth_ - 1;
470 size_t GetNumFrames() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
stack.cc 628 HasMoreFramesVisitor visitor(thread_, walk_kind_, GetNumFrames(), GetFrameHeight());
    [all...]
  /external/lldb/examples/python/
diagnose_unwind.py 76 if cur_thread.GetNumFrames() < 2:
  /external/lldb/utils/vim-lldb/python-vim-lldb/
vim_ui.py 68 while not le.IsValid() and frame_num < thread.GetNumFrames():
  /external/lldb/test/functionalities/thread/concurrent_events/
TestConcurrentEvents.py 368 location = "\t".join([lldbutil.get_description(x.GetFrameAtIndex(i)) for i in range(x.GetNumFrames())])
  /external/lldb/source/API/
SBThread.cpp     [all...]

Completed in 121 milliseconds