/libcore/luni/src/main/java/java/util/concurrent/locks/ |
LockSupport.java | 82 * if (wasInterrupted) // reassert interrupt status on exit 83 * current.interrupt(); 141 * <li>Some other thread {@linkplain Thread#interrupt interrupts} 150 * for example, the interrupt status of the thread upon return. 176 * <li>Some other thread {@linkplain Thread#interrupt interrupts} 187 * for example, the interrupt status of the thread, or the elapsed time 217 * <li>Some other thread {@linkplain Thread#interrupt interrupts} the 228 * for example, the interrupt status of the thread, or the current time 276 * <li>Some other thread {@linkplain Thread#interrupt interrupts} 285 * for example, the interrupt status of the thread upon return [all...] |
Lock.java | 112 * qualities. Further, the ability to interrupt the <em>ongoing</em> 126 * to an interrupt over normal method return. This is true even if it can be 127 * shown that the interrupt occurred after another action may have unblocked 158 * {@linkplain Thread#interrupt interrupted}. 168 * <li>Some other thread {@linkplain Thread#interrupt interrupts} the 175 * <li>is {@linkplain Thread#interrupt interrupted} while acquiring the 183 * <p>The ability to interrupt a lock acquisition in some 189 * <p>An implementation can favor responding to an interrupt over 235 * current thread has not been {@linkplain Thread#interrupt interrupted}. 244 * <li>Some other thread {@linkplain Thread#interrupt interrupts} th [all...] |
/external/mtpd/ |
mtpd.c | 54 static void interrupt(int signal) function 177 signal(SIGHUP, interrupt); 178 signal(SIGINT, interrupt); 179 signal(SIGTERM, interrupt); 180 signal(SIGCHLD, interrupt); 200 interrupt(SIGTERM); 206 interrupt(SIGTERM);
|
/external/kernel-headers/original/linux/ |
interrupt.h | 0 /* interrupt.h */ 20 * linux/ioport.h to select the interrupt line behaviour. When 21 * requesting an interrupt without specifying a IRQF_TRIGGER, the 42 * IRQF_TIMER - Flag to mark this interrupt as timer interrupt 365 * 1. clear and/or mask the device's internal interrupt. 368 * 4. enable the device and cause it to trigger an interrupt. 369 * 5. wait for the device to interrupt, using non-intrusive polling or a delay. 371 * 7. service the device to clear its pending interrupt.
|
hardirq.h | 63 * Are we doing bottom half or hardware interrupt processing? 64 * Are we in a softirq context? Interrupt context?
|
timer.h | 50 * to this timer, eg. interrupt contexts, or other CPUs on SMP. 71 * timer interrupt at the ->expires point in the future. The
|
reboot.h | 71 * Emergency restart, callable from an interrupt handler.
|
/external/grub/netboot/ |
ns8390.h | 113 #define _3COM_CR_SHARE 0x10 /* select interrupt sharing option */ 138 #define _3COM_IDCFR_IRQ2 0x10 /* Interrupt request 2 select */ 139 #define _3COM_IDCFR_IRQ3 0x20 /* Interrupt request 3 select */ 140 #define _3COM_IDCFR_IRQ4 0x40 /* Interrupt request 4 select */ 141 #define _3COM_IDCFR_IRQ5 0x80 /* Interrupt request 5 select */
|
sk_g16.h | 41 #define CSR0_RINT 0x0400 /* Receiver Interrupt (RC) */ 42 #define CSR0_TINT 0x0200 /* Transmit Interrupt (RC) */ 44 #define CSR0_INTR 0x0080 /* Interrupt Flag (R) */ 45 #define CSR0_INEA 0x0040 /* Interrupt Enable (RW) */
|
/external/libnfc-nci/src/udrv/include/ |
upio.h | 114 UPIO_FEAT_IN_HIGH, /* Support for input with interrupt on high signal level. */ 115 UPIO_FEAT_IN_LOW, /* Support for input with interrupt on low signal level. */ 116 UPIO_FEAT_IN_RISE, /* Support for input with interrupt on rising edge. */ 117 UPIO_FEAT_IN_FALL /* Support for input with interrupt on falling. */ 329 ** - Configure GPIOs to be polled or interrupt driven
|
/external/kernel-headers/original/asm-mips/ |
irq.h | 56 * IRQ affinity hook invoked at the beginning of interrupt dispatch 64 * that cpumask.h macro overhead is reasonable during interrupt dispatch. 84 * Clear interrupt mask handling "backstop" if irq_hwmask
|
/external/kernel-headers/original/asm-generic/ |
local.h | 37 * in interrupt, etc. Some archs can optimize this case well. */ 55 * in interrupt, etc. Some archs can optimize this case well.
|
/libcore/luni/src/main/java/java/nio/channels/ |
InterruptibleChannel.java | 32 * {@link Thread#interrupt()} on the I/O thread). When the I/O thread is 35 * attempts to make an I/O call with the interrupt status set the call will
|
/libcore/luni/src/test/java/libcore/java/lang/ |
OldThreadTest.java | 192 // Check that interrupt works 211 st.interrupt(); 239 // Check that interrupt works 258 st.interrupt(); 367 th.interrupt(); 465 st.interrupt(); 470 spinner.interrupt(); 475 ct.interrupt();
|
/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
DownloadUtils.java | 54 thread.interrupt(); 63 Thread.interrupted(); // consume the interrupt signal
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/asm/ |
vm86.h | 25 #define VIF_MASK 0x00080000 /* virtual interrupt flag */ 26 #define VIP_MASK 0x00100000 /* virtual interrupt pending */
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/asm/ |
vm86.h | 25 #define VIF_MASK 0x00080000 /* virtual interrupt flag */ 26 #define VIP_MASK 0x00100000 /* virtual interrupt pending */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/asm/ |
vm86.h | 25 #define VIF_MASK 0x00080000 /* virtual interrupt flag */ 26 #define VIP_MASK 0x00100000 /* virtual interrupt pending */
|
/external/qemu/hw/ |
bt-hid.c | 88 struct bt_l2cap_conn_params_s *interrupt; member in struct:bt_hid_device_s 178 /* Disconnect s->control and s->interrupt */ 402 bt_hid_send_data(hid->interrupt, BT_DATA_INPUT, 437 fprintf(stderr, "%s: bad transaction on Interrupt channel.\n", 446 hid->connected = hid->control && hid->interrupt; 473 hid->interrupt = NULL; 500 if (hid->interrupt) 503 hid->interrupt = params; 504 hid->interrupt->opaque = hid; 505 hid->interrupt->close = bt_hid_close_interrupt [all...] |
/bionic/libc/kernel/arch-mips/asm/dec/ |
ecc.h | 40 #include <linux/interrupt.h>
|
/development/ndk/platforms/android-9/arch-mips/include/asm/dec/ |
ecc.h | 40 #include <linux/interrupt.h>
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/internal/process/ |
SystemProcessTest.java | 31 Thread.currentThread().interrupt();
|
/external/arduino/hardware/arduino/cores/arduino/ |
WInterrupts.c | 29 #include <avr/interrupt.h> 43 // Configure the interrupt mode (trigger on low input, any change, rising 48 // Enable the interrupt. 121 // Disable the interrupt. (We can't assume that interruptNum is equal
|
/external/junit/src/org/junit/internal/runners/statements/ |
FailOnTimeout.java | 29 thread.interrupt();
|
/external/llvm/test/CodeGen/MBlaze/ |
intr.ll | 6 @.str = private constant [28 x i8] c"The interrupt has gone off\0A\00"
|