Home
last modified time | relevance | path

Searched refs:interrupt (Results 1 – 25 of 210) sorted by relevance

123456789

/openbsd-src/sys/arch/arm64/arm64/
H A Dacpi_machdep.c149 uint32_t interrupt[3]; in acpi_intr_establish() local
160 interrupt[0] = 0; in acpi_intr_establish()
161 interrupt[1] = irq - 32; in acpi_intr_establish()
164 interrupt[2] = 0x2; /* falling */ in acpi_intr_establish()
166 interrupt[2] = 0x1; /* rising */ in acpi_intr_establish()
169 interrupt[2] = 0x8; /* low */ in acpi_intr_establish()
171 interrupt[2] = 0x4; /* high */ in acpi_intr_establish()
174 cookie = ic->ic_establish(ic->ic_cookie, interrupt, level, NULL, in acpi_intr_establish()
/openbsd-src/sys/arch/arm64/stand/efiboot/
H A Dacpi.dts6 interrupt-parent = <&gic>;
35 gic: interrupt-controller@0 {
37 #interrupt-cells = <3>;
40 interrupt-controller;
/openbsd-src/sys/dev/fdt/
H A Dmvgicp.c129 uint32_t interrupt[3]; in mvgicp_intr_establish() local
151 /* Convert to GIC interrupt source. */ in mvgicp_intr_establish()
162 interrupt[0] = 0; in mvgicp_intr_establish()
163 interrupt[1] = spi - 32; in mvgicp_intr_establish()
164 interrupt[2] = flags; in mvgicp_intr_establish()
165 cookie = ic->ic_establish(ic->ic_cookie, interrupt, level, in mvgicp_intr_establish()
/openbsd-src/sys/dev/acpi/
H A Dacpihpet.c62 uint64_t interrupt; member
125 sc->sc_save.timers[0].interrupt = acpihpet_r(sc->sc_iot, in acpihpet_activate()
131 sc->sc_save.timers[1].interrupt = acpihpet_r(sc->sc_iot, in acpihpet_activate()
137 sc->sc_save.timers[2].interrupt = acpihpet_r(sc->sc_iot, in acpihpet_activate()
156 HPET_TIMER0_INTERRUPT, sc->sc_save.timers[0].interrupt); in acpihpet_activate()
162 HPET_TIMER1_INTERRUPT, sc->sc_save.timers[1].interrupt); in acpihpet_activate()
168 HPET_TIMER2_INTERRUPT, sc->sc_save.timers[2].interrupt); in acpihpet_activate()
/openbsd-src/usr.bin/vi/cl/
H A DREADME.signal22 called at interrupt time, if necessary.
29 The interrupt routine sets a global bit which is checked by the
35 to permit the user to interrupt long-running operations. Generally, a
47 like an interrupt) and it's easy to get into places where we won't see
48 interrupt characters (e.g. ":map a ixx^[hxxaXXX" infinitely loops in
70 IXON/IXOFF, and disabling some of the interrupt characters (see the
92 user might want to interrupt, but leave them off most of the time.
103 Also, if the user inserts an interrupt into the tty queue while the
104 interrupts are turned off, the key won't be treated as an interrupt,
105 and requiring the user to pound the keyboard to catch an interrupt
[all …]
/openbsd-src/sys/arch/macppc/dev/
H A Ddbdma.h118 #define DBDMA_BUILD_CMD(d, cmd, key, interrupt, wait, branch) { \ argument
121 ((interrupt) << 4) | \
125 #define DBDMA_BUILD(d, cmd, key, count, address, interrupt, wait, branch) { \ argument
133 ((interrupt) << 4) | \
/openbsd-src/sys/arch/mips64/mips64/
H A Dcp0access.S55 or v0, v0, SOFT_INT_MASK_0 # set soft clock interrupt
66 and v0, v0, ~SOFT_INT_MASK_0 # clear soft clock interrupt
77 or v0, v0, SOFT_INT_MASK_1 # set soft net interrupt
88 and v0, v0, ~SOFT_INT_MASK_1 # clear soft net interrupt
H A Dinterrupt.c1 /* $OpenBSD: interrupt.c,v 1.75 2024/10/23 07:40:20 mpi Exp $ */
50 void interrupt(struct trapframe *);
66 * Modern versions of MIPS processors have extended interrupt
69 * in "higher level" interrupt code.
71 * Basically there are <n> interrupt inputs to the processor and
75 * an interrupt handler for that particular interrupt. More than one
76 * handler can register to an interrupt input and one handler may register
77 * for more than one interrupt input. A handler is only called once even
78 * if it registers for more than one interrupt inpu
100 interrupt(struct trapframe *trapframe) interrupt() function
[all...]
/openbsd-src/sys/arch/octeon/octeon/
H A Dcn3xxx.dts43 interrupt-parent = <&ciu>;
50 interrupt-controller;
51 #interrupt-cells = <2>;
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServer.h32 Status &error, bool &interrupt, bool &quit)>;
43 Status &error, bool &interrupt,
H A DGDBRemoteCommunicationServer.cpp31 [this](StringExtractorGDBRemote packet, Status &error, bool &interrupt, in GDBRemoteCommunicationServer()
45 Timeout<std::micro> timeout, Status &error, bool &interrupt, bool &quit) { in GetPacketAndSendResponse() argument
71 packet_result = handler_it->second(packet, error, interrupt, quit); in GetPacketAndSendResponse()
/openbsd-src/sys/arch/sparc64/sparc64/
H A Dofw_machdep.c838 OF_mapintr(int node, int *interrupt, int validlen, int buflen) in OF_mapintr() argument
853 if (*interrupt & 0x20 || *interrupt & 0x7c0) in OF_mapintr()
897 *interrupt = ((*interrupt + in OF_mapintr()
900 *interrupt, reg[0])); in OF_mapintr()
946 DPRINTF(("%x.", interrupt[i])); in OF_mapintr()
978 interrupt, in OF_mapintr()
995 interrupt[i] = parent[i]; in OF_mapintr()
/openbsd-src/sys/arch/macppc/conf/
H A DRAMDISK32 openpic* at memc? # openpic interrupt controller
46 macintr0 at macobio? # old interrupt controller
47 openpic* at macobio? # openpic interrupt controller
121 macgpio* at macobio? # GPIO, PMU interrupt router.
122 macgpio* at macgpio? # GPIO, PMU interrupt router.
/openbsd-src/gnu/llvm/lldb/tools/lldb-server/
H A Dlldb-platform.cpp367 bool interrupt = false; in main_platform() local
369 while (!interrupt && !done) { in main_platform()
370 if (platform.GetPacketAndSendResponse(std::nullopt, error, interrupt, in main_platform()
/openbsd-src/libexec/getty/
H A Dmain.c114 interrupt(int signo) in interrupt() function
119 signal(SIGINT, interrupt); in interrupt()
372 signal(SIGINT, interrupt); in getname()
/openbsd-src/sys/arch/sparc64/include/
H A Dopenfirm.h61 int OF_mapintr(int node, int *interrupt, int validlen, int buflen);
/openbsd-src/sys/arch/m88k/include/
H A Dtrap.h61 void interrupt(struct trapframe *);
/openbsd-src/regress/sys/dev/kcov/
H A DMakefile24 TESTS+= remote-interrupt
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.misc-tests/
H A Darm-isr.c25 int foo1 (int a, int b, int c, int d, int e, int f, int g, int h) __attribute__ ((interrupt ("IRQ")…
/openbsd-src/games/phantasia/
H A Dphantglobs.h107 void interrupt(void);
/openbsd-src/gnu/usr.bin/binutils/gdb/testsuite/gdb.base/
H A Dinterrupt.exp38 set testfile interrupt
H A DMakefile.in8 foll-exec foll-fork foll-vfork funcargs int-type interrupt jump \
/openbsd-src/distrib/special/more/
H A Dmore.help9 q or Q or <interrupt> Exit from more
/openbsd-src/sys/dev/microcode/siop/
H A Dosiop.ss106 ; Do we need to interrupt host here to let it handle the reject?
123 ; If we continue from the interrupt, the host has set up a response
139 INT int_msgsdp, IF NOT 0x04 ; interrupt if not disconnect
/openbsd-src/gnu/gcc/gcc/config/mcore/
H A Dt-mcore-pe21 # could use -msifilter to be safe from interrupt/jmp interactions and others.

123456789