/development/samples/USB/MissileLauncher/src/com/android/missilelauncher/ |
MissileLauncherActivity.java | 126 // endpoint should be of type interrupt 129 Log.e(TAG, "endpoint is not interrupt type"); 222 // queue a request on the interrupt endpoint
|
/libcore/libart/src/main/java/java/lang/ |
Thread.java | 626 * Posts an interrupt request to this {@code Thread}. The behavior depends on 632 * be woken up, their interrupt status will be cleared, and they receive an 636 * {@link java.nio.channels.InterruptibleChannel} will have their interrupt 642 * their interrupt status set and return immediately. They don't receive an 649 public void interrupt() { method in class:Thread 650 // Interrupt this thread before running actions so that other 651 // threads that observe the interrupt as a result of an action 666 * <code>currentThread()</code>) has a pending interrupt request (<code> 670 * @return a <code>boolean</code> indicating the interrupt status 672 * @see Thread#interrupt 1201 interrupt(); method [all...] |
/external/chromium_org/third_party/npapi/npspy/extern/nspr/ |
prthread.h | 230 ** This routine sets the interrupt request for a target thread. The interrupt 242 ** Clear the interrupt request for the calling thread. If no such request 248 ** Block the interrupt for the calling thread. 253 ** Unblock the interrupt for the calling thread.
|
/external/qemu/distrib/sdl-1.2.15/src/audio/mint/ |
SDL_mintaudio_mcsn.c | 87 /* We can't use XBIOS in interrupt with Magic, don't know about thread */ 121 /* Check if interrupt at end of replay */ 123 DEBUG_PRINT((DEBUG_NAME "no interrupt at end of replay\n")); 199 /* Uninstall interrupt */ 350 /* Install interrupt */
|
/libcore/luni/src/test/java/libcore/java/lang/ |
OldThreadGroupTest.java | 154 thread.interrupt(); 230 thr.interrupt(); 243 * java.lang.ThreadGroup#interrupt() 249 ThreadGroup tg = new ThreadGroup("interrupt"); 262 t1.interrupt();
|
/docs/source.android.com/src/devices/ |
audio_latency.jd | 76 <li>long-running interrupt handlers</li> 77 <li>long interrupt disable time</li> 131 long-running interrupt handler may delay other interrupts, in particular 132 audio DMA completion interrupts. Design interrupt handlers 140 Long interrupt disable times typically happen while waiting for a kernel 250 system to scheduling, interrupt handling, power management, and device 304 indication of a problem, which is probably a high scheduling latency or interrupt
|
/external/grub/netboot/ |
cs89x0.h | 21 #define PP_CS8900_ISAINT 0x0022 /* ISA interrupt select */ 22 #define PP_CS8920_ISAINT 0x0370 /* ISA interrupt select */ 50 #define PP_ISQ 0x0120 /* Interrupt Status */ 122 /* PP_RxCFG - Receive Configuration and Interrupt Mask bit definition - Read/write */ 147 /* PP_TxCFG - Transmit Configuration Interrupt Mask bit definition - Read/write */ 167 /* PP_BufCFG - Buffer Configuration Interrupt Mask bit definition - Read/write */ 432 #define CS8920_NO_INTS 0x0F /* Max CS8920 interrupt select # */
|
rtl8139.c | 44 each and every interrupt pending, including the RxOverrun and RxFIFIOver 57 rtl_poll was quite broken: it used the RxOK interrupt flag instead 118 /* Interrupt register bits, using my own meaningful names. */ 330 /* Disable all known interrupts by setting the interrupt mask. */ 365 /* Only acknlowledge interrupt sources we can properly handle 400 /* See below for the rest of the interrupt acknowledges. */
|
smc9000.c | 216 status = inb(smc9000_base + INTERRUPT); 218 /* acknowledge the interrupt */ 219 _outb(IM_ALLOC_INT, smc9000_base + INTERRUPT); 282 status = inb(smc9000_base + INTERRUPT); 287 /* ack interrupt */ 288 _outb(IM_TX_INT, smc9000_base + INTERRUPT);
|
sis900.h | 24 isr=0x10, /* Interrupt Status Register */ 25 imr=0x14, /* Interrupt Mask Register */ 26 ier=0x18, /* Interrupt Enable Register */
|
/external/qemu/distrib/sdl-1.2.15/ |
README.MiNT | 29 devices, like Sun audio, or disk-writing support. Like Tos, interrupt 76 dma8 All Uses MFP Timer A interrupt 77 xbios TOS Uses MFP Timer A interrupt 78 xbios MiNT Uses MFP Timer A interrupt 79 xbios Magic Uses MFP Timer A interrupt 80 stfa All Uses MFP interrupt 81 mcsn TOS Uses MFP Timer A interrupt
|
/packages/apps/Email/src/com/android/email/provider/ |
DBHelper.java | [all...] |
/external/guava/guava/src/com/google/common/util/concurrent/ |
Monitor.java | 329 Thread.currentThread().interrupt(); 476 Thread.currentThread().interrupt(); 832 } catch (InterruptedException interrupt) { 836 Thread.currentThread().interrupt(); 839 throw interrupt; 882 } catch (InterruptedException interrupt) { 886 Thread.currentThread().interrupt(); 889 throw interrupt; 923 Thread.currentThread().interrupt(); 935 Thread.currentThread().interrupt(); [all...] |
/external/qemu-pc-bios/vgabios/tests/lfbprof/ |
lfbprof.c | 110 * Parameters: intno - Interrupt number to issue 113 * Returns: Value returned by interrupt in AX 115 * Description: Issues a real mode interrupt using DPMI services. 127 r.w.ax = 0x300; /* DPMI issue real interrupt */ 133 int386x(0x31, &r, &r, &sr); /* Issue the interrupt */ 144 * Parameters: intno - Interrupt number to issue 148 * Returns: Value returned by interrupt in AX 150 * Description: Issues a real mode interrupt using DPMI services. 164 r.w.ax = 0x300; /* DPMI issue real interrupt */ 170 int386x(0x31, &r, &r, &sr); /* Issue the interrupt */ [all...] |
/development/samples/Alarm/src/com/example/android/newalarm/ |
AlarmService.java | 90 // This covers the situation where an interrupt might have overridden the wait. 95 // Waits for 15 seconds or until an interrupt triggers an exception. 96 // If an interrupt occurs, the wait is recalculated to ensure a net
|
/device/google/accessory/demokit/firmware/demokit/ |
demokit.pde | 40 #define JOY_nINT A10 // active low interrupt input 333 // dummy read of Y_reg to reset interrupt 361 *y = read_joy_reg(0x11) + offset_Y; // reading Y clears the interrupt
|
/external/bluetooth/bluedroid/gki/common/ |
gki_common.h | 265 INT16 OSDisableNesting; /* counter to keep track of interrupt disable nesting */ 267 INT16 OSIntNesting; /* counter to keep track of interrupt nesting */ 327 BOOLEAN timer_nesting; /* flag to prevent timer interrupt nesting */
|
/external/guava/guava-testlib/src/com/google/common/testing/ |
GcFinalization.java | 49 * period or an interrupt while waiting for the expected event will result in a {@link 135 throw new RuntimeException("Unexpected interrupt while waiting for future", ie); 167 throw new RuntimeException("Unexpected interrupt while waiting for latch", ie);
|
/external/kernel-headers/original/asm-arm/arch/ |
fpga.h | 4 * Interrupt handler for OMAP-1510 FPGA 101 /* Interrupt status */ 105 /* Interrupt mask */
|
/external/kernel-headers/original/asm-mips/ |
termbits.h | 56 #define VINTR 0 /* Interrupt character [ISIG]. */ 83 #define BRKINT 0000002 /* Signal interrupt on break. */ 197 #define NOFLSH 0000200 /* Disable flush after interrupt. */
|
/external/kernel-headers/original/linux/ |
relay.h | 186 * if you might be logging from interrupt context. Try 188 * interrupt context. 215 * relay_write() if you might be logging from interrupt
|
/external/libnfc-nci/halimpl/bcm2079x/gki/common/ |
gki_common.h | 271 INT16 OSDisableNesting; /* counter to keep track of interrupt disable nesting */ 273 INT16 OSIntNesting; /* counter to keep track of interrupt nesting */ 333 BOOLEAN timer_nesting; /* flag to prevent timer interrupt nesting */
|
/external/libnfc-nci/src/gki/common/ |
gki_common.h | 271 INT16 OSDisableNesting; /* counter to keep track of interrupt disable nesting */ 273 INT16 OSIntNesting; /* counter to keep track of interrupt nesting */ 333 BOOLEAN timer_nesting; /* flag to prevent timer interrupt nesting */
|
/external/qemu/distrib/sdl-1.2.15/src/video/ataricommon/ |
SDL_ikbdinterrupt.S | 24 * IKBD 6301 interrupt routine 257 | End of interrupt 273 | Call old MIDI interrupt
|
/external/qemu/docs/ |
ANDROID-QEMU-PIPE.TXT | 65 or the list of events that occured in case of interrupt. 178 The driver's interrupt handler will then have to read a list of 181 In other words, the driver's interrupt handler will do:
|