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

  /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 96 env->exception_index = -1;
301 env->exception_index = -1;
312 if (env->exception_index >= 0) {
313 if (env->exception_index >= EXCP_INTERRUPT) {
315 ret = env->exception_index;
326 do_interrupt_user(env->exception_index,
333 ret = env->exception_index;
340 do_interrupt(env->exception_index,
371 env->exception_index = -1;
396 env->exception_index = EXCP_DEBUG
    [all...]
cpu-defs.h 191 int exception_index; \
kqemu.c 871 env->exception_index = ret & 0xff;
878 LOG_INT("kqemu: interrupt v=%02x:\n", env->exception_index);
882 env->exception_index = ret & 0xff;
890 env->exception_index, env->error_code);
kvm-all.c 648 env->exception_index = EXCP_DEBUG;
664 env->exception_index = EXCP_INTERRUPT;
Changelog 49 - kvm: x86: Save/restore exception_index (Jan Kiszka)
exec.c     [all...]
  /external/qemu/target-mips/
helper.c 258 env->exception_index = exception;
593 if (qemu_log_enabled() && env->exception_index != EXCP_EXT_INTERRUPT) {
594 if (env->exception_index < 0 || env->exception_index > EXCP_LAST)
597 name = excp_names[env->exception_index];
602 if (env->exception_index == EXCP_EXT_INTERRUPT &&
604 env->exception_index = EXCP_DINT;
606 switch (env->exception_index) {
794 qemu_log("Invalid MIPS exception %d. Exiting\n", env->exception_index);
795 printf("Invalid MIPS exception %d. Exiting\n", env->exception_index);
    [all...]
op_helper.c 34 env->exception_index = exception;
    [all...]
translate.c     [all...]
  /external/qemu/target-arm/
op_helper.c 27 env->exception_index = tt;
96 raise_exception(env->exception_index);
277 env->exception_index = EXCP_HLT;
284 env->exception_index = excp;
helper.c 578 env->exception_index = -1;
585 env->exception_index = EXCP_PREFETCH_ABORT;
588 env->exception_index = EXCP_DATA_ABORT;
764 switch (env->exception_index) {
795 cpu_abort(env, "Unhandled exception 0x%x\n", env->exception_index);
842 switch (env->exception_index) {
927 cpu_abort(env, "Unhandled exception 0x%x\n", env->exception_index);
    [all...]
  /external/qemu/target-i386/
exec.h 66 void QEMU_NORETURN raise_exception_err(int exception_index, int error_code);
67 void QEMU_NORETURN raise_exception(int exception_index);
op_helper.c 1003 env->exception_index = EXCP_SYSCALL;
    [all...]
hax-all.c 598 env->exception_index = EXCP_HLT;
618 env->exception_index = EXCP_INTERRUPT;
helper.c     [all...]
kvm.c 767 env->exception_index = EXCP_HLT;
  /external/qemu/hw/
goldfish_trace.c 269 cpu_single_env->exception_index = EXCP_HLT;

Completed in 202 milliseconds