/external/qemu/hw/ |
arm_pic.h | 2 * Generic ARM Programmable Interrupt Controller support. 9 * Arm hardware uses a wide variety of interrupt handling hardware. 10 * This provides a generic framework for connecting interrupt sources and 19 /* The CPU is also modeled as an interrupt controller. */
|
/external/qemu/ |
hpet.h | 15 #define HPET_IE_ON _IO('h', 0x01) /* interrupt on */ 16 #define HPET_IE_OFF _IO('h', 0x02) /* interrupt off */
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
hpet.h | 15 #define HPET_IE_ON _IO('h', 0x01) /* interrupt on */ 16 #define HPET_IE_OFF _IO('h', 0x02) /* interrupt off */
|
/external/kernel-headers/original/linux/spi/ |
cpcap.h | 108 CPCAP_REG_INT1 = CPCAP_REG_START, /* Interrupt 1 */ 109 CPCAP_REG_INT2, /* Interrupt 2 */ 110 CPCAP_REG_INT3, /* Interrupt 3 */ 111 CPCAP_REG_INT4, /* Interrupt 4 */ 112 CPCAP_REG_INTM1, /* Interrupt Mask 1 */ 113 CPCAP_REG_INTM2, /* Interrupt Mask 2 */ 114 CPCAP_REG_INTM3, /* Interrupt Mask 3 */ 115 CPCAP_REG_INTM4, /* Interrupt Mask 4 */ 116 CPCAP_REG_INTS1, /* Interrupt Sense 1 */ 117 CPCAP_REG_INTS2, /* Interrupt Sense 2 * [all...] |
/external/netperf/ |
netcpu_pstatnew.c | 34 interrupt. so, we can now use those to calculate CPU utilization 45 uint64_t interrupt; member in struct:cpu_time_counters 131 res[i].interrupt = (((uint64_t)psp[i].psp_interruptcycles.psc_hi << 32) + 137 res[i].interrupt); 167 "\t interrupt %llu\n",counters[instance].interrupt); 227 thing in measuring user, kernel, interrupt and idle all together 228 instead of overlapping interrupt with the others like an OS that 230 accounting for interrupt cycles, whereby the cycles do not get 231 properly accounted. The sum of user, kernel, interrupt and idl [all...] |
netcpu_kstat10.c | 48 uint64_t interrupt; member in struct:cpu_time_counters 67 "\t interrupt %llu\n",counters[instance].interrupt); 217 counters[cpu_num].interrupt = 0; 231 counters[cpu_num].interrupt += knp->value.ui64; 354 the interrupt time accounting is in parallel with the other 356 idle will also include time spent in interrupt. for netperf's 361 we could just subtract interrupt time from idle. that has the 365 mechanism, suggested by a Sun engineer is to subtract interrupt 368 with the interrupt time and use that to calculate a new idl [all...] |
/external/oprofile/module/x86/ |
op_arch.h | 21 /* Bit in processor's status register for interrupt masking */
|
/external/qemu-pc-bios/vgabios/ |
Notes | 11 - need to rework the tables as explained in Interrupt list
|
/frameworks/ex/variablespeed/tests/src/com/android/ex/variablespeed/ |
AwaitableCompletionListener.java | 42 // If this thread is using interrupt to shut down, preserve interrupt status and return. 43 Thread.currentThread().interrupt();
|
AwaitableErrorListener.java | 50 // If this thread is using interrupt to shut down, preserve interrupt status and return. 51 Thread.currentThread().interrupt();
|
/bionic/libc/kernel/arch-sh/asm/ |
push-switch.h | 16 #include <linux/interrupt.h>
|
/dalvik/tests/050-sync-test/ |
expected.txt | 30 Interrupt Test
|
/development/samples/USB/MissileLauncher/ |
README.txt | 12 - Receiving packets on an interrupt endpoint using a thread that calls
|
/external/apache-http/src/org/apache/http/impl/conn/tsccm/ |
WaitingThreadAborter.java | 33 /** A simple class that can interrupt a {@link WaitingThread}. */ 46 waitingThread.interrupt(); 54 * @param waitingThread The thread to interrupt when aborting. 59 waitingThread.interrupt();
|
/external/kernel-headers/original/asm-arm/arch/ |
omap24xx.h | 13 /* interrupt controller */
|
/external/kernel-headers/original/asm-arm/ |
irq.h | 15 * Use this value to indicate lack of interrupt
|
smp.h | 59 * Broadcast a timer interrupt to the other CPUs. 101 * Setup a local timer interrupt for a CPU. 106 * Stop a local timer interrupt. 128 * show local interrupt info
|
/external/kernel-headers/original/asm-x86/ |
math_emu.h | 10 following a device-not-present interrupt, part of it saved
|
hw_irq_32.h | 26 * Interrupt entry/exit code at both C and assembly level 29 extern void (*interrupt[NR_IRQS])(void);
|
/external/kernel-headers/original/linux/ |
irq.h | 28 * Bits 0-16 are reserved for the IRQF_* bits in linux/interrupt.h 66 * struct irq_chip - hardware interrupt chip descriptor 69 * @startup: start up the interrupt (defaults to ->enable if NULL) 70 * @shutdown: shut down the interrupt (defaults to ->disable if NULL) 71 * @enable: enable the interrupt (defaults to chip->unmask if NULL) 72 * @disable: disable the interrupt (defaults to chip->mask if NULL) 73 * @ack: start of a new interrupt 74 * @mask: mask an interrupt source 75 * @mask_ack: ack and mask an interrupt source 76 * @unmask: unmask an interrupt sourc [all...] |
irqreturn.h | 16 * IRQ_HANDLED means that we did have a valid interrupt and handled it.
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/asm/ |
kvm.h | 12 /* Architectural interrupt line count. */ 26 __u8 irr; /* interrupt request register */ 27 __u8 imr; /* interrupt mask register */ 28 __u8 isr; /* interrupt service register */
|
/dalvik/tests/033-class-init-deadlock/src/ |
Main.java | 24 thread1.interrupt(); 25 thread2.interrupt();
|
/external/qemu/distrib/sdl-1.2.12/src/audio/mint/ |
SDL_mintaudio_mcsn.h | 40 unsigned short pint; /* Interrupt at end of replay */ 41 unsigned short rint; /* Interrupt at end of record */
|
/external/qemu/target-arm/ |
exec.h | 44 /* An interrupt wakes the CPU even if the I and F CPSR bits are 46 actual interrupt. */
|