Home
last modified time | relevance | path

Searched refs:stack_frame_with_id (Results 1 – 8 of 8) sorted by relevance

/external/tensorflow/tensorflow/python/debug/lib/
Ddebug_events_writer.py72 def WriteStackFrameWithId(self, stack_frame_with_id): argument
81 stack_frame_with_id=stack_frame_with_id)
Ddebug_events_reader.py978 stack_frame_with_id = debug_event.stack_frame_with_id
979 file_line_col = stack_frame_with_id.file_line_col
980 self._unprocessed_stack_frames[stack_frame_with_id.id] = file_line_col
Ddumping_callback.py280 stack_frame_with_id = debug_event_pb2.StackFrameWithId(
283 writer.WriteStackFrameWithId(stack_frame_with_id)
Ddebug_events_writer_test.py96 actuals = list(item.debug_event.stack_frame_with_id
194 actuals = list(item.debug_event.stack_frame_with_id
/external/tensorflow/tensorflow/core/util/
Ddebug_events_writer.h134 Status WriteStackFrameWithId(StackFrameWithId* stack_frame_with_id);
Ddebug_events_writer.cc208 StackFrameWithId* stack_frame_with_id) { in WriteStackFrameWithId() argument
210 debug_event.set_allocated_stack_frame_with_id(stack_frame_with_id); in WriteStackFrameWithId()
Ddebug_events_writer_test.cc358 StackFrameWithId actual_stack_frame_1 = actuals[0].stack_frame_with_id(); in TEST_F()
368 StackFrameWithId actual_stack_frame_2 = actuals[1].stack_frame_with_id(); in TEST_F()
562 stack_frame_ids.push_back(actuals[i].stack_frame_with_id().id()); in TEST_F()
/external/tensorflow/tensorflow/core/protobuf/
Ddebug_event.proto85 StackFrameWithId stack_frame_with_id = 6; field