HomeSort by relevance Sort by last modified time
    Searched refs:last_tb (Results 1 - 6 of 6) sorted by null

  /external/python/cpython3/Lib/
code.py 140 sys.last_type, sys.last_value, last_tb = ei = sys.exc_info()
141 sys.last_traceback = last_tb
143 lines = traceback.format_exception(ei[0], ei[1], last_tb.tb_next)
149 sys.excepthook(ei[0], ei[1], last_tb)
151 last_tb = ei = None
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/TargetTool/
TargetTool.py 79 last_type, last_value, last_tb = sys.exc_info()
80 traceback.print_exception(last_type, last_value, last_tb)
136 last_type, last_value, last_tb = sys.exc_info()
137 traceback.print_exception(last_type, last_value, last_tb)
258 last_type, last_value, last_tb = sys.exc_info()
259 traceback.print_exception(last_type, last_value, last_tb)
  /external/walt/android/WALT/app/src/main/java/org/chromium/latency/walt/
AudioTest.java 54 private long last_tb = 0; field in class:AudioTest
337 last_tb = Integer.parseInt(s);
359 long tb = last_tb; // When WALT started a beep (according to WALT clock)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
_lsprof.c 383 PyObject *last_type, *last_value, *last_tb; local
384 PyErr_Fetch(&last_type, &last_value, &last_tb);
409 PyErr_Restore(last_type, last_value, last_tb);
  /external/python/cpython2/Modules/
_lsprof.c 383 PyObject *last_type, *last_value, *last_tb; local
384 PyErr_Fetch(&last_type, &last_value, &last_tb);
409 PyErr_Restore(last_type, last_value, last_tb);
  /external/python/cpython3/Modules/
_lsprof.c 382 PyObject *last_type, *last_value, *last_tb; local
383 PyErr_Fetch(&last_type, &last_value, &last_tb);
408 PyErr_Restore(last_type, last_value, last_tb);

Completed in 155 milliseconds