HomeSort by relevance Sort by last modified time
    Searched full:exception_index (Results 1 - 24 of 24) sorted by null

  /external/qemu/target-i386/
excp_helper.c 38 void helper_raise_exception(CPUX86State *env, int exception_index)
40 raise_exception(env, exception_index);
102 env->exception_index = intno;
112 int exception_index, int error_code)
114 raise_interrupt(env, exception_index, 0, error_code, 0);
117 void raise_exception(CPUX86State *env, int exception_index)
119 raise_interrupt(env, exception_index, 0, 0, 0);
mem_helper.c 143 raise_exception_err(env, env->exception_index, env->error_code);
svm_helper.c 245 env->exception_index = vector;
254 env->exception_index = EXCP02_NMI;
262 env->exception_index = vector;
270 env->exception_index = vector;
278 qemu_log_mask(CPU_LOG_TB_IN_ASM, " %#x %#x\n", env->exception_index, env->error_code);
614 env->exception_index = -1;
misc_helper.c 523 env->exception_index = EXCP_HLT;
562 env->exception_index = EXCP_DEBUG;
cpu.h     [all...]
hax-all.c 602 env->exception_index = EXCP_HLT;
622 env->exception_index = EXCP_INTERRUPT;
helper.c     [all...]
seg_helper.c 842 env->exception_index = EXCP_SYSCALL;
    [all...]
kvm.c 777 env->exception_index = EXCP_HLT;
  /external/emma/core/java12/com/vladium/jcd/cls/attribute/
IDeclaredExceptionTable.java 63 * @param exception_index constant pool index [must be positive; input not validated]
67 int add (int exception_index);
73 * in the constant pool, in the slot pointed to by 'exception_index'.
76 * @param exception_index constant pool index [must be positive; input not validated]
81 int set (int offset, int exception_index);
DeclaredExceptionTable.java 79 public int add (final int exception_index)
82 m_exceptions.add (exception_index);
87 public int set (final int offset, final int exception_index)
89 return m_exceptions.set (offset, exception_index);
ExceptionsAttribute_info.java 123 final int exception_index = bytes.readU2 (); local
125 m_exceptions.add (exception_index);
  /external/qemu/
cpu-exec.c 88 env->exception_index = -1;
285 env->exception_index = -1;
291 if (env->exception_index >= 0) {
292 if (env->exception_index >= EXCP_INTERRUPT) {
294 ret = env->exception_index;
307 ret = env->exception_index;
311 env->exception_index = -1;
336 env->exception_index = EXCP_DEBUG;
345 env->exception_index = EXCP_HLT;
353 env->exception_index = EXCP_HALTED
    [all...]
kvm-all.c 676 env->exception_index = EXCP_DEBUG;
692 env->exception_index = EXCP_INTERRUPT;
Changelog 49 - kvm: x86: Save/restore exception_index (Jan Kiszka)
exec.c     [all...]
  /external/chromium_org/build/android/pylib/utils/
parallelizer_test.py 112 exception_index = 7
113 exception_msg = 'thing %d' % exception_index
120 i if i != exception_index else Exception(exception_msg),
131 if i == exception_index:
  /external/qemu/target-mips/
helper.c 257 env->exception_index = exception;
594 if (qemu_log_enabled() && env->exception_index != EXCP_EXT_INTERRUPT) {
595 if (env->exception_index < 0 || env->exception_index > EXCP_LAST)
598 name = excp_names[env->exception_index];
603 if (env->exception_index == EXCP_EXT_INTERRUPT &&
605 env->exception_index = EXCP_DINT;
607 switch (env->exception_index) {
795 qemu_log("Invalid MIPS exception %d. Exiting\n", env->exception_index);
796 printf("Invalid MIPS exception %d. Exiting\n", env->exception_index);
    [all...]
op_helper.c 92 env->exception_index = exception;
    [all...]
translate.c     [all...]
  /external/qemu/target-arm/
op_helper.c 29 env->exception_index = tt;
89 raise_exception(env, env->exception_index);
267 env->exception_index = EXCP_HLT;
274 env->exception_index = excp;
helper.c 624 env->exception_index = -1;
631 env->exception_index = EXCP_PREFETCH_ABORT;
634 env->exception_index = EXCP_DATA_ABORT;
810 switch (env->exception_index) {
841 cpu_abort(env, "Unhandled exception 0x%x\n", env->exception_index);
882 switch (env->exception_index) {
967 cpu_abort(env, "Unhandled exception 0x%x\n", env->exception_index);
    [all...]
  /external/qemu/include/exec/
cpu-defs.h 184 int exception_index; \
  /external/qemu/hw/android/goldfish/
trace.c 201 cpu_single_env->exception_index = EXCP_HLT;

Completed in 5207 milliseconds