Home
last modified time | relevance | path

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

/external/autotest/server/hosts/
Dssh_host.py92 stack_frames = inspect.stack()
94 for frame in stack_frames[lowest_frames:highest_frames]:
97 del stack_frames
/external/tensorflow/tensorflow/python/debug/lib/
Ddumping_callback_test.py81 def _verifyStackFrames(self, stack_frames): argument
92 frame for frame in stack_frames if frame[0] == _current_file_full_path])
202 host_name, stack_frames = reader.read_execution_stack_trace(execution)
204 self._verifyStackFrames(stack_frames)
452 _, stack_frames = reader.read_graph_op_creation_stack_trace(op_digest)
453 self._verifyStackFrames(stack_frames)
983 _, stack_frames = reader.read_execution_stack_trace(execution)
984 self._verifyStackFrames(stack_frames)
1006 _, stack_frames = reader.read_execution_stack_trace(execution)
1007 self._verifyStackFrames(stack_frames)
Ddumping_callback.py237 stack_frames = tf_stack.extract_stack()
240 for file_path, lineno, func, _ in stack_frames:
/external/v8/src/objects/
Djs-objects.tq107 stack_frames: Object;
Djs-objects-inl.h486 ACCESSORS(JSMessageObject, stack_frames, Object, kStackFramesOffset) in ACCESSORS()
Djs-objects.h1093 DECL_ACCESSORS(stack_frames, Object)
/external/v8/src/execution/
Dmessages.h338 Handle<Object> argument, Handle<FixedArray> stack_frames);
Dmessages.cc82 Handle<Object> argument, Handle<FixedArray> stack_frames) { in MakeMessageObject() argument
99 stack_frames.is_null() ? Handle<Object>::cast(factory->undefined_value()) in MakeMessageObject()
100 : Handle<Object>::cast(stack_frames); in MakeMessageObject()
/external/pcre/dist2/src/
Dpcre2_intmodedep.h850 heapframe *stack_frames; /* The original vector on the stack */ member
Dpcre2_match.c652 if (mb->match_frames != mb->stack_frames) in match()
6053 mb->stack_frames = (heapframe *)stack_frames_vector; in pcre2_match()
6337 mb->match_frames = mb->stack_frames; /* Initial frame vector on the stack */ in pcre2_match()
6845 if (mb->match_frames != mb->stack_frames) in pcre2_match()
/external/v8/src/heap/
Dfactory.h758 int bytecode_offset, Handle<Script> script, Handle<Object> stack_frames);
Dfactory.cc2662 int bytecode_offset, Handle<Script> script, Handle<Object> stack_frames) { in NewJSMessageObject() argument
2692 message_obj->set_stack_frames(*stack_frames); in NewJSMessageObject()
/external/v8/src/wasm/
Dc-api.cc909 i::Handle<i::FixedArray> frames(i::FixedArray::cast(message->stack_frames()), in origin()
923 i::Handle<i::FixedArray> frames(i::FixedArray::cast(message->stack_frames()), in trace()
/external/v8/src/diagnostics/
Dobjects-printer.cc1022 os << "\n - stack_frames: " << Brief(stack_frames()); in JSMessageObjectPrint()
/external/v8/src/api/
Dapi.cc2899 i::Handle<i::Object> stackFramesObj(self->stack_frames(), isolate); in GetStackTrace()