Home
last modified time | relevance | path

Searched refs:stack_frames (Results 1 – 10 of 10) sorted by relevance

/external/autotest/server/hosts/
Dssh_host.py89 stack_frames = inspect.stack()
91 for frame in stack_frames[lowest_frames:highest_frames]:
94 del stack_frames
/external/v8/tools/profviz/
Dcomposer.js75 this.stack_frames = []; property in PlotScriptComposer.CodeKind
76 for (var i = 0; i < kStackFrames; i++) this.stack_frames.push([]);
304 if (entry) FindCodeKind(entry.kind).stack_frames[i].push(tick);
490 row = MergeRanges(TicksToRanges(code_kind.stack_frames[i]));
/external/v8/src/
Dmessages.cc53 Handle<JSArray> stack_frames) { in MakeMessageObject() argument
67 Handle<Object> stack_frames_handle = stack_frames.is_null() in MakeMessageObject()
69 : Handle<Object>::cast(stack_frames); in MakeMessageObject()
Dmessages.h722 Handle<JSArray> stack_frames);
Dfactory.h765 Handle<Object> stack_frames);
Dobjects-printer.cc785 os << "\n - stack_frames: " << Brief(stack_frames()); in JSMessageObjectPrint()
Dfactory.cc2387 Handle<Object> stack_frames) { in NewJSMessageObject() argument
2398 message_obj->set_stack_frames(*stack_frames); in NewJSMessageObject()
Dobjects-inl.h6646 ACCESSORS(JSMessageObject, stack_frames, Object, kStackFramesOffset) in ACCESSORS()
Dobjects.h8333 DECL_ACCESSORS(stack_frames, Object)
Dapi.cc2734 i::Handle<i::Object> stackFramesObj(message->stack_frames(), isolate); in GetStackTrace()