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

1 2 3 4 5 6 7 8 91011>>

  /external/antlr/antlr-3.4/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/syslinux/core/fs/pxe/
isr.c 2 * core/fs/pxe/isr.c
32 static bool install_irq_vector(uint8_t irq, void (*isr)(void), far_ptr_t *old)
56 entry->ptr = (uint32_t)isr;
90 static bool uninstall_irq_vector(uint8_t irq, void (*isr), far_ptr_t *old)
110 if (entry->ptr != (uint32_t)isr) {
145 static __lowmem t_PXENV_UNDI_ISR isr; local
151 memset(&isr, 0, sizeof isr);
152 isr.FuncFlag = func;
155 pxe_call(PXENV_UNDI_ISR, &isr);
195 static __lowmem t_PXENV_UNDI_ISR isr; local
    [all...]
  /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/antlr-3.4/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/antlr/antlr-3.4/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...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
InputStreamReaderTest.java 303 InputStreamReader isr = new InputStreamReader(fis, "8859_1"); local
304 assertEquals("ISO-8859-1", isr.getEncoding());
306 isr = new InputStreamReader(fis, "ISO-8859-1");
307 assertEquals("ISO-8859-1", isr.getEncoding());
310 isr = new InputStreamReader(new ByteArrayInputStream(b), "UTF-16BE");
311 isr.close();
312 assertNull(isr.getEncoding());
315 isr = new InputStreamReader(System.in, "UTF-16BE");
319 assertEquals("UTF-16BE", isr.getEncoding());
371 InputStreamReader isr = new InputStreamReader(new ByteArrayInputStream local
446 InputStreamReader isr = new InputStreamReader(bis, "ISO-8859-1"); local
    [all...]
PrintStreamTest.java 263 InputStreamReader isr = new InputStreamReader(bis); local
264 assertEquals("Incorrect char written", 't', isr.read());
402 InputStreamReader isr = new InputStreamReader(bis); local
403 assertTrue("Newline not written", (c = (char) isr.read()) == '\r'
417 InputStreamReader isr = new InputStreamReader(bis); local
430 while ((r = isr.read()) != -1) {
446 InputStreamReader isr = new InputStreamReader(bis); local
447 assertEquals("Incorrect char written", 't', isr.read());
448 assertTrue("Newline not written", (c = isr.read()) == '\r' || c == '\n');
460 InputStreamReader isr = new InputStreamReader(bis) local
478 InputStreamReader isr = new InputStreamReader(bis); local
495 InputStreamReader isr = new InputStreamReader(bis); local
511 InputStreamReader isr = new InputStreamReader(bis); local
528 InputStreamReader isr = new InputStreamReader(bis); local
545 InputStreamReader isr = new InputStreamReader(bis); local
563 InputStreamReader isr = new InputStreamReader(bis); local
    [all...]
OutputStreamWriterTest.java 51 InputStreamReader isr; field in class:OutputStreamWriterTest
78 if (isr != null) {
79 isr.close();
449 InputStreamReader isr = null; local
471 isr = new InputStreamReader(new ByteArrayInputStream(result),
475 + MINIMAL_CHARSETS[i], expected, isr.read());
479 isr.close();
491 InputStreamReader isr = null; local
520 isr = new InputStreamReader(new ByteArrayInputStream(result),
525 read = isr.read(largeBuffer)
    [all...]
ByteArrayInputStreamTest.java 117 InputStreamReader isr = new InputStreamReader(is); local
118 int c = isr.read();
  /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);
  /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);
  /libcore/luni/src/test/java/libcore/java/io/
OldInputStreamReaderTest.java 147 InputStreamReader isr = new InputStreamReader(bis, "ISO-8859-1"); local
151 int bytesRead = isr.read(buf, 0, buf.length);
155 bytesRead = isr.read(buf, 0, buf.length);
264 InputStreamReader isr = new InputStreamReader(is, "SHIFT_JIS"); local
269 int amt = isr.read(chars);
  /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...]
  /hardware/intel/bootstub/
spi-uart.h 45 vu32 isr; member in struct:mrst_spi_reg
92 /* bit fields in ISR, IMR, RISR, 7 bits */
  /device/google/contexthub/firmware/os/drivers/synaptics_s3708/
synaptics_s3708.c 26 #include <isr.h>
146 struct ChainedIsr isr; member in struct:TaskStruct
164 extiChainIsr(TOUCH_IRQ, &mTask.isr);
166 extiUnchainIsr(TOUCH_IRQ, &mTask.isr);
174 struct TaskStruct *data = container_of(localIsr, struct TaskStruct, isr);
455 // low when we enabled the ISR, e.g. due to a pending touch event).
579 mTask.isr.func = touchIsr;
591 extiUnchainIsr(TOUCH_IRQ, &mTask.isr);
  /external/ipsec-tools/src/libipsec/
key_debug.c 584 struct ipsecrequest *isr; local
585 for (isr = sp->req; isr != NULL; isr = isr->next) {
587 printf(" level=%u\n", isr->level);
588 kdebug_secasindex(&isr->saidx);
590 if (isr->sav != NULL)
591 kdebug_secasv(isr->sav);

Completed in 212 milliseconds

1 2 3 4 5 6 7 8 91011>>