Home
last modified time | relevance | path

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

1234

/dragonfly/sys/dev/acpica/
H A Dacpi_pcib.c213 int interrupt; in acpi_pcib_route_interrupt() local
217 interrupt = PCI_INVALID_IRQ; in acpi_pcib_route_interrupt()
254 interrupt = machintr_legacy_intr_find_bygsi(prt->SourceIndex, in acpi_pcib_route_interrupt()
256 if (interrupt < 0) { in acpi_pcib_route_interrupt()
260 interrupt = PCI_INVALID_IRQ; in acpi_pcib_route_interrupt()
266 prt->SourceIndex, interrupt); in acpi_pcib_route_interrupt()
269 BUS_CONFIG_INTR(device_get_parent(dev), dev, interrupt, in acpi_pcib_route_interrupt()
285 interrupt = acpi_pci_link_route_interrupt(acpi_get_device(lnkdev), in acpi_pcib_route_interrupt()
288 if (bootverbose && PCI_INTERRUPT_VALID(interrupt)) { in acpi_pcib_route_interrupt()
290 pci_get_slot(dev), 'A' + pin, interrupt, acpi_name(lnkdev)); in acpi_pcib_route_interrupt()
[all …]
/dragonfly/test/nvmm/demo/
H A DREADME.txt55 mach> non-maskable interrupt
58 [+] Inject hardware interrupt event
61 mach> hardware interrupt
86 followed by a non-maskable interrupt (#NMI), followed by an external
87 hardware interrupt.
96 After receiving the first external hardware interrupt, the VM disables
97 these interrupts by setting CR8 to 15. From then on, no hardware interrupt
/dragonfly/contrib/nvi2/cl/
H A DREADME.signal18 called at interrupt time, if necessary.
25 The interrupt routine sets a global bit which is checked by the
31 to permit the user to interrupt long-running operations. Generally, a
43 like an interrupt) and it's easy to get into places where we won't see
44 interrupt characters (e.g. ":map a ixx^[hxxaXXX" infinitely loops in
66 IXON/IXOFF, and disabling some of the interrupt characters (see the
88 user might want to interrupt, but leave them off most of the time.
99 Also, if the user inserts an interrupt into the tty queue while the
100 interrupts are turned off, the key won't be treated as an interrupt,
101 and requiring the user to pound the keyboard to catch an interrupt
[all …]
/dragonfly/sys/bus/gpio/
H A Dgpio_if.m40 # Allocate GPIO interrupt.
54 # Deallocate GPIO interrupt.
62 # Setup GPIO interrupt.
72 # Disable GPIO interrupt.
/dragonfly/games/phantasia/
H A Dio.c169 interrupt(void) in interrupt() function
214 signal(SIGINT, interrupt); in interrupt()
217 signal(SIGINT, interrupt); in interrupt()
H A Dmain.c191 sigset(SIGINT, interrupt); in main()
194 signal(SIGINT, interrupt); in main()
197 signal(SIGINT, interrupt); in main()
200 signal(SIGINT, interrupt); in main()
H A Dphantglobs.h92 void interrupt(void);
/dragonfly/etc/bluetooth/
H A Dprotocols19 hid-interrupt 19 HID-Interrupt # Human Interface Device (interrupt)
/dragonfly/sys/kern/
H A Dbus_if.m210 # Enable or disable an interrupt. The device is generally expected to do
212 # condition so it does not call the handler from a scheduled interrupt thread,
213 # since the hard interrupt might be disabled after the interrupt thread
218 # the interrupt handler). 0 is returned if it isn't, non-zero if it is.
319 # specified interrupt.
/dragonfly/usr.bin/window/
H A DREADME117 Wwrint() is the interrupt handler for tty input. It reads input
132 used by wwiomux() to interrupt the poll() which would otherwise
133 resume after the interrupt. (Actually, I hear this is not true,
141 overrides this. This feature allows the user to interrupt lengthy
146 interrupt scheme used by the two interrupt catchers wwrint() and
147 wwchild(). Asserting the interrupt lets the synchronous parts of
/dragonfly/sys/dev/disk/isp/
H A DDriverManual.txt138 use the incoming mailbox registers to interrupt and issue commands to
167 you really only have to check for either a mailbox interrupt or an
168 interrupt notification that the response queue has an entry to
229 + First level interrupt handling (response retrieval) (isp_intr)
306 After mapping and interrupt registry is done, isp_reset is called.
315 interrupt driven mode.
372 At some later point in time an interrupt will occur. Eventually,
426 about locking? Or interrupt masking" by now.
431 locking and interrupt masking has been done.
441 interrupt stacks).
[all …]
/dragonfly/sys/dev/disk/nata/
H A Data-pci.c383 controller->interrupt[unit].function = function; in ata_pci_setup_intr()
384 controller->interrupt[unit].argument = argument; in ata_pci_setup_intr()
403 controller->interrupt[unit].function = NULL; in ata_pci_teardown_intr()
404 controller->interrupt[unit].argument = NULL; in ata_pci_teardown_intr()
585 if ((ch = ctlr->interrupt[unit].argument)) in ata_generic_intr()
586 ctlr->interrupt[unit].function(ch); in ata_generic_intr()
/dragonfly/share/examples/libusb20/
H A DREADME18 and input transfers, as well as so-called interrupt transfers. The
21 Despite of its name, the host has to poll devices for their interrupt
/dragonfly/contrib/binutils-2.27/gas/doc/
H A Dc-arc.texi203 @cindex level 1 interrupt link register, ARC
204 @cindex ARC level 1 interrupt link register
205 For ARC 600 and ARC 700, the level 1 interrupt link register and a
209 @cindex interrupt link register, ARC
210 @cindex ARC interrupt link register
211 For ARCv2, the interrupt link register and a synonym for @code{r29}.
215 @cindex level 2 interrupt link register, ARC
216 @cindex ARC level 2 interrupt link register
217 For ARC 600 and ARC 700, the level 2 interrupt link register and a
/dragonfly/sys/dev/disk/nata/chipsets/
H A Data-promise.c593 if ((ch = ctlr->interrupt[unit].argument)) in ata_promise_mio_intr()
594 ctlr->interrupt[unit].function(ch); in ata_promise_mio_intr()
937 if ((ch = ctlr->interrupt[unit].argument)) in ata_promise_sx4_intr()
938 ctlr->interrupt[unit].function(ch); in ata_promise_sx4_intr()
940 if ((ch = ctlr->interrupt[unit].argument)) in ata_promise_sx4_intr()
946 if ((ch = ctlr->interrupt[unit].argument)) in ata_promise_sx4_intr()
947 ctlr->interrupt[unit].function(ch); in ata_promise_sx4_intr()
951 if ((ch = ctlr->interrupt[unit].argument)) in ata_promise_sx4_intr()
/dragonfly/libexec/getty/
H A Dmain.c130 static void interrupt(int);
154 interrupt(int signo __unused) in interrupt() function
514 signal(SIGINT, interrupt); in getname()
/dragonfly/contrib/tcsh-6/nls/greek/
H A Dset25 3 Διακοπή (interrupt)
/dragonfly/sys/bus/pci/
H A Dpcib_if.m83 # Route an interrupt. Returns a value suitable for stuffing into
84 # a device's interrupt register.
/dragonfly/contrib/tcsh-6/nls/ja/
H A Dset374 72 interrupt文字を試す
/dragonfly/libexec/telnetd/
H A Dext.h95 interrupt(void),
/dragonfly/sys/netgraph7/bluetooth/drivers/ubt/
H A DTODO28 4) Currently interrupt transfers are done as bulk-in transfers
/dragonfly/sbin/dump/
H A Ddump.h149 void interrupt(int); /* in case operator bangs on console */
/dragonfly/test/stress/stress2/
H A DREADME52 with timer interrupt, disk block layout and disk access
/dragonfly/bin/sh/
H A DTOUR38 calling error or errorwithstatus. EXINT is an interrupt.
40 INTERRUPTS: In an interactive shell, an interrupt will cause an
45 of INTOFF and the execution of INTON, interrupt signals will be
271 When an interrupt is caught and no trap has been set for that
/dragonfly/sys/bus/iicbus/
H A Diicbus_if.m36 # Interpret interrupt

1234