Struct simics::api::interface::interfaces::ArmCpuGroupExclusiveInterface
source · pub struct ArmCpuGroupExclusiveInterface {
obj: *mut ConfObject,
interface: *mut arm_cpu_group_exclusive_interface,
}
Expand description
Automatically generated structure for the interface
Fields§
§obj: *mut ConfObject
§interface: *mut arm_cpu_group_exclusive_interface
Implementations§
source§impl ArmCpuGroupExclusiveInterface
impl ArmCpuGroupExclusiveInterface
sourcepub fn mark_exclusive(
&mut self,
address: physical_address_t,
size: physical_address_t,
) -> Result<()>
pub fn mark_exclusive( &mut self, address: physical_address_t, size: physical_address_t, ) -> Result<()>
Automatically generated method for the interface
sourcepub fn clear_and_probe_exclusive(
&mut self,
clear_address: physical_address_t,
clear_size: physical_address_t,
probe_address: physical_address_t,
probe_size: physical_address_t,
) -> Result<bool>
pub fn clear_and_probe_exclusive( &mut self, clear_address: physical_address_t, clear_size: physical_address_t, probe_address: physical_address_t, probe_size: physical_address_t, ) -> Result<bool>
Automatically generated method for the interface
Trait Implementations§
source§impl Interface for ArmCpuGroupExclusiveInterface
impl Interface for ArmCpuGroupExclusiveInterface
source§const NAME: &'static [u8] = crate::api::sys::ARM_CPU_GROUP_EXCLUSIVE_INTERFACE
const NAME: &'static [u8] = crate::api::sys::ARM_CPU_GROUP_EXCLUSIVE_INTERFACE
The name of the interface
source§type InternalInterface = arm_cpu_group_exclusive_interface
type InternalInterface = arm_cpu_group_exclusive_interface
The inner interface type, which is a struct of nullable extern “C” function pointers
and must be default constructable as all NULL pointers (i.e. None values)
source§type Name = &'static [u8]
type Name = &'static [u8]
The type of the name of the interface, must be convertible to raw C string to pass to
the simulator
source§fn new(obj: *mut ConfObject, interface: *mut Self::InternalInterface) -> Self
fn new(obj: *mut ConfObject, interface: *mut Self::InternalInterface) -> Self
Create a new instance of this interface
Auto Trait Implementations§
impl Freeze for ArmCpuGroupExclusiveInterface
impl RefUnwindSafe for ArmCpuGroupExclusiveInterface
impl !Send for ArmCpuGroupExclusiveInterface
impl !Sync for ArmCpuGroupExclusiveInterface
impl Unpin for ArmCpuGroupExclusiveInterface
impl UnwindSafe for ArmCpuGroupExclusiveInterface
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more