/external/google-breakpad/src/processor/ |
stackwalker_address_list.h | 60 virtual StackFrame* GetContextFrame();
|
stackwalker_ppc.h | 66 virtual StackFrame* GetContextFrame(); 71 // be returned by GetContextFrame.
|
stackwalker_ppc64.h | 64 virtual StackFrame* GetContextFrame(); 69 // be returned by GetContextFrame.
|
stackwalker_sparc.h | 65 virtual StackFrame* GetContextFrame(); 70 // be returned by GetContextFrame.
|
stackwalker_mips.h | 64 virtual StackFrame* GetContextFrame(); 79 // be returned by GetContextFrame.
|
stackwalker_amd64.h | 71 virtual StackFrame* GetContextFrame(); 94 // be returned by GetContextFrame.
|
stackwalker_arm.h | 65 // GetContextFrame to VALID. This is only for use by unit tests; the 71 virtual StackFrame* GetContextFrame(); 90 // be returned by GetContextFrame.
|
stackwalker_arm64.h | 64 // GetContextFrame to VALID. This is only for use by unit tests; the 72 virtual StackFrame* GetContextFrame(); 91 // be returned by GetContextFrame.
|
stackwalker_address_list.cc | 61 StackFrame* StackwalkerAddressList::GetContextFrame() {
|
stackwalker_x86.h | 76 virtual StackFrame* GetContextFrame(); 103 // be returned by GetContextFrame.
|
stackwalker_ppc64.cc | 56 StackFrame* StackwalkerPPC64::GetContextFrame() {
|
stackwalker_sparc.cc | 56 StackFrame* StackwalkerSPARC::GetContextFrame() {
|
stackwalker_ppc.cc | 65 StackFrame* StackwalkerPPC::GetContextFrame() {
|
stackwalker.cc | 127 // Take ownership of the pointer returned by GetContextFrame. 128 scoped_ptr<StackFrame> frame(GetContextFrame());
|
stackwalker_amd64.cc | 110 StackFrame* StackwalkerAMD64::GetContextFrame() {
|
stackwalker_arm.cc | 61 StackFrame* StackwalkerARM::GetContextFrame() {
|
stackwalker_arm64.cc | 60 StackFrame* StackwalkerARM64::GetContextFrame() {
|
stackwalker_mips.cc | 67 StackFrame* StackwalkerMIPS::GetContextFrame() {
|
stackwalker_amd64_unittest.cc | 143 class GetContextFrame: public StackwalkerAMD64Fixture, public Test { }; 174 TEST_F(GetContextFrame, Simple) { 202 TEST_F(GetContextFrame, NoStackMemory) {
|
stackwalker_arm_unittest.cc | 169 class GetContextFrame: public StackwalkerARMFixture, public Test { }; 171 TEST_F(GetContextFrame, Simple) { 194 TEST_F(GetContextFrame, NoStackMemory) { [all...] |
stackwalker_mips_unittest.cc | 173 class GetContextFrame: public StackwalkerMIPSFixture, public Test { }; 175 TEST_F(GetContextFrame, Simple) { 201 TEST_F(GetContextFrame, NoStackMemory) {
|
stackwalker_x86.cc | 120 StackFrame* StackwalkerX86::GetContextFrame() {
|
stackwalker_arm64_unittest.cc | 167 class GetContextFrame: public StackwalkerARM64Fixture, public Test { }; 171 TEST_F(GetContextFrame, NoStackMemory) { [all...] |
stackwalker_x86_unittest.cc | 183 class GetContextFrame: public StackwalkerX86Fixture, public Test { }; 185 TEST_F(GetContextFrame, Simple) { 211 TEST_F(GetContextFrame, NoStackMemory) { [all...] |
/external/google-breakpad/src/google_breakpad/processor/ |
stackwalker.h | 34 // will extend this class by providing GetContextFrame and GetCallerFrame 67 // Populates the given CallStack by calling GetContextFrame and 198 // trace. Returns NULL on failure. GetContextFrame allocates a new 201 virtual StackFrame* GetContextFrame() = 0; 204 // frame that called the last frame returned by GetContextFrame or
|