HomeSort by relevance Sort by last modified time
    Searched full:exception_index (Results 1 - 17 of 17) 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 95 env->exception_index = -1;
283 env->exception_index = -1;
294 if (env->exception_index >= 0) {
295 if (env->exception_index >= EXCP_INTERRUPT) {
297 ret = env->exception_index;
308 do_interrupt_user(env->exception_index,
315 ret = env->exception_index;
322 do_interrupt(env->exception_index,
353 env->exception_index = -1;
373 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 645 env->exception_index = EXCP_DEBUG;
661 env->exception_index = EXCP_INTERRUPT;
Changelog 49 - kvm: x86: Save/restore exception_index (Jan Kiszka)
exec.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...]
helper.c     [all...]
kvm.c 767 env->exception_index = EXCP_HLT;
  /external/qemu/hw/
goldfish_trace.c 268 cpu_single_env->exception_index = EXCP_HLT;
  /prebuilt/linux-x86/emulator/
libqemu-audio.a     [all...]

Completed in 153 milliseconds