Struct simics::api::interface::interfaces::BreakpointTypeProviderInterface
source · pub struct BreakpointTypeProviderInterface {
obj: *mut ConfObject,
interface: *mut breakpoint_type_provider_interface,
}
Expand description
Automatically generated structure for the interface
Fields§
§obj: *mut ConfObject
§interface: *mut breakpoint_type_provider_interface
Implementations§
source§impl BreakpointTypeProviderInterface
impl BreakpointTypeProviderInterface
sourcepub fn register_bp(&mut self, bp_id: uint64) -> Result<uint64>
pub fn register_bp(&mut self, bp_id: uint64) -> Result<uint64>
Automatically generated method for the interface
sourcepub fn add_bp(&mut self, flags: c_int, data: attr_value_t) -> Result<uint64>
pub fn add_bp(&mut self, flags: c_int, data: attr_value_t) -> Result<uint64>
Automatically generated method for the interface
sourcepub fn remove_bp(&mut self, bp_id: uint64) -> Result<()>
pub fn remove_bp(&mut self, bp_id: uint64) -> Result<()>
Automatically generated method for the interface
sourcepub fn trace_msg(&mut self, bp_id: uint64) -> Result<*const c_char>
pub fn trace_msg(&mut self, bp_id: uint64) -> Result<*const c_char>
Automatically generated method for the interface
sourcepub fn break_msg(&mut self, bp_id: uint64) -> Result<*const c_char>
pub fn break_msg(&mut self, bp_id: uint64) -> Result<*const c_char>
Automatically generated method for the interface
sourcepub fn wait_msg(&mut self, bp_id: uint64) -> Result<*const c_char>
pub fn wait_msg(&mut self, bp_id: uint64) -> Result<*const c_char>
Automatically generated method for the interface
sourcepub fn break_data(&mut self, bp_id: uint64) -> Result<AttrValue>
pub fn break_data(&mut self, bp_id: uint64) -> Result<AttrValue>
Automatically generated method for the interface
Trait Implementations§
source§impl Interface for BreakpointTypeProviderInterface
impl Interface for BreakpointTypeProviderInterface
source§const NAME: &'static [u8] = crate::api::sys::BREAKPOINT_TYPE_PROVIDER_INTERFACE
const NAME: &'static [u8] = crate::api::sys::BREAKPOINT_TYPE_PROVIDER_INTERFACE
The name of the interface
source§type InternalInterface = breakpoint_type_provider_interface
type InternalInterface = breakpoint_type_provider_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 BreakpointTypeProviderInterface
impl RefUnwindSafe for BreakpointTypeProviderInterface
impl !Send for BreakpointTypeProviderInterface
impl !Sync for BreakpointTypeProviderInterface
impl Unpin for BreakpointTypeProviderInterface
impl UnwindSafe for BreakpointTypeProviderInterface
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