Home
last modified time | relevance | path

Searched refs:interrupt_requested (Results 1 – 6 of 6) sorted by relevance

/external/libwebsockets/lib/plat/windows/
Dwindows-service.c70 int interrupt_requested; in _lws_plat_service_tsi() local
160 interrupt_requested = pt->interrupt_requested; in _lws_plat_service_tsi()
161 pt->interrupt_requested = 0; in _lws_plat_service_tsi()
163 if (interrupt_requested) { in _lws_plat_service_tsi()
Dwindows-pipe.c42 pt->interrupt_requested = 1; in lws_plat_pipe_signal()
/external/crosvm/devices/src/irqchip/kvm/
Dx86_64.rs250 fn interrupt_requested(&self, vcpu_id: usize) -> bool { in interrupt_requested() method
255 self.pic.lock().interrupt_requested() in interrupt_requested()
474 if !self.interrupt_requested(vcpu_id) || !vcpu.ready_for_interrupt() { in inject_interrupts()
484 if self.interrupt_requested(vcpu_id) { in inject_interrupts()
942 assert!(chip.interrupt_requested(0)); in finalize_devices()
983 assert!(!chip.interrupt_requested(0)); in get_external_interrupt()
986 assert!(chip.interrupt_requested(0)); in get_external_interrupt()
996 assert!(!chip.interrupt_requested(0)); in get_external_interrupt()
/external/libwebsockets/lib/core-net/
Dprivate-lib-core-net.h481 unsigned char interrupt_requested:1; member
/external/llvm-project/lldb/source/Target/
DProcess.cpp3872 bool interrupt_requested = false; in RunPrivateStateThread() local
3923 interrupt_requested = true; in RunPrivateStateThread()
3948 if (interrupt_requested) { in RunPrivateStateThread()
3953 interrupt_requested = false; in RunPrivateStateThread()
/external/crosvm/devices/src/irqchip/
Dpic.rs187 pub fn interrupt_requested(&self) -> bool { in interrupt_requested() method