Home
last modified time | relevance | path

Searched defs:CharBackend (Results 1 – 6 of 6) sorted by relevance

/openbmc/qemu/include/chardev/
H A Dchar-fe.h16 struct CharBackend { struct
30 * Initializes a front end for the given CharBackend and argument
H A Dchar.h18 typedef struct CharBackend CharBackend; typedef
/openbmc/qemu/rust/qemu-api/src/
H A Dchardev.rs41 pub struct CharBackend { struct
42 inner: BqlRefCell<bindings::CharBackend>, argument
46 impl Write for BqlRefMut<'_, bindings::CharBackend> { argument
74 impl Debug for CharBackend { implementation
83 impl Drop for CharBackend { implementation
89 impl CharBackend { implementation
H A Dbindings.rs33 unsafe impl Send for CharBackend {} implementation
34 unsafe impl Sync for CharBackend {} implementation
H A Dzeroable.rs37 unsafe impl Zeroable for crate::bindings::CharBackend {} implementation
/openbmc/qemu/rust/hw/char/pl011/src/
H A Ddevice.rs226 char_backend: &CharBackend, in write()