Home
last modified time | relevance | path

Searched refs:tb_next (Results 1 – 10 of 10) sorted by relevance

/external/chromium_org/third_party/jinja2/
Ddebug.py44 def tb_next(self): member in TracebackFrameProxy
164 tb = tb.tb_next
172 tb = tb.tb_next
177 next = tb.tb_next
261 new_tb = exc_info[2].tb_next
316 if tb.tb_next is not None:
317 old = _Traceback.from_address(id(tb.tb_next))
320 obj.tb_next = ctypes.POINTER(_Traceback)()
324 obj.tb_next = ctypes.pointer(next)
/external/qemu/include/exec/
Dexec-all.h176 uintptr_t tb_next[2]; /* address of jump generated code */ member
304 tb->tb_next[n] = addr; in tb_set_jmp_target()
310 TranslationBlock *tb_next) in tb_add_jump() argument
315 tb_set_jmp_target(tb, n, (uintptr_t)tb_next->tc_ptr); in tb_add_jump()
318 tb->jmp_next[n] = tb_next->jmp_first; in tb_add_jump()
319 tb_next->jmp_first = (TranslationBlock *)((uintptr_t)(tb) | (n)); in tb_add_jump()
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
Dexecfile.py126 raise ExceptionDuringRun(typ, err, tb.tb_next.tb_next)
/external/chromium_org/tools/telemetry/telemetry/util/
Dexception_formatter.py29 while tb_level.tb_next:
30 tb_level = tb_level.tb_next
/external/qemu/
Dtranslate-all.c162 s->tb_next = NULL; in cpu_gen_code()
169 s->tb_next = tb->tb_next; in cpu_gen_code()
230 s->tb_next = NULL; in cpu_restore_state_from_tb()
233 s->tb_next = tb->tb_next; in cpu_restore_state_from_tb()
1047 TranslationBlock *tb, *tb_next, *saved_tb; in tb_invalidate_phys_page_range() local
1080 tb_next = tb->page_next[n]; in tb_invalidate_phys_page_range()
1130 tb = tb_next; in tb_invalidate_phys_page_range()
1455 TranslationBlock *tb1, *tb_next, **ptb; in tb_reset_jump_recursive2() local
1469 tb_next = tb1; in tb_reset_jump_recursive2()
1472 ptb = &tb_next->jmp_first; in tb_reset_jump_recursive2()
[all …]
/external/lldb/test/unittest2/
Dresult.py149 tb = tb.tb_next
177 tb = tb.tb_next
/external/lldb/examples/python/
Dpytracer.py16 return TracebackFancy(self.t.tb_next)
/external/qemu/tcg/
Dtcg.h458 uintptr_t *tb_next; member
/external/chromium_org/third_party/cython/src/Cython/Compiler/
DVisitor.py115 stacktrace = stacktrace.tb_next
/external/qemu/tcg/i386/
Dtcg-target.c1632 (intptr_t)(s->tb_next + args[0])); in tcg_out_op()