Searched refs:stack_frames (Results 1 – 15 of 15) sorted by relevance
/external/autotest/server/hosts/ |
D | ssh_host.py | 92 stack_frames = inspect.stack() 94 for frame in stack_frames[lowest_frames:highest_frames]: 97 del stack_frames
|
/external/tensorflow/tensorflow/python/debug/lib/ |
D | dumping_callback_test.py | 81 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)
|
D | dumping_callback.py | 237 stack_frames = tf_stack.extract_stack() 240 for file_path, lineno, func, _ in stack_frames:
|
/external/v8/src/objects/ |
D | js-objects.tq | 107 stack_frames: Object;
|
D | js-objects-inl.h | 486 ACCESSORS(JSMessageObject, stack_frames, Object, kStackFramesOffset) in ACCESSORS()
|
D | js-objects.h | 1093 DECL_ACCESSORS(stack_frames, Object)
|
/external/v8/src/execution/ |
D | messages.h | 338 Handle<Object> argument, Handle<FixedArray> stack_frames);
|
D | messages.cc | 82 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/ |
D | pcre2_intmodedep.h | 850 heapframe *stack_frames; /* The original vector on the stack */ member
|
D | pcre2_match.c | 652 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/ |
D | factory.h | 758 int bytecode_offset, Handle<Script> script, Handle<Object> stack_frames);
|
D | factory.cc | 2662 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/ |
D | c-api.cc | 909 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/ |
D | objects-printer.cc | 1022 os << "\n - stack_frames: " << Brief(stack_frames()); in JSMessageObjectPrint()
|
/external/v8/src/api/ |
D | api.cc | 2899 i::Handle<i::Object> stackFramesObj(self->stack_frames(), isolate); in GetStackTrace()
|