HomeSort by relevance Sort by last modified time
    Searched refs:isr (Results 1 - 25 of 117) sorted by null

1 2 3 4 5

  /external/antlr/runtime/Java/src/main/java/org/antlr/runtime/
ANTLRFileStream.java 58 InputStreamReader isr; local
61 isr = new InputStreamReader(fis, encoding);
64 isr = new InputStreamReader(fis);
68 super.n = isr.read(data);
71 isr.close();
ANTLRInputStream.java 61 InputStreamReader isr; local
63 isr = new InputStreamReader(input, encoding);
66 isr = new InputStreamReader(input);
68 load(isr, size, readBufferSize);
  /external/u-boot/arch/microblaze/include/asm/
microblaze_intc.h 9 int isr; /* interrupt status register */ member in struct:microblaze_intc_t
  /device/google/contexthub/firmware/os/drivers/vsync/
vsync.c 25 #include <isr.h>
73 struct ChainedIsr isr; member in struct:SensorTask
110 struct SensorTask *data = container_of(localIsr, struct SensorTask, isr);
129 static bool enableInterrupt(struct Gpio *pin, struct ChainedIsr *isr)
134 extiChainIsr(VSYNC_IRQ, isr);
138 static bool disableInterrupt(struct Gpio *pin, struct ChainedIsr *isr)
140 extiUnchainIsr(VSYNC_IRQ, isr);
160 enableInterrupt(mTask.pin, &mTask.isr);
162 disableInterrupt(mTask.pin, &mTask.isr);
205 mTask.isr.func = vsyncIsr
    [all...]
  /device/google/contexthub/firmware/os/inc/
isr.h 44 static inline void chainIsr(struct ChainedInterrupt *interrupt, struct ChainedIsr *isr)
47 isr->tid = osGetCurrentTid();
48 list_add_tail(&interrupt->isrs, &isr->node);
52 static inline void unchainIsr(struct ChainedInterrupt *interrupt, struct ChainedIsr *isr)
55 isr->tid = 0;
56 list_delete(&isr->node);
  /external/jcommander/src/main/java/com/beust/jcommander/internal/
DefaultConsole.java 22 InputStreamReader isr = new InputStreamReader(System.in); local
23 BufferedReader in = new BufferedReader(isr);
  /external/jdiff/src/jdiff/
StreamReader.java 24 InputStreamReader isr = new InputStreamReader(is_); local
25 BufferedReader br = new BufferedReader(isr);
  /device/google/contexthub/firmware/os/platform/stm32/
exti.c 18 #include <isr.h>
166 int extiSetMaxLatency(struct ChainedIsr *isr, uint32_t maxLatencyNs)
170 if (!isr)
173 if (maxLatencyNs != isr->maxLatencyNs) {
174 latency = isr->maxLatencyNs;
175 isr->maxLatencyNs = maxLatencyNs;
184 int extiChainIsr(IRQn_Type n, struct ChainedIsr *isr)
189 else if (!list_is_empty(&isr->node))
192 chainIsr(&exti->base, isr);
193 if (!mMaxLatency || (isr->maxLatencyNs && isr->maxLatencyNs < mMaxLatency)
    [all...]
  /external/antlr/runtime/JavaScript/src/org/antlr/runtime/
ANTLRFileStream.js 50 isr,
53 isr = new java.io.InputStreamReader(fis, encoding);
55 isr = new java.io.InputStreamReader(fis);
58 isr.read(data, 0, size);
  /external/u-boot/arch/arm/include/asm/arch-lpc32xx/
wdt.h 13 u32 isr; /* Interrupt Status Register */ member in struct:wdt_regs
  /external/antlr/runtime/JavaScript/tests/functional/
rhino-python.prog 6 isr,
9 isr = new java.io.InputStreamReader(fis, encoding);
11 isr = new java.io.InputStreamReader(fis);
14 /* Should use the ternary version of isr.read here, but can't figure
19 while ((charCode = isr.read()) >= 0) {
  /device/google/contexthub/firmware/os/platform/stm32/inc/plat/
exti.h 20 #include <isr.h>
67 int extiChainIsr(IRQn_Type n, struct ChainedIsr *isr);
68 int extiUnchainIsr(IRQn_Type n, struct ChainedIsr *isr);
71 int extiSetMaxLatency(struct ChainedIsr *isr, uint32_t maxLatencyNs);
  /device/google/contexthub/firmware/os/drivers/hall/
hall.c 25 #include <isr.h>
53 struct ChainedIsr isr; member in struct:SensorTask
85 struct SensorTask *data = container_of(localIsr, struct SensorTask, isr);
104 static bool enableInterrupt(struct Gpio *pin, struct ChainedIsr *isr)
109 extiChainIsr(HALL_IRQ, isr);
113 static bool disableInterrupt(struct Gpio *pin, struct ChainedIsr *isr)
115 extiUnchainIsr(HALL_IRQ, isr);
140 enableInterrupt(mTask.pin, &mTask.isr);
142 disableInterrupt(mTask.pin, &mTask.isr);
213 mTask.isr.func = hallIsr
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/data/
ResourceReader.java 108 InputStreamReader isr = (encoding == null) local
112 this.reader = new BufferedReader(isr);
250 InputStreamReader isr = local
253 reader = new BufferedReader(isr);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/data/
ResourceReader.java 106 InputStreamReader isr = (encoding == null) local
110 this.reader = new BufferedReader(isr);
248 InputStreamReader isr = local
251 reader = new BufferedReader(isr);
  /external/u-boot/arch/microblaze/cpu/
interrupts.c 57 debug("INTC isr %x, ier %x, iar %x, mer %x\n", intc->isr, intc->ier,
72 debug("INTC isr %x, ier %x, iar %x, mer %x\n", intc->isr, intc->ier,
110 debug("INTC isr %x, ier %x, iar %x, mer %x\n", intc->isr, intc->ier,
166 debug("INTC isr %x, ier %x, iar %x, mer %x\n", intc->isr, intc->ier,
180 debug("Dump INTC reg, isr %x, ier %x, iar %x, mer %x\n", intc->isr,
    [all...]
  /external/u-boot/drivers/i2c/
mv_i2c.c 39 u32 isr; member in struct:mv_i2c
50 u32 isr; member in struct:mv_i2c
84 writel(I2C_ISR_INIT, &base->isr); /* set clear interrupt bits */
98 int timeout = 1000, isr; local
101 isr = readl(&base->isr);
105 } while (((isr & set_mask) != set_mask)
106 || ((isr & cleared_mask) != 0));
158 writel(readl(&base->isr) | ISR_ITE, &base->isr);
    [all...]
  /external/u-boot/arch/arm/include/asm/arch-mx27/
gpio.h 26 u32 isr; member in struct:gpio_regs
  /external/u-boot/drivers/net/
ne2000_base.c 248 int len, start_page, pkt_len, i, isr; local
349 DP_IN(base, DP_ISR, isr);
350 } while ((isr & DP_ISR_RDC) == 0);
569 u8 isr; local
599 DP_IN(base, DP_ISR, isr);
600 if (dp->tx_started && !(isr & (DP_ISR_TxP|DP_ISR_TxE))) {
610 u8 isr; local
613 DP_IN(base, DP_ISR, isr);
614 while (0 != isr) {
620 if (isr & DP_ISR_CNT)
    [all...]
  /external/u-boot/drivers/mtd/nand/
lpc32xx_nand_mlc.c 53 u32 isr; member in struct:lpc32xx_nand_mlc_registers
67 /* ISR register defines */
185 int status = readl(&lpc32xx_nand_mlc_registers->isr);
242 status = readl(&lpc32xx_nand_mlc_registers->isr);
290 status = readl(&lpc32xx_nand_mlc_registers->isr);
342 status = readl(&lpc32xx_nand_mlc_registers->isr);
396 status = readl(&lpc32xx_nand_mlc_registers->isr);
408 status = readl(&lpc32xx_nand_mlc_registers->isr);
489 status = readl(&lpc32xx_nand_mlc_registers->isr);
515 status = readl(&lpc32xx_nand_mlc_registers->isr);
    [all...]
  /external/u-boot/drivers/spi/
zynq_spi.c 42 u32 isr; /* 0x04 */ member in struct:zynq_spi_regs
108 while (readl(&regs->isr) &
113 writel(ZYNQ_SPI_IXR_ALL_MASK, &regs->isr);
248 status = readl(&regs->isr);
254 status = readl(&regs->isr);
258 status = readl(&regs->isr);
263 status = readl(&regs->isr);
  /device/google/contexthub/firmware/os/drivers/hall_twopole/
hall_twopole.c 25 #include <isr.h>
121 static bool enableInterrupt(struct Gpio *pin, struct ChainedIsr *isr, IRQn_Type irqn)
126 extiChainIsr(irqn, isr);
130 static bool disableInterrupt(struct Gpio *pin, struct ChainedIsr *isr, IRQn_Type irqn)
132 extiUnchainIsr(irqn, isr);
  /device/google/contexthub/firmware/os/drivers/rohm_rpr0521/
rohm_rpr0521.c 27 #include <isr.h>
226 struct ChainedIsr isr; member in struct:SensorData
258 struct SensorData *data = container_of(localIsr, struct SensorData, isr);
285 static bool enableInterrupt(struct Gpio *pin, struct ChainedIsr *isr)
288 extiChainIsr(PROX_IRQ, isr);
292 static bool disableInterrupt(struct Gpio *pin, struct ChainedIsr *isr)
294 extiUnchainIsr(PROX_IRQ, isr);
449 enableInterrupt(mTask.pin, &mTask.isr);
451 disableInterrupt(mTask.pin, &mTask.isr);
732 mTask.isr.func = proxIsr
    [all...]
  /device/google/contexthub/firmware/os/drivers/ams_tmd4903/
ams_tmd4903.c 27 #include <isr.h>
227 struct ChainedIsr isr; member in struct:SensorData
319 struct SensorData *data = container_of(localIsr, struct SensorData, isr);
355 static bool enableInterrupt(struct Gpio *pin, struct ChainedIsr *isr, enum ExtiTrigger trigger)
358 extiChainIsr(PROX_IRQ, isr);
362 static bool disableInterrupt(struct Gpio *pin, struct ChainedIsr *isr)
364 extiUnchainIsr(PROX_IRQ, isr);
538 enableInterrupt(mTask.pin, &mTask.isr, EXTI_TRIGGER_FALLING);
573 enableInterrupt(mTask.pin, &mTask.isr, EXTI_TRIGGER_FALLING);
575 disableInterrupt(mTask.pin, &mTask.isr);
    [all...]
  /external/u-boot/arch/arm/include/asm/arch-pxa/
regs-uart.h 33 uint32_t isr; member in struct:pxa_uart_regs

Completed in 1006 milliseconds

1 2 3 4 5