Lines Matching refs:stack_frame
1328 STACKFRAME64 stack_frame; in StackWalk() local
1329 memset(&stack_frame, 0, sizeof(stack_frame)); in StackWalk()
1331 stack_frame.AddrPC.Offset = context.Rip; in StackWalk()
1332 stack_frame.AddrFrame.Offset = context.Rbp; in StackWalk()
1333 stack_frame.AddrStack.Offset = context.Rsp; in StackWalk()
1335 stack_frame.AddrPC.Offset = context.Eip; in StackWalk()
1336 stack_frame.AddrFrame.Offset = context.Ebp; in StackWalk()
1337 stack_frame.AddrStack.Offset = context.Esp; in StackWalk()
1339 stack_frame.AddrPC.Mode = AddrModeFlat; in StackWalk()
1340 stack_frame.AddrFrame.Mode = AddrModeFlat; in StackWalk()
1341 stack_frame.AddrStack.Mode = AddrModeFlat; in StackWalk()
1351 &stack_frame, // StackFrame in StackWalk()
1360 ASSERT((stack_frame.AddrPC.Offset >> 32) == 0); // 32-bit address. in StackWalk()
1362 reinterpret_cast<void*>(stack_frame.AddrPC.Offset); in StackWalk()
1373 stack_frame.AddrPC.Offset, // Address in StackWalk()
1384 stack_frame.AddrPC.Offset, // dwAddr in StackWalk()