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

1 2 3 4 5 6 7 8 910

  /external/google-breakpad/src/google_breakpad/processor/
stack_frame.h 42 struct StackFrame {
57 StackFrame()
66 virtual ~StackFrame() {}
72 case StackFrame::FRAME_TRUST_CONTEXT:
74 case StackFrame::FRAME_TRUST_PREWALKED:
76 case StackFrame::FRAME_TRUST_CFI:
78 case StackFrame::FRAME_TRUST_CFI_SCAN:
80 case StackFrame::FRAME_TRUST_FP:
82 case StackFrame::FRAME_TRUST_SCAN:
call_stack.h 33 // exposing the vector directly to allow the CallStack to own StackFrame
36 // CPU-specific StackFrame subclasses.
54 struct StackFrame;
65 const vector<StackFrame*>* frames() const { return &frames_; }
72 vector<StackFrame*> frames_;
source_line_resolver_interface.h 45 struct StackFrame;
93 // and source_line fields of the StackFrame. The instruction and
95 virtual void FillSourceLineInfo(StackFrame *frame) = 0;
102 virtual WindowsFrameInfo *FindWindowsFrameInfo(const StackFrame *frame) = 0;
108 virtual CFIFrameInfo *FindCFIFrameInfo(const StackFrame *frame) = 0;
stack_frame_symbolizer.h 50 struct StackFrame;
80 StackFrame* stack_frame);
82 virtual WindowsFrameInfo* FindWindowsFrameInfo(const StackFrame* frame);
84 virtual CFIFrameInfo* FindCFIFrameInfo(const StackFrame* frame);
  /external/google-breakpad/src/processor/
stackwalker_address_list.cc 61 StackFrame* StackwalkerAddressList::GetContextFrame() {
65 StackFrame* frame = new StackFrame();
67 frame->trust = StackFrame::FRAME_TRUST_PREWALKED;
71 StackFrame* StackwalkerAddressList::GetCallerFrame(const CallStack* stack,
86 StackFrame* frame = new StackFrame();
88 frame->trust = StackFrame::FRAME_TRUST_PREWALKED;
stackwalker_mips.h 64 virtual StackFrame* GetContextFrame();
65 virtual StackFrame* GetCallerFrame(const CallStack* stack,
71 StackFrameMIPS* GetCallerByCFIFrameInfo(const vector<StackFrame*>& frames,
76 StackFrameMIPS* GetCallerByStackScan(const vector<StackFrame*>& frames);
stackwalker_amd64.h 71 virtual StackFrame* GetContextFrame();
72 virtual StackFrame* GetCallerFrame(const CallStack* stack,
78 StackFrameAMD64* GetCallerByCFIFrameInfo(const vector<StackFrame*> &frames,
87 const vector<StackFrame*>& frames);
91 StackFrameAMD64* GetCallerByStackScan(const vector<StackFrame*> &frames);
stackwalker_arm.h 71 virtual StackFrame* GetContextFrame();
72 virtual StackFrame* GetCallerFrame(const CallStack* stack,
78 StackFrameARM* GetCallerByCFIFrameInfo(const vector<StackFrame*> &frames,
83 StackFrameARM* GetCallerByFramePointer(const vector<StackFrame*> &frames);
87 StackFrameARM* GetCallerByStackScan(const vector<StackFrame*> &frames);
stackwalker_arm64.h 72 virtual StackFrame* GetContextFrame();
73 virtual StackFrame* GetCallerFrame(const CallStack* stack,
79 StackFrameARM64* GetCallerByCFIFrameInfo(const vector<StackFrame*> &frames,
84 StackFrameARM64* GetCallerByFramePointer(const vector<StackFrame*> &frames);
88 StackFrameARM64* GetCallerByStackScan(const vector<StackFrame*> &frames);
stackwalker_address_list.h 60 virtual StackFrame* GetContextFrame();
61 virtual StackFrame* GetCallerFrame(const CallStack* stack,
stackwalker_ppc.h 66 virtual StackFrame* GetContextFrame();
67 virtual StackFrame* GetCallerFrame(const CallStack* stack,
stackwalker_ppc64.h 64 virtual StackFrame* GetContextFrame();
65 virtual StackFrame* GetCallerFrame(const CallStack* stack,
stackwalker_sparc.h 65 virtual StackFrame* GetContextFrame();
66 virtual StackFrame* GetCallerFrame(const CallStack* stack,
stackwalker_x86.h 76 virtual StackFrame* GetContextFrame();
77 virtual StackFrame* GetCallerFrame(const CallStack* stack,
84 const vector<StackFrame*> &frames,
91 StackFrameX86* GetCallerByCFIFrameInfo(const vector<StackFrame*> &frames,
99 StackFrameX86* GetCallerByEBPAtBase(const vector<StackFrame*> &frames,
call_stack.cc 46 for (vector<StackFrame *>::const_iterator iterator = frames_.begin();
stackwalker_ppc64.cc 56 StackFrame* StackwalkerPPC64::GetContextFrame() {
68 frame->trust = StackFrame::FRAME_TRUST_CONTEXT;
75 StackFrame* StackwalkerPPC64::GetCallerFrame(const CallStack* stack,
122 frame->trust = StackFrame::FRAME_TRUST_FP;
  /external/libchrome/base/trace_event/
heap_profiler_allocation_context_tracker_unittest.cc 29 void AssertBacktraceEquals(const StackFrame(&expected_backtrace)[N]) {
51 for (StackFrame frame : ctx.backtrace.frames)
73 StackFrame c = kCupcake;
74 StackFrame d = kDonut;
75 StackFrame e = kEclair;
76 StackFrame f = kFroyo;
82 StackFrame frame_c[] = {c, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
87 StackFrame frame_cd[] = {c, d, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
95 StackFrame frame_ce[] = {c, e, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
106 StackFrame frame_f[] = {f, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}
    [all...]
heap_profiler_stack_frame_deduplicator.h 26 // of |StackFrame|s to index into |frames_|. So there is a trie for bottum-up
33 FrameNode(StackFrame frame, int parent_frame_index);
36 StackFrame frame;
43 std::map<StackFrame, int> children;
54 int Insert(const StackFrame* beginFrame, const StackFrame* endFrame);
70 std::map<StackFrame, int> roots_;
heap_profiler_allocation_context_tracker.h 47 static void PushPseudoStackFrame(StackFrame frame);
50 static void PopPseudoStackFrame(StackFrame frame);
65 std::vector<StackFrame> pseudo_stack_;
heap_profiler_stack_frame_deduplicator.cc 19 StackFrameDeduplicator::FrameNode::FrameNode(StackFrame frame,
27 int StackFrameDeduplicator::Insert(const StackFrame* beginFrame,
28 const StackFrame* endFrame) {
30 std::map<StackFrame, int>* nodes = &roots_;
33 for (const StackFrame* it = beginFrame; it != endFrame && *it; it++) {
34 StackFrame frame = *it;
102 size_t maps_size = roots_.size() * sizeof(std::pair<StackFrame, int>);
107 maps_size += node.children.size() * sizeof(std::pair<StackFrame, int>);
heap_profiler_allocation_context.h 38 using StackFrame = const char*;
45 StackFrame frames[12];
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Misc/
ErrorManager.cs 40 using StackFrame = System.Diagnostics.StackFrame;
48 StackFrame location = GetLastNonErrorManagerCodeLocation(e);
56 StackFrame location = GetLastNonErrorManagerCodeLocation(new Exception());
67 private static StackFrame GetLastNonErrorManagerCodeLocation(Exception e)
73 StackFrame f = stackTrace.GetFrame(i);
79 StackFrame location = stackTrace.GetFrame(i);
  /external/v8/src/
macro-assembler.h 84 explicit FrameScope(MacroAssembler* masm, StackFrame::Type type)
87 if (type != StackFrame::MANUAL && type_ != StackFrame::NONE) {
93 if (type_ != StackFrame::MANUAL && type_ != StackFrame::NONE) {
105 DCHECK(type_ != StackFrame::MANUAL && type_ != StackFrame::NONE);
111 StackFrame::Type type_;
117 FrameAndConstantPoolScope(MacroAssembler* masm, StackFrame::Type type)
127 if (type_ != StackFrame::MANUAL && type_ != StackFrame::NONE)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
ExceptionExtensions.cs 47 public static StackFrame[] getStackTrace(Exception e) {
49 StackFrame[] frames = trace.GetFrames();
60 public static string getMethodName(StackFrame frame) {
65 public static string getClassName(StackFrame frame) {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
ExceptionExtensions.cs 51 public static StackFrame[] getStackTrace( this Exception e )
54 StackFrame[] frames = trace.GetFrames();
65 public static string getMethodName( this StackFrame frame )
71 public static string getClassName( this StackFrame frame )

Completed in 354 milliseconds

1 2 3 4 5 6 7 8 910