pub struct CpuInstrumentationSubscribeInterface {
    obj: *mut ConfObject,
    interface: *mut cpu_instrumentation_subscribe_interface,
}
Expand description

Automatically generated structure for the interface

Fields§

§obj: *mut ConfObject§interface: *mut cpu_instrumentation_subscribe_interface

Implementations§

source§

impl CpuInstrumentationSubscribeInterface

source

pub fn remove_callback(&mut self, handle: *mut cpu_cb_handle_t) -> Result<()>

Automatically generated method for the interface

source

pub fn enable_callback(&mut self, handle: *mut cpu_cb_handle_t) -> Result<()>

Automatically generated method for the interface

source

pub fn disable_callback(&mut self, handle: *mut cpu_cb_handle_t) -> Result<()>

Automatically generated method for the interface

source

pub fn remove_connection_callbacks( &mut self, connection: *mut conf_object_t, ) -> Result<()>

Automatically generated method for the interface

source

pub fn enable_connection_callbacks( &mut self, connection: *mut conf_object_t, ) -> Result<()>

Automatically generated method for the interface

source

pub fn disable_connection_callbacks( &mut self, connection: *mut conf_object_t, ) -> Result<()>

Automatically generated method for the interface

source

pub fn register_instruction_before_cb( &mut self, connection: *mut conf_object_t, cb: cpu_instruction_cb_t, data: *mut lang_void, ) -> Result<*mut cpu_cb_handle_t>

Automatically generated method for the interface

source

pub fn register_instruction_after_cb( &mut self, connection: *mut conf_object_t, cb: cpu_instruction_cb_t, data: *mut lang_void, ) -> Result<*mut cpu_cb_handle_t>

Automatically generated method for the interface

source

pub fn register_read_before_cb( &mut self, connection: *mut conf_object_t, scope: cpu_access_scope_t, cb: cpu_memory_cb_t, data: *mut lang_void, ) -> Result<*mut cpu_cb_handle_t>

Automatically generated method for the interface

source

pub fn register_read_after_cb( &mut self, connection: *mut conf_object_t, scope: cpu_access_scope_t, cb: cpu_memory_cb_t, data: *mut lang_void, ) -> Result<*mut cpu_cb_handle_t>

Automatically generated method for the interface

source

pub fn register_write_before_cb( &mut self, connection: *mut conf_object_t, scope: cpu_access_scope_t, cb: cpu_memory_cb_t, data: *mut lang_void, ) -> Result<*mut cpu_cb_handle_t>

Automatically generated method for the interface

source

pub fn register_write_after_cb( &mut self, connection: *mut conf_object_t, scope: cpu_access_scope_t, cb: cpu_memory_cb_t, data: *mut lang_void, ) -> Result<*mut cpu_cb_handle_t>

Automatically generated method for the interface

source

pub fn register_address_before_cb( &mut self, connection: *mut conf_object_t, cb: cpu_address_cb_t, data: *mut lang_void, ) -> Result<*mut cpu_cb_handle_t>

Automatically generated method for the interface

source

pub fn register_cached_instruction_cb( &mut self, connection: *mut conf_object_t, cb: cpu_cached_instruction_cb_t, data: *mut lang_void, ) -> Result<*mut cpu_cb_handle_t>

Automatically generated method for the interface

source

pub fn register_instruction_decoder_cb( &mut self, connection: *mut conf_object_t, cb: cpu_instruction_decoder_cb_t, disass_cb: cpu_instruction_disassemble_cb_t, data: *mut lang_void, ) -> Result<*mut cpu_cb_handle_t>

Automatically generated method for the interface

source

pub fn register_exception_before_cb( &mut self, connection: *mut conf_object_t, exception_number: c_int, cb: cpu_exception_cb_t, data: *mut lang_void, ) -> Result<*mut cpu_cb_handle_t>

Automatically generated method for the interface

source

pub fn register_exception_after_cb( &mut self, connection: *mut conf_object_t, exception_number: c_int, cb: cpu_exception_cb_t, data: *mut lang_void, ) -> Result<*mut cpu_cb_handle_t>

Automatically generated method for the interface

source

pub fn register_exception_return_before_cb( &mut self, connection: *mut conf_object_t, cb: cpu_exception_return_cb_t, data: *mut lang_void, ) -> Result<*mut cpu_cb_handle_t>

Automatically generated method for the interface

source

pub fn register_exception_return_after_cb( &mut self, connection: *mut conf_object_t, cb: cpu_exception_return_cb_t, data: *mut lang_void, ) -> Result<*mut cpu_cb_handle_t>

Automatically generated method for the interface

source

pub fn register_mode_change_cb( &mut self, connection: *mut conf_object_t, cb: cpu_mode_change_cb_t, data: *mut lang_void, ) -> Result<*mut cpu_cb_handle_t>

Automatically generated method for the interface

source

pub fn register_control_register_read_before_cb( &mut self, connection: *mut conf_object_t, register_number: c_int, cb: cpu_control_register_read_cb_t, data: *mut lang_void, ) -> Result<*mut cpu_cb_handle_t>

Automatically generated method for the interface

source

pub fn register_control_register_write_before_cb( &mut self, connection: *mut conf_object_t, register_number: c_int, cb: cpu_control_register_write_cb_t, data: *mut lang_void, ) -> Result<*mut cpu_cb_handle_t>

Automatically generated method for the interface

Trait Implementations§

source§

impl Interface for CpuInstrumentationSubscribeInterface

source§

const NAME: &'static [u8] = crate::api::sys::CPU_INSTRUMENTATION_SUBSCRIBE_INTERFACE

The name of the interface
source§

type InternalInterface = cpu_instrumentation_subscribe_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]

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

Create a new instance of this interface
source§

fn register(cls: *mut ConfClass) -> Result<()>
where Self: Sized,

Register this interface for a type
source§

fn get(obj: *mut ConfObject) -> Result<Self>
where Self: Sized,

Get this interface for an object that implements it

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.