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

  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
traceback.h 14 struct _traceback *tb_next; member in struct:_traceback
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
traceback.h 14 struct _traceback *tb_next; member in struct:_traceback
  /external/chromium_org/third_party/jinja2/
debug.py 43 def tb_next(self): member in class:TracebackFrameProxy
163 tb = tb.tb_next
171 tb = tb.tb_next
176 next = tb.tb_next
260 new_tb = exc_info[2].tb_next
268 traceback objects. The function returned allows resetting `tb_next` on
303 ('tb_next', ctypes.POINTER(_Traceback)),
310 """Set the tb_next attribute of a traceback object."""
315 if tb.tb_next is not None:
316 old = _Traceback.from_address(id(tb.tb_next))
    [all...]
  /external/qemu/
exec-all.h 149 unsigned long tb_next[2]; /* address of jump generated code */ member in struct:TranslationBlock
320 tb->tb_next[n] = addr;
326 TranslationBlock *tb_next)
331 tb_set_jmp_target(tb, n, (unsigned long)tb_next->tc_ptr);
334 tb->jmp_next[n] = tb_next->jmp_first;
335 tb_next->jmp_first = (TranslationBlock *)((long)(tb) | (n));
exec.c 950 TranslationBlock *tb, *tb_next, *saved_tb; local
980 tb_next = tb->page_next[n];
1029 tb = tb_next;
1300 TranslationBlock *tb1, *tb_next, **ptb; local
    [all...]
  /external/qemu/tcg/
tcg.h 284 unsigned long *tb_next; member in struct:TCGContext

Completed in 342 milliseconds