Home
last modified time | relevance | path

Searched refs:has_event (Results 1 – 7 of 7) sorted by relevance

/openbmc/qemu/hw/acpi/
H A Dcpu.c493 Aml *has_event = aml_local(0); in build_cpus_aml() local
528 aml_append(while_ctx2, aml_store(one, has_event)); in build_cpus_aml()
535 while_ctx = aml_while(aml_land(aml_equal(has_event, one), in build_cpus_aml()
542 aml_append(while_ctx, aml_store(zero, has_event)); in build_cpus_aml()
577 aml_append(ifctx, aml_store(one, has_event)); in build_cpus_aml()
586 aml_append(ifctx, aml_store(one, has_event)); in build_cpus_aml()
/openbmc/linux/drivers/virt/nitro_enclaves/
H A Dne_misc_dev.h68 bool has_event; member
H A Dne_pci_dev.c253 ne_enclave->has_event = true; in ne_event_work_handler()
H A Dne_misc_dev.c1564 if (ne_enclave->has_event) in ne_enclave_poll()
1685 ne_enclave->has_event = false; in ne_create_vm_ioctl()
/openbmc/qemu/target/i386/nvmm/
H A Dnvmm-all.c397 bool has_event = false; in nvmm_vcpu_pre_run() local
418 if (!has_event && (cpu->interrupt_request & CPU_INTERRUPT_NMI)) { in nvmm_vcpu_pre_run()
423 has_event = true; in nvmm_vcpu_pre_run()
427 if (!has_event && (cpu->interrupt_request & CPU_INTERRUPT_HARD)) { in nvmm_vcpu_pre_run()
432 has_event = true; in nvmm_vcpu_pre_run()
457 if (has_event) { in nvmm_vcpu_pre_run()
/openbmc/linux/tools/perf/util/
H A Dexpr.l116 has_event { return HAS_EVENT; }
/openbmc/linux/tools/perf/pmu-events/
H A Dmetric.py411 def has_event(event: Event) -> Function: function