Home
last modified time | relevance | path

Searched full:handled (Results 1 – 25 of 1834) sorted by relevance

12345678910>>...74

/linux/drivers/usb/mtu3/
H A Dmtu3_gadget_ep0.c209 int handled = 1; in ep0_get_status() local
230 handled = 0; in ep0_get_status()
238 handled = -EINVAL; in ep0_get_status()
246 handled = -EINVAL; in ep0_get_status()
255 handled = 0; in ep0_get_status()
259 if (handled > 0) { in ep0_get_status()
271 handled = ret; in ep0_get_status()
273 return handled; in ep0_get_status()
279 int handled = 1; in handle_test_mode() local
300 handled = -EINVAL; in handle_test_mode()
[all …]
/linux/include/trace/events/
H A Dnmi.h13 TP_PROTO(void *handler, s64 delta_ns, int handled),
15 TP_ARGS(handler, delta_ns, handled),
20 __field( int, handled )
26 __entry->handled = handled;
29 TP_printk("%ps() delta_ns: %lld handled: %d",
32 __entry->handled)
/linux/drivers/hid/
H A Dhid-input-test.c13 bool handled; in hid_test_input_update_battery_charge_status() local
18 handled = hidinput_update_battery_charge_status(dev, HID_DG_HEIGHT, 0); in hid_test_input_update_battery_charge_status()
19 KUNIT_EXPECT_FALSE(test, handled); in hid_test_input_update_battery_charge_status()
22 handled = hidinput_update_battery_charge_status(dev, HID_BAT_CHARGING, 0); in hid_test_input_update_battery_charge_status()
23 KUNIT_EXPECT_TRUE(test, handled); in hid_test_input_update_battery_charge_status()
26 handled = hidinput_update_battery_charge_status(dev, HID_BAT_CHARGING, 1); in hid_test_input_update_battery_charge_status()
27 KUNIT_EXPECT_TRUE(test, handled); in hid_test_input_update_battery_charge_status()
/linux/tools/perf/pmu-events/arch/arm64/arm/cortex-a73/
H A Dmmu.json3 "PublicDescription": "Duration of a translation table walk handled by the MMU",
6 "BriefDescription": "Duration of a translation table walk handled by the MMU"
9 "PublicDescription": "Duration of a Stage 1 translation table walk handled by the MMU",
12 "BriefDescription": "Duration of a Stage 1 translation table walk handled by the MMU"
15 "PublicDescription": "Duration of a Stage 2 translation table walk handled by the MMU",
18 "BriefDescription": "Duration of a Stage 2 translation table walk handled by the MMU"
/linux/tools/testing/selftests/kvm/arm64/
H A Dno-vgic-v3.c10 static volatile bool handled; variable
16 handled = false; \
24 handled = false; \
34 __GUEST_ASSERT(handled, #r " no read trap"); \
40 __GUEST_ASSERT(handled, #r " no write trap"); \
99 if (!handled) in guest_code()
103 if (!handled) { in guest_code()
115 handled = true; in guest_undef_handler()
/linux/tools/perf/pmu-events/arch/arm64/arm/cortex-a75/
H A Dmmu.json3 "PublicDescription": "Duration of a translation table walk handled by the MMU",
6 "BriefDescription": "Duration of a translation table walk handled by the MMU"
9 …"PublicDescription": "Duration of a Stage 1 translation table walk handled by the MMU. This event …
12 …"BriefDescription": "Duration of a Stage 1 translation table walk handled by the MMU. This event i…
15 …"PublicDescription": "Duration of a Stage 2 translation table walk handled by the MMU. This event …
18 …"BriefDescription": "Duration of a Stage 2 translation table walk handled by the MMU. This event i…
/linux/drivers/regulator/
H A Dda9210-regulator.c73 unsigned int val, handled = 0; in da9210_irq_handler() local
84 handled |= DA9210_E_OVCURR; in da9210_irq_handler()
90 handled |= DA9210_E_NPWRGOOD; in da9210_irq_handler()
95 handled |= val & (DA9210_E_TEMP_WARN | DA9210_E_TEMP_CRIT); in da9210_irq_handler()
101 handled |= DA9210_E_VMAX; in da9210_irq_handler()
104 if (handled) { in da9210_irq_handler()
105 /* Clear handled events */ in da9210_irq_handler()
106 error = regmap_write(chip->regmap, DA9210_REG_EVENT_B, handled); in da9210_irq_handler()
H A Dda9121-regulator.c171 DA9xxx_STATUS(0, 0, SG, 0, "Handled E_SG\n"),
174 DA9121_STATUS(1, 1, PG1, 0, "Handled E_PG1\n"),
178 DA9xxx_STATUS(2, 1, PG2, 0, "Handled E_PG2\n"),
182 DA9121_STATUS(0, 2, GPIO0, 0, "Handled E_GPIO0\n"),
183 DA9121_STATUS(0, 2, GPIO1, 0, "Handled E_GPIO1\n"),
184 DA9121_STATUS(0, 2, GPIO2, 0, "Handled E_GPIO2\n"),
682 int handled[3] = {0}; in da9121_irq_handler() local
724 handled[reg_idx] |= item->event_bit; in da9121_irq_handler()
731 if (event[i] != handled[i]) { in da9121_irq_handler()
734 event[i] ^ handled[i]); in da9121_irq_handler()
[all …]
/linux/sound/soc/sof/intel/
H A DKconfig15 This option is not user-selectable but automagically handled by
23 This option is not user-selectable but automagically handled by
35 This option is not user-selectable but automagically handled by
316 This option is not user-selectable but automagically handled by
322 This option is not user-selectable but automagically handled by
351 This option is not user-selectable but automagically handled by
358 This option is not user-selectable but automagically handled by
366 This option is not user-selectable but automagically handled by
375 This option is not user-selectable but automagically handled by
/linux/drivers/media/platform/amphion/
H A Dvpu_cmds.c26 u32 handled; member
42 .handled = 1,
47 .handled = 0,
52 .handled = 0,
57 .handled = 0,
62 .handled = 1,
201 static bool vpu_check_response(struct vpu_cmd_t *cmd, u32 response, u32 handled) in vpu_check_response() argument
211 if (request->handled != handled) in vpu_check_response()
217 int vpu_response_cmd(struct vpu_inst *inst, u32 response, u32 handled) in vpu_response_cmd() argument
226 if (vpu_check_response(inst->pending, response, handled)) in vpu_response_cmd()
/linux/kernel/irq/
H A Dspurious.c145 * If 99,900 of the previous 100,000 interrupts have not been handled
202 * But for 'irqfixup == 2' we also do it for handled interrupts if in try_misrouted_irq()
246 * handled an interrupt and we check whether that number in note_interrupt()
262 int handled; in note_interrupt() local
283 * care about the high bits of the handled in note_interrupt()
287 handled = atomic_read(&desc->threads_handled); in note_interrupt()
288 handled |= SPURIOUS_DEFERRED; in note_interrupt()
289 if (handled != desc->threads_handled_last) { in note_interrupt()
299 desc->threads_handled_last = handled; in note_interrupt()
324 * handled we never trigger the spurious in note_interrupt()
[all …]
/linux/drivers/media/pci/cx23885/
H A Dcx23885-av.c18 bool handled = false; in cx23885_av_work_handler() local
21 PCI_MSK_AV_CORE, &handled); in cx23885_av_work_handler()
23 /* Getting here with the interrupt not handled in cx23885_av_work_handler()
26 if (!handled) { in cx23885_av_work_handler()
/linux/drivers/irqchip/
H A Dirq-versatile-fpga.c109 * if we've handled at least one interrupt. This does a single read of the
114 int handled = 0; in handle_one_fpga() local
121 handled = 1; in handle_one_fpga()
124 return handled; in handle_one_fpga()
133 int i, handled; in fpga_handle_irq() local
136 for (i = 0, handled = 0; i < fpga_irq_id; ++i) in fpga_handle_irq()
137 handled |= handle_one_fpga(&fpga_irq_devices[i], regs); in fpga_handle_irq()
138 } while (handled); in fpga_handle_irq()
H A Dirq-vic.c199 * handled at least one interrupt. This reads the status register
206 int handled = 0; in handle_one_vic() local
211 handled = 1; in handle_one_vic()
214 return handled; in handle_one_vic()
239 int i, handled; in vic_handle_irq() local
242 for (i = 0, handled = 0; i < vic_id; ++i) in vic_handle_irq()
243 handled |= handle_one_vic(&vic_devices[i], regs); in vic_handle_irq()
244 } while (handled); in vic_handle_irq()
/linux/arch/powerpc/kernel/
H A Dmce_power.c489 int handled = 0; in mce_handle_ierror() local
506 handled = mce_flush(MCE_FLUSH_SLB); in mce_handle_ierror()
509 handled = mce_flush(MCE_FLUSH_ERAT); in mce_handle_ierror()
512 handled = mce_flush(MCE_FLUSH_TLB); in mce_handle_ierror()
561 return handled; in mce_handle_ierror()
579 int handled = 0; in mce_handle_derror() local
598 handled = 1; in mce_handle_derror()
602 handled = 1; in mce_handle_derror()
606 handled = 1; in mce_handle_derror()
664 return handled; in mce_handle_derror()
[all …]
/linux/Documentation/admin-guide/
H A Ddevices.txt198 loop devices is handled by mount(8) or losetup(8).
207 Partitions are handled in the same way as for IDE
509 Partitions are handled the same way as for IDE disks
520 Partitions are handled the same way as for the first
628 Partitions are handled in the same way as for IDE
716 Partitions are handled the same way as for the first
734 Partitions are handled the same way as for the first
861 Partitions are handled in the same way as for IDE
885 Partitions are handled in the same way as for IDE
938 Partitions are handled as for major 48.
[all …]
/linux/Documentation/trace/
H A Devents-nmi.rst41 …>-0 [000] d.h3 505.397558: nmi_handler: perf_event_nmi_handler() delta_ns: 3236765 handled: 1
42 …>-0 [000] d.h3 505.805893: nmi_handler: perf_event_nmi_handler() delta_ns: 3174234 handled: 1
43 …>-0 [000] d.h3 506.158206: nmi_handler: perf_event_nmi_handler() delta_ns: 3084642 handled: 1
44 …>-0 [000] d.h3 506.334346: nmi_handler: perf_event_nmi_handler() delta_ns: 3080351 handled: 1
/linux/arch/mips/cavium-octeon/executive/
H A Dcvmx-interrupt-decodes.c82 /*gmx_rx_int_en.s.fcserr = 1; // FCS errors are handled when we get work */ in __cvmx_interrupt_gmxx_rxx_int_en_enable()
102 /*gmx_rx_int_en.s.lenerr = 1; // Length errors are handled when we get work */ in __cvmx_interrupt_gmxx_rxx_int_en_enable()
104 /*gmx_rx_int_en.s.fcserr = 1; // FCS errors are handled when we get work */ in __cvmx_interrupt_gmxx_rxx_int_en_enable()
127 /*gmx_rx_int_en.s.fcserr = 1; // FCS errors are handled when we get work */ in __cvmx_interrupt_gmxx_rxx_int_en_enable()
147 /*gmx_rx_int_en.s.lenerr = 1; // Length errors are handled when we get work */ in __cvmx_interrupt_gmxx_rxx_int_en_enable()
149 /*gmx_rx_int_en.s.fcserr = 1; // FCS errors are handled when we get work */ in __cvmx_interrupt_gmxx_rxx_int_en_enable()
169 /*gmx_rx_int_en.s.lenerr = 1; // Length errors are handled when we get work */ in __cvmx_interrupt_gmxx_rxx_int_en_enable()
171 /*gmx_rx_int_en.s.fcserr = 1; // FCS errors are handled when we get work */ in __cvmx_interrupt_gmxx_rxx_int_en_enable()
192 /*gmx_rx_int_en.s.lenerr = 1; // Length errors are handled when we get work */ in __cvmx_interrupt_gmxx_rxx_int_en_enable()
194 /*gmx_rx_int_en.s.fcserr = 1; // FCS errors are handled when we get work */ in __cvmx_interrupt_gmxx_rxx_int_en_enable()
[all …]
/linux/arch/powerpc/kvm/
H A Dbook3s_hv_ras.c72 long handled = 1; in kvmppc_realmode_mc_power7() local
91 handled = 0; in kvmppc_realmode_mc_power7()
106 handled = 0; in kvmppc_realmode_mc_power7()
109 return handled; in kvmppc_realmode_mc_power7()
115 long handled; in kvmppc_realmode_machine_check() local
119 handled = 0; in kvmppc_realmode_machine_check()
121 handled = kvmppc_realmode_mc_power7(vcpu); in kvmppc_realmode_machine_check()
126 * be handled by the primary thread in virtual mode. We can't in kvmppc_realmode_machine_check()
131 if (handled && mce_evt.version == MCE_V1) in kvmppc_realmode_machine_check()
/linux/Documentation/leds/
H A Dledtrig-usbport.rst10 listed as separated entries in a "ports" subdirectory. Selecting is handled by
24 2) Device with a physical port handled by few controllers
28 port may be handled by ohci-platform, ehci-platform and xhci-hcd. If there is
/linux/security/landlock/
H A Daccess.h21 * All access rights that are denied by default whether they are handled or not
23 * entries when we need to get the absolute handled access masks, see
92 * explicitly handled or not.
/linux/include/linux/
H A Dentry-virt.h44 * to be handled before going to guest mode
52 * need to be handled while IRQs are disabled
81 * handled before returning to guest mode
/linux/drivers/ata/
H A Dsata_qstor.c352 unsigned int handled = 0; in qs_intr_pkt() local
372 handled = 1; in qs_intr_pkt()
389 return handled; in qs_intr_pkt()
394 unsigned int handled = 0, port_no; in qs_intr_mmio() local
413 handled = 1; in qs_intr_mmio()
420 handled |= ata_sff_port_intr(ap, qc); in qs_intr_mmio()
422 return handled; in qs_intr_mmio()
428 unsigned int handled = 0; in qs_intr() local
432 handled = qs_intr_pkt(host) | qs_intr_mmio(host); in qs_intr()
435 return IRQ_RETVAL(handled); in qs_intr()
/linux/tools/perf/pmu-events/arch/common/common/
H A Dsoftware.json65 "BriefDescription": "Number of kernel handled memory alignment faults",
71 …"BriefDescription": "Number of kernel handled unimplemented instruction faults handled through emu…
/linux/drivers/xen/xen-pciback/
H A Dconf_space.c206 int err = 0, handled = 0; in xen_pcibk_config_write() local
237 /* handled is set true here, but not every byte in xen_pcibk_config_write()
239 * every byte is handled is unnecessary as the in xen_pcibk_config_write()
243 handled = 1; in xen_pcibk_config_write()
247 if (!handled && !err) { in xen_pcibk_config_write()
248 /* By default, anything not specificially handled above is in xen_pcibk_config_write()
250 * that anything not specifically handled above is writable. in xen_pcibk_config_write()

12345678910>>...74