Home
last modified time | relevance | path

Searched refs:last_tb (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython3/Lib/
Dcode.py139 sys.last_type, sys.last_value, last_tb = ei = sys.exc_info()
140 sys.last_traceback = last_tb
142 lines = traceback.format_exception(ei[0], ei[1], last_tb.tb_next)
148 sys.excepthook(ei[0], ei[1], last_tb)
150 last_tb = ei = None
/external/walt/android/WALT/app/src/main/java/org/chromium/latency/walt/
DAudioTest.java54 private long last_tb = 0; field in AudioTest
337 last_tb = Integer.parseInt(s);
359 long tb = last_tb; // When WALT started a beep (according to WALT clock)
/external/python/cpython3/Modules/
D_lsprof.c382 PyObject *last_type, *last_value, *last_tb; in ptrace_enter_call() local
383 PyErr_Fetch(&last_type, &last_value, &last_tb); in ptrace_enter_call()
408 PyErr_Restore(last_type, last_value, last_tb); in ptrace_enter_call()
/external/python/cpython2/Modules/
D_lsprof.c383 PyObject *last_type, *last_value, *last_tb; in ptrace_enter_call() local
384 PyErr_Fetch(&last_type, &last_value, &last_tb); in ptrace_enter_call()
409 PyErr_Restore(last_type, last_value, last_tb); in ptrace_enter_call()