Searched refs:cfi_frame_info (Results 1 - 17 of 17) sorted by relevance

/external/google-breakpad/src/processor/
H A Dstackwalker_mips.h44 #include "processor/cfi_frame_info.h"
68 // Use cfi_frame_info (derived from STACK CFI records) to construct
72 CFIFrameInfo* cfi_frame_info);
H A Dfast_source_line_resolver_unittest.cc214 scoped_ptr<CFIFrameInfo> cfi_frame_info; local
279 cfi_frame_info.reset(fast_resolver.FindCFIFrameInfo(&frame));
280 ASSERT_FALSE(cfi_frame_info.get());
284 cfi_frame_info.reset(fast_resolver.FindCFIFrameInfo(&frame));
285 ASSERT_FALSE(cfi_frame_info.get());
309 cfi_frame_info.reset(fast_resolver.FindCFIFrameInfo(&frame));
310 ASSERT_TRUE(cfi_frame_info.get());
311 ASSERT_TRUE(cfi_frame_info.get()
319 cfi_frame_info.reset(fast_resolver.FindCFIFrameInfo(&frame));
320 ASSERT_TRUE(cfi_frame_info
[all...]
H A Dcfi_frame_info-inl.h34 // cfi_frame_info-inl.h: Definitions for cfi_frame_info.h inlined functions.
46 const CFIFrameInfo &cfi_frame_info,
65 if (!cfi_frame_info.FindCallerRegs<RegisterType>(callee_registers, memory,
44 FindCallerRegisters( const MemoryRegion &memory, const CFIFrameInfo &cfi_frame_info, const RawContextType &callee_context, int callee_validity, RawContextType *caller_context, int *caller_validity) const argument
H A Dstackwalker_amd64.h47 #include "processor/cfi_frame_info.h"
75 // Use cfi_frame_info (derived from STACK CFI records) to construct
79 CFIFrameInfo* cfi_frame_info);
H A Dstackwalker_arm.h75 // Use cfi_frame_info (derived from STACK CFI records) to construct
79 CFIFrameInfo* cfi_frame_info);
H A Dstackwalker_arm64.h76 // Use cfi_frame_info (derived from STACK CFI records) to construct
80 CFIFrameInfo* cfi_frame_info);
H A Dstackwalker_x86.h49 #include "processor/cfi_frame_info.h"
88 // Use cfi_frame_info (derived from STACK CFI records) to construct
92 CFIFrameInfo* cfi_frame_info);
H A Dbasic_source_line_resolver_unittest.cc45 #include "processor/cfi_frame_info.h"
186 scoped_ptr<CFIFrameInfo> cfi_frame_info; local
252 cfi_frame_info.reset(resolver.FindCFIFrameInfo(&frame));
253 ASSERT_FALSE(cfi_frame_info.get());
257 cfi_frame_info.reset(resolver.FindCFIFrameInfo(&frame));
258 ASSERT_FALSE(cfi_frame_info.get());
282 cfi_frame_info.reset(resolver.FindCFIFrameInfo(&frame));
283 ASSERT_TRUE(cfi_frame_info.get());
284 ASSERT_TRUE(cfi_frame_info.get()
292 cfi_frame_info
[all...]
H A Dstackwalker_x86.cc49 #include "processor/cfi_frame_info.h"
110 if (cfi_frame_info)
111 delete cfi_frame_info;
112 cfi_frame_info = NULL;
508 CFIFrameInfo* cfi_frame_info) {
510 last_frame->cfi_frame_info = cfi_frame_info;
514 .FindCallerRegisters(*memory_, *cfi_frame_info,
638 CFIFrameInfo* cfi_frame_info = local
640 if (cfi_frame_info)
506 GetCallerByCFIFrameInfo( const vector<StackFrame*> &frames, CFIFrameInfo* cfi_frame_info) argument
[all...]
H A Dstackwalker_amd64.cc44 #include "processor/cfi_frame_info.h"
130 CFIFrameInfo* cfi_frame_info) {
135 .FindCallerRegisters(*memory_, *cfi_frame_info,
258 scoped_ptr<CFIFrameInfo> cfi_frame_info(
260 if (cfi_frame_info.get())
261 new_frame.reset(GetCallerByCFIFrameInfo(frames, cfi_frame_info.get()));
128 GetCallerByCFIFrameInfo( const vector<StackFrame*> &frames, CFIFrameInfo* cfi_frame_info) argument
H A Dstackwalker_arm.cc43 #include "processor/cfi_frame_info.h"
81 CFIFrameInfo* cfi_frame_info) {
100 if (!cfi_frame_info->FindCallerRegs(callee_registers, *memory_,
252 scoped_ptr<CFIFrameInfo> cfi_frame_info(
254 if (cfi_frame_info.get())
255 frame.reset(GetCallerByCFIFrameInfo(frames, cfi_frame_info.get()));
79 GetCallerByCFIFrameInfo( const vector<StackFrame*> &frames, CFIFrameInfo* cfi_frame_info) argument
H A Dstackwalker_arm64.cc43 #include "processor/cfi_frame_info.h"
80 CFIFrameInfo* cfi_frame_info) {
100 if (!cfi_frame_info->FindCallerRegs(callee_registers, *memory_,
238 scoped_ptr<CFIFrameInfo> cfi_frame_info(
240 if (cfi_frame_info.get())
241 frame.reset(GetCallerByCFIFrameInfo(frames, cfi_frame_info.get()));
78 GetCallerByCFIFrameInfo( const vector<StackFrame*> &frames, CFIFrameInfo* cfi_frame_info) argument
H A Dstackwalker_mips.cc42 #include "processor/cfi_frame_info.h"
96 CFIFrameInfo* cfi_frame_info) {
111 if (!cfi_frame_info->FindCallerRegs(callee_registers, *memory_,
180 scoped_ptr<CFIFrameInfo> cfi_frame_info(
182 if (cfi_frame_info.get())
183 new_frame.reset(GetCallerByCFIFrameInfo(frames, cfi_frame_info.get()));
94 GetCallerByCFIFrameInfo( const vector<StackFrame*>& frames, CFIFrameInfo* cfi_frame_info) argument
H A Dcfi_frame_info.h34 // cfi_frame_info.h: Define the CFIFrameInfo class, which holds the
260 const CFIFrameInfo &cfi_frame_info,
273 #include "cfi_frame_info-inl.h"
H A Dstackwalker_x86_unittest.cc1999 ASSERT_TRUE(frame0->cfi_frame_info != NULL);
/external/google-breakpad/src/google_breakpad/processor/
H A Dstack_frame_cpu.h77 cfi_frame_info(NULL) {}
97 CFIFrameInfo *cfi_frame_info; member in struct:google_breakpad::StackFrameX86
/external/google-breakpad/
H A DMakefile.am195 src/processor/cfi_frame_info.cc \
196 src/processor/cfi_frame_info.h \
656 src/processor/cfi_frame_info.o \
669 src/processor/cfi_frame_info.o \
707 src/processor/cfi_frame_info.o \
761 src/processor/cfi_frame_info.o \
799 src/processor/cfi_frame_info.o \
837 src/processor/cfi_frame_info.o \
1147 src/processor/cfi_frame_info.o \
1181 src/processor/cfi_frame_info
[all...]

Completed in 140 milliseconds