/external/clang/test/CodeGen/ |
H A D | arm-interrupt-attr.c | 4 __attribute__((interrupt)) void test_generic_interrupt() { 10 __attribute__((interrupt("IRQ"))) void test_irq_interrupt() { 14 __attribute__((interrupt("FIQ"))) void test_fiq_interrupt() { 18 __attribute__((interrupt("SWI"))) void test_swi_interrupt() { 22 __attribute__((interrupt("ABORT"))) void test_abort_interrupt() { 27 __attribute__((interrupt("UNDEF"))) void test_undef_interrupt() { 31 // CHECK: attributes [[GENERIC_ATTR]] = { {{.*}} {{"interrupt"[^=]}} 32 // CHECK: attributes [[IRQ_ATTR]] = { {{.*}} "interrupt"="IRQ" 33 // CHECK: attributes [[FIQ_ATTR]] = { {{.*}} "interrupt"="FIQ" 34 // CHECK: attributes [[SWI_ATTR]] = { {{.*}} "interrupt" [all...] |
H A D | mips-interrupt-attr.c | 3 void __attribute__ ((interrupt("vector=sw0"))) 9 void __attribute__ ((interrupt("vector=sw1"))) 15 void __attribute__ ((interrupt("vector=hw0"))) 21 void __attribute__ ((interrupt("vector=hw1"))) 27 void __attribute__ ((interrupt("vector=hw2"))) 33 void __attribute__ ((interrupt("vector=hw3"))) 39 void __attribute__ ((interrupt("vector=hw4"))) 45 void __attribute__ ((interrupt("vector=hw5"))) 51 void __attribute__ ((interrupt)) 56 // CHECK: attributes [[SW0]] = { {{.*}} "interrupt" [all...] |
/external/clang/test/Sema/ |
H A D | arm-interrupt-attr.c | 3 __attribute__((interrupt(IRQ))) void foo() {} // expected-error {{'interrupt' attribute requires a string}} 4 __attribute__((interrupt("irq"))) void foo1() {} // expected-warning {{'interrupt' attribute argument not supported: irq}} 6 __attribute__((interrupt("IRQ", 1))) void foo2() {} // expected-error {{'interrupt' attribute takes no more than 1 argument}} 8 __attribute__((interrupt("IRQ"))) void foo3() {} 9 __attribute__((interrupt("FIQ"))) void foo4() {} 10 __attribute__((interrupt("SWI"))) void foo5() {} 11 __attribute__((interrupt("ABOR [all...] |
H A D | attr-msp430.c | 4 void f(void) __attribute__((interrupt(i))); /* expected-error {{'interrupt' attribute requires an integer constant}} */ 6 void f2(void) __attribute__((interrupt(12)));
|
H A D | mips-interrupt-attr.c | 4 struct a test __attribute__((interrupt)); // expected-warning {{'interrupt' attribute only applies to functions and methods}} 6 __attribute__((interrupt("EIC"))) void foo1() {} // expected-warning {{'interrupt' attribute argument not supported: 'EIC'}} 8 __attribute__((interrupt("eic", 1))) void foo2() {} // expected-error {{'interrupt' attribute takes no more than 1 argument}} 10 __attribute__((interrupt("eic"))) void foo3() {} 11 __attribute__((interrupt("vector=sw0"))) void foo4() {} 12 __attribute__((interrupt("vector=hw0"))) void foo5() {} 13 __attribute__((interrupt("vecto [all...] |
/external/clang/test/Misc/ |
H A D | ast-dump-arm-attr.c | 3 __attribute__((interrupt)) void Test(void);
|
H A D | ast-dump-msp430-attr.c | 3 __attribute__((interrupt(12))) void Test(void);
|
/external/autotest/client/site_tests/hardware_Interrupt/ |
H A D | hardware_Interrupt.py | 23 interrupts per module or per interrupt number/name 39 interrupt = fields[0].strip().split(':')[0] 40 if interrupt.isdigit(): 43 interrupt = int(interrupt) 44 self._int_count[interrupt] = count 45 logging.debug('int[%s] = %d', interrupt, count) 47 def get(self, interrupt): 48 if interrupt in self._int_count: 49 logging.debug('got int[%s] = %d', interrupt, [all...] |
/external/apache-http/src/org/apache/http/impl/conn/tsccm/ |
H A D | WaitingThreadAborter.java | 39 /** A simple class that can interrupt a {@link WaitingThread}. */ 52 waitingThread.interrupt(); 60 * @param waitingThread The thread to interrupt when aborting. 65 waitingThread.interrupt();
|
/external/testng/src/test/java/test/timeout/ |
H A D | InvocationTimeOutSampleTest.java | 12 Thread.currentThread().interrupt(); 21 Thread.currentThread().interrupt();
|
H A D | TestTimeOutSampleTest.java | 12 Thread.currentThread().interrupt();
|
/external/testng/src/test/java/test/invokedmethodlistener/ |
H A D | Sample.java | 14 Thread.currentThread().interrupt(); 23 Thread.currentThread().interrupt();
|
/external/parameter-framework/asio/include/asio/detail/ |
H A D | pipe_select_interrupter.hpp | 36 ASIO_DECL void interrupt(); 38 // Reset the select interrupt. Returns true if the call was interrupted. 54 // The read end of a connection used to interrupt the select call. This file 60 // The write end of a connection used to interrupt the select call. A single
|
/external/parameter-framework/asio-1.10.6/include/asio/detail/ |
H A D | pipe_select_interrupter.hpp | 36 ASIO_DECL void interrupt(); 38 // Reset the select interrupt. Returns true if the call was interrupted. 54 // The read end of a connection used to interrupt the select call. This file 60 // The write end of a connection used to interrupt the select call. A single
|
/external/testng/src/test/java/test/annotationtransformer/ |
H A D | AnnotationTransformerClassSampleTest.java | 23 Thread.currentThread().interrupt();
|
/external/guava/guava/src/com/google/common/util/concurrent/ |
H A D | Uninterruptibles.java | 65 Thread.currentThread().interrupt(); 93 Thread.currentThread().interrupt(); 114 Thread.currentThread().interrupt(); 144 Thread.currentThread().interrupt(); 181 Thread.currentThread().interrupt(); 210 Thread.currentThread().interrupt(); 230 Thread.currentThread().interrupt(); 257 Thread.currentThread().interrupt(); 284 Thread.currentThread().interrupt(); 324 Thread.currentThread().interrupt(); [all...] |
H A D | AbstractCheckedFuture.java | 51 * {@code checkedGet} method has already restored the interrupt after catching 53 * wishes to swallow the interrupt, it can do so by calling 69 * implementation will set the current thread's interrupt status before 80 Thread.currentThread().interrupt(); 97 * implementation will set the current thread's interrupt status before 109 Thread.currentThread().interrupt();
|
/external/clang/test/Preprocessor/ |
H A D | has_attribute.c | 43 #if __has_attribute(interrupt)
|
/external/guava/guava-tests/test/com/google/common/util/concurrent/ |
H A D | InterruptionUtil.java | 41 * Runnable which will interrupt the target thread repeatedly when run. 64 interruptee.interrupt(); 87 interruptee.interrupt(); 101 interruptingThread.interrupt(); 138 Thread.currentThread().interrupt();
|
/external/netperf/src/ |
H A D | netcpu_kstat10.c | 48 uint64_t interrupt; member in struct:cpu_time_counters 64 "\t interrupt %llu\n", 69 counters[instance].interrupt); 257 counters[cpu_num].interrupt = 0; 271 counters[cpu_num].interrupt += knp->value.ui64; 395 the interrupt time accounting is in parallel with the other 397 idle will also include time spent in interrupt. for netperf's 402 we could just subtract interrupt time from idle. that has the 406 mechanism, suggested by a Sun engineer is to subtract interrupt 409 with the interrupt tim [all...] |
H A D | 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 164 res[i].interrupt = (((uint64_t)psp[j].psp_interruptcycles.psc_hi << 32) + 170 res[i].interrupt); 199 "\t interrupt %llu\n", 204 counters[instance].interrupt); 264 thing in measuring user, kernel, interrupt and idle all together 265 instead of overlapping interrupt with the others like an OS that 267 accounting for interrupt cycles, whereby the cycles do not get 268 properly accounted. The sum of user, kernel, interrupt an [all...] |
/external/testng/src/test/java/test/tmp/ |
H A D | Tmp.java | 17 Thread.currentThread().interrupt();
|
/external/webrtc/talk/app/webrtc/java/android/org/webrtc/ |
H A D | ThreadUtils.java | 71 * re-interrupt the thread. 87 Thread.currentThread().interrupt(); 109 Thread.currentThread().interrupt(); 151 Thread.currentThread().interrupt();
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/internal/process/ |
H A D | SystemProcessTest.java | 31 Thread.currentThread().interrupt();
|
/external/srtp/crypto/kernel/ |
H A D | alloc.c | 66 #include <linux/interrupt.h>
|