Home
last modified time | relevance | path

Searched refs:stack_frame (Results 1 – 21 of 21) sorted by relevance

/external/llvm-project/compiler-rt/lib/sanitizer_common/
Dsanitizer_unwind_win.cpp50 STACKFRAME64 stack_frame; in UnwindSlow() local
51 memset(&stack_frame, 0, sizeof(stack_frame)); in UnwindSlow()
58 stack_frame.AddrPC.Offset = ctx.Rip; in UnwindSlow()
59 stack_frame.AddrFrame.Offset = ctx.Rbp; in UnwindSlow()
60 stack_frame.AddrStack.Offset = ctx.Rsp; in UnwindSlow()
63 stack_frame.AddrPC.Offset = ctx.Eip; in UnwindSlow()
64 stack_frame.AddrFrame.Offset = ctx.Ebp; in UnwindSlow()
65 stack_frame.AddrStack.Offset = ctx.Esp; in UnwindSlow()
67 stack_frame.AddrPC.Mode = AddrModeFlat; in UnwindSlow()
68 stack_frame.AddrFrame.Mode = AddrModeFlat; in UnwindSlow()
[all …]
/external/chromium-trace/catapult/systrace/profile_chrome/third_party/
Dperf_to_tracing.py180 stack_frame = root_chain
182 if call in stack_frame.children:
183 stack_frame = stack_frame.children[call]
187 new_node.parent_id = stack_frame.stack_id
188 stack_frame.children[call] = new_node
189 stack_frame = new_node
192 sample = PerfSample(stack_frame.stack_id,
200 stack_frame.samples.append(sample)
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_win.cc734 STACKFRAME64 stack_frame; in SlowUnwindStackWithContext() local
735 memset(&stack_frame, 0, sizeof(stack_frame)); in SlowUnwindStackWithContext()
739 stack_frame.AddrPC.Offset = ctx.Rip; in SlowUnwindStackWithContext()
740 stack_frame.AddrFrame.Offset = ctx.Rbp; in SlowUnwindStackWithContext()
741 stack_frame.AddrStack.Offset = ctx.Rsp; in SlowUnwindStackWithContext()
744 stack_frame.AddrPC.Offset = ctx.Eip; in SlowUnwindStackWithContext()
745 stack_frame.AddrFrame.Offset = ctx.Ebp; in SlowUnwindStackWithContext()
746 stack_frame.AddrStack.Offset = ctx.Esp; in SlowUnwindStackWithContext()
748 stack_frame.AddrPC.Mode = AddrModeFlat; in SlowUnwindStackWithContext()
749 stack_frame.AddrFrame.Mode = AddrModeFlat; in SlowUnwindStackWithContext()
[all …]
/external/libchrome/base/trace_event/
Dheap_profiler_allocation_context_tracker.cc117 AllocationContextTracker::PseudoStackFrame stack_frame) { in PushPseudoStackFrame() argument
122 StackFrame::FromTraceEventName(stack_frame.trace_event_name)); in PushPseudoStackFrame()
129 AllocationContextTracker::PseudoStackFrame stack_frame) { in PopPseudoStackFrame() argument
207 for (const StackFrame& stack_frame : tracked_stack_) { in GetContextSnapshot() local
210 *backtrace++ = stack_frame; in GetContextSnapshot()
Dheap_profiler_allocation_context_tracker.h99 void PushPseudoStackFrame(PseudoStackFrame stack_frame);
100 void PopPseudoStackFrame(PseudoStackFrame stack_frame);
/external/tensorflow/tensorflow/python/util/
Dtf_should_use.py41 def __init__(self, type_, repr_, stack_frame, error_in_function, argument
45 self._stack_frame = stack_frame
204 stack_frame = sys.exc_info()[2].tb_frame.f_back
209 stack_frame=stack_frame,
/external/tensorflow/tensorflow/python/profiler/
Dpprof_profiler.py319 stack_frame = datum.traceback[-1]
325 prev_stack_frame = stack_frame
326 stack_frame = datum.traceback[stack_frame_index]
332 curr_file_path = stack_frame[0]
333 curr_line_number = stack_frame[1]
/external/tensorflow/tensorflow/python/debug/lib/
Ddebug_events_writer_test.py80 stack_frame = debug_event_pb2.StackFrameWithId()
81 stack_frame.id = "stack_%d" % i
82 stack_frame.file_line_col.file_index = i * 10
83 writer.WriteStackFrameWithId(stack_frame)
147 stack_frame = debug_event_pb2.StackFrameWithId()
149 stack_frame.id = "stack_frame_%d" % stack_frame_state["counter"]
151 writer.WriteStackFrameWithId(stack_frame)
/external/google-breakpad/src/google_breakpad/processor/
Dstack_frame_symbolizer.h82 StackFrame* stack_frame);
/external/llvm-project/debuginfo-tests/dexter/dex/debugger/visualstudio/
DVisualStudio.py143 stack_frame = stack_frames[idx]
144 self._debugger.CurrentStackFrame = stack_frame.raw
/external/tensorflow/tensorflow/core/platform/
DBUILD637 name = "stack_frame",
638 hdrs = ["stack_frame.h"],
649 ":stack_frame",
1394 "stack_frame.h",
1643 "stack_frame.h",
/external/scapy/test/
Dlinux.uts22 def handler(signum, stack_frame):
/external/tensorflow/tensorflow/compiler/jit/
Ddeadness_analysis.cc496 IncrementStackDepth stack_frame(this); in MakeNotPredicateImpl() local
497 if (!stack_frame.HasOverflowed()) { in MakeNotPredicateImpl()
675 IncrementStackDepth stack_frame(this); in MakeAndOrImpl() local
676 if (stack_frame.HasOverflowed()) { in MakeAndOrImpl()
/external/tensorflow/tensorflow/core/util/
Ddebug_events_writer_test.cc525 StackFrameWithId* stack_frame = new StackFrameWithId(); in TEST_F() local
526 stack_frame->set_id(strings::Printf("e%.2d", index)); in TEST_F()
527 TF_ASSERT_OK(writer->WriteStackFrameWithId(stack_frame)); in TEST_F()
DBUILD484 "//tensorflow/core/platform:stack_frame",
/external/autotest/site_utils/
Dtest_that.py240 def resend_sig(signum, stack_frame): argument
Dtest_runner_utils.py720 def sigint_handler(signum, stack_frame): argument
/external/tensorflow/tensorflow/python/eager/
Dpywrap_tfe_src.cc1002 for (const tensorflow::StackFrame& stack_frame : stack_trace) { in FormatErrorStatusStackTrace() local
1004 getline, const_cast<char*>("si"), stack_frame.file_name.c_str(), in FormatErrorStatusStackTrace()
1005 stack_frame.line_number); in FormatErrorStatusStackTrace()
1008 result << " File \"" << stack_frame.file_name << "\", line " in FormatErrorStatusStackTrace()
1009 << stack_frame.line_number << ", in " << stack_frame.function_name in FormatErrorStatusStackTrace()
/external/google-breakpad/src/tools/mac/crash_report/crash_report.xcodeproj/
Dproject.pbxproj149 …1B8ACD00F8391B /* stack_frame.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType…
353 9BDF17010B1B8ACD00F8391B /* stack_frame.h */,
/external/google-breakpad/
DMakefile.am218 src/google_breakpad/processor/stack_frame.h \
DMakefile.in369 src/google_breakpad/processor/stack_frame.h \
2199 @DISABLE_PROCESSOR_FALSE@ src/google_breakpad/processor/stack_frame.h \