Home
last modified time | relevance | path

Searched refs:caller_frame (Results 1 – 7 of 7) sorted by relevance

/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_stacktrace.cc86 uhwptr *caller_frame = (uhwptr*)frame[0]; in FastUnwindStack() local
87 if (!IsValidFrame((uptr)caller_frame, stack_top, bottom) || in FastUnwindStack()
88 !IsAligned((uptr)caller_frame, sizeof(uhwptr))) in FastUnwindStack()
90 uhwptr pc1 = caller_frame[2]; in FastUnwindStack()
/external/tensorflow/tensorflow/python/autograph/pyct/
Dinspect_utils.py258 caller_frame = tf_inspect.currentframe().f_back
263 for v in itertools.chain(caller_frame.f_locals.values(),
264 caller_frame.f_globals.values()):
276 del caller_frame
/external/python/cpython2/Lib/
Dbdb.py199 caller_frame = self.frame_returning.f_back
200 if caller_frame and not caller_frame.f_trace:
201 caller_frame.f_trace = self.trace_dispatch
/external/python/cpython3/Lib/
Dbdb.py303 caller_frame = self.frame_returning.f_back
304 if caller_frame and not caller_frame.f_trace:
305 caller_frame.f_trace = self.trace_dispatch
/external/libvpx/libvpx/third_party/googletest/src/src/
Dgtest.cc4329 void* caller_frame = nullptr; in CurrentStackTrace() local
4332 caller_frame = caller_frame_; in CurrentStackTrace()
4336 if (raw_stack[i] == caller_frame && in CurrentStackTrace()
4365 void* caller_frame = nullptr; in UponLeavingGTest() local
4366 if (absl::GetStackTrace(&caller_frame, 1, 3) <= 0) { in UponLeavingGTest()
4367 caller_frame = nullptr; in UponLeavingGTest()
4371 caller_frame_ = caller_frame; in UponLeavingGTest()
/external/googletest/googletest/src/
Dgtest.cc4376 void* caller_frame = nullptr; in CurrentStackTrace() local
4379 caller_frame = caller_frame_; in CurrentStackTrace()
4383 if (raw_stack[i] == caller_frame && in CurrentStackTrace()
4412 void* caller_frame = nullptr; in UponLeavingGTest() local
4413 if (absl::GetStackTrace(&caller_frame, 1, 3) <= 0) { in UponLeavingGTest()
4414 caller_frame = nullptr; in UponLeavingGTest()
4418 caller_frame_ = caller_frame; in UponLeavingGTest()
/external/tensorflow/tensorflow/contrib/tpu/python/tpu/
Dkeras_support.py442 caller_frame = sys._getframe().f_back
443 caller_obj = caller_frame.f_locals.get('self')