| /sdk/emulator/qtools/ |
| q2dm.cpp | 25 class MyFrame : public StackFrame<symbol_type> {
|
| callstack.h | 20 // use the CallStack class, the user derives a subclass of StackFrame 24 class StackFrame { 27 virtual ~StackFrame() {};
|
| /external/llvm/lib/ExecutionEngine/Interpreter/ |
| Execution.cpp | [all...] |
| /external/v8/src/x64/ |
| macro-assembler-x64.h | 197 void EnterInternalFrame() { EnterFrame(StackFrame::INTERNAL); } 198 void LeaveInternalFrame() { LeaveFrame(StackFrame::INTERNAL); } 200 void EnterConstructFrame() { EnterFrame(StackFrame::CONSTRUCT); } 201 void LeaveConstructFrame() { LeaveFrame(StackFrame::CONSTRUCT); } [all...] |
| code-stubs-x64.cc | [all...] |
| macro-assembler-x64.cc | [all...] |
| /external/v8/src/ |
| platform-solaris.cc | 281 Vector<OS::StackFrame>& frames; 318 int OS::StackWalk(Vector<OS::StackFrame> frames) {
|
| top.cc | 235 // Create a JSObject to hold the information for the StackFrame. 236 Handle<JSObject> stackFrame = factory()->NewJSObject(object_function()); 257 SetLocalPropertyNoThrow(stackFrame, column_key, 260 SetLocalPropertyNoThrow(stackFrame, line_key, 266 SetLocalPropertyNoThrow(stackFrame, script_key, script_name); 282 SetLocalPropertyNoThrow(stackFrame, script_name_or_source_url_key, 291 SetLocalPropertyNoThrow(stackFrame, function_key, fun_name); 298 SetLocalPropertyNoThrow(stackFrame, eval_key, is_eval); 304 SetLocalPropertyNoThrow(stackFrame, constructor_key, is_constructor); 307 FixedArray::cast(stack_trace->elements())->set(frames_seen, *stackFrame); [all...] |
| platform-win32.cc | [all...] |
| platform-openbsd.cc | 311 int OS::StackWalk(Vector<OS::StackFrame> frames) {
|
| platform-cygwin.cc | 318 int OS::StackWalk(Vector<OS::StackFrame> frames) {
|
| platform-freebsd.cc | 321 int OS::StackWalk(Vector<OS::StackFrame> frames) {
|
| platform-macos.cc | 320 int OS::StackWalk(Vector<StackFrame> frames) {
|
| api.cc | [all...] |
| runtime.cc | [all...] |
| builtins.cc | 153 StackFrame* frame = it.frame(); 161 // This inlines the part of StackFrame::ComputeType that grabs the 162 // type of the current frame. Note that StackFrame::ComputeType 166 const Smi* kConstructMarker = Smi::FromInt(StackFrame::CONSTRUCT); [all...] |
| platform-linux.cc | 514 int OS::StackWalk(Vector<OS::StackFrame> frames) {
|
| /external/v8/test/cctest/ |
| test-accessors.cc | 398 i::StackFrame* frame = iter.frame(); 399 CHECK(i != 0 || (frame->type() == i::StackFrame::EXIT));
|
| test-log-stack-tracer.cc | 226 i::StackFrame* calling_frame = frame_iterator.frame();
|
| /external/v8/include/ |
| v8.h | 106 class StackFrame; 748 * StackFrame when grabbing the current stack trace. 763 * Returns a StackFrame at a particular index. 765 Local<StackFrame> GetFrame(uint32_t index) const; 773 * Returns StackTrace as a v8::Array that contains StackFrame objects. 782 * StackFrame. 793 class V8EXPORT StackFrame { 814 * function for this StackFrame. 820 * function for this StackFrame or sourceURL value if the script name [all...] |
| /external/dbus/dbus/ |
| dbus-sysdeps-win.c | [all...] |
| /external/valgrind/tsan/ |
| ts_pin.cc | 116 //--------------- StackFrame ----------------- {{{1 117 struct StackFrame { 120 StackFrame(uintptr_t p, uintptr_t s) : pc(p), sp(s) { } 208 vector<StackFrame> shadow_stack; [all...] |
| /external/v8/src/arm/ |
| code-stubs-arm.cc | [all...] |
| /external/v8/src/ia32/ |
| code-stubs-ia32.cc | [all...] |
| macro-assembler-ia32.cc | 312 void MacroAssembler::EnterFrame(StackFrame::Type type) { 325 void MacroAssembler::LeaveFrame(StackFrame::Type type) { [all...] |