Searched refs:last_tb (Results 1 – 4 of 4) sorted by relevance
/external/python/cpython3/Lib/ |
D | code.py | 139 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/ |
D | AudioTest.java | 54 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.c | 382 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.c | 383 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()
|