Struct simics::api::interface::interfaces::DebugSetupInterface
source · pub struct DebugSetupInterface {
obj: *mut ConfObject,
interface: *mut debug_setup_interface,
}
Expand description
Automatically generated structure for the interface
Fields§
§obj: *mut ConfObject
§interface: *mut debug_setup_interface
Implementations§
source§impl DebugSetupInterface
impl DebugSetupInterface
sourcepub fn add_symbol_file(
&mut self,
query: *const c_char,
symbol_file: *const c_char,
address: uint64,
absolute_address: bool,
) -> Result<AttrValue>
pub fn add_symbol_file( &mut self, query: *const c_char, symbol_file: *const c_char, address: uint64, absolute_address: bool, ) -> Result<AttrValue>
Automatically generated method for the interface
sourcepub fn add_symbol_segment(
&mut self,
query: *const c_char,
symbol_file: *const c_char,
segment: c_uint,
address: uint64,
absolute_address: bool,
) -> Result<AttrValue>
pub fn add_symbol_segment( &mut self, query: *const c_char, symbol_file: *const c_char, segment: c_uint, address: uint64, absolute_address: bool, ) -> Result<AttrValue>
Automatically generated method for the interface
sourcepub fn add_symbol_section(
&mut self,
query: *const c_char,
symbol_file: *const c_char,
section: *const c_char,
address: uint64,
absolute_address: bool,
) -> Result<AttrValue>
pub fn add_symbol_section( &mut self, query: *const c_char, symbol_file: *const c_char, section: *const c_char, address: uint64, absolute_address: bool, ) -> Result<AttrValue>
Automatically generated method for the interface
sourcepub fn remove_symbol_file(&mut self, id: debug_setup_id_t) -> Result<AttrValue>
pub fn remove_symbol_file(&mut self, id: debug_setup_id_t) -> Result<AttrValue>
Automatically generated method for the interface
sourcepub fn clear_symbol_files(&mut self) -> Result<()>
pub fn clear_symbol_files(&mut self) -> Result<()>
Automatically generated method for the interface
sourcepub fn symbol_files(&mut self) -> Result<AttrValue>
pub fn symbol_files(&mut self) -> Result<AttrValue>
Automatically generated method for the interface
sourcepub fn symbol_files_for_ctx(
&mut self,
ctx_id: *const c_char,
) -> Result<AttrValue>
pub fn symbol_files_for_ctx( &mut self, ctx_id: *const c_char, ) -> Result<AttrValue>
Automatically generated method for the interface
sourcepub fn list_all_mappings(&mut self, ctx_id: *const c_char) -> Result<AttrValue>
pub fn list_all_mappings(&mut self, ctx_id: *const c_char) -> Result<AttrValue>
Automatically generated method for the interface
sourcepub fn add_path_map_entry(
&mut self,
query: *const c_char,
source: *const c_char,
dest: *const c_char,
) -> Result<AttrValue>
pub fn add_path_map_entry( &mut self, query: *const c_char, source: *const c_char, dest: *const c_char, ) -> Result<AttrValue>
Automatically generated method for the interface
sourcepub fn remove_path_map_entry(
&mut self,
id: debug_setup_id_t,
) -> Result<AttrValue>
pub fn remove_path_map_entry( &mut self, id: debug_setup_id_t, ) -> Result<AttrValue>
Automatically generated method for the interface
sourcepub fn clear_path_map_entries(&mut self) -> Result<()>
pub fn clear_path_map_entries(&mut self) -> Result<()>
Automatically generated method for the interface
sourcepub fn path_map_entries(&mut self) -> Result<AttrValue>
pub fn path_map_entries(&mut self) -> Result<AttrValue>
Automatically generated method for the interface
Trait Implementations§
source§impl Interface for DebugSetupInterface
impl Interface for DebugSetupInterface
source§type InternalInterface = debug_setup_interface
type InternalInterface = debug_setup_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 DebugSetupInterface
impl RefUnwindSafe for DebugSetupInterface
impl !Send for DebugSetupInterface
impl !Sync for DebugSetupInterface
impl Unpin for DebugSetupInterface
impl UnwindSafe for DebugSetupInterface
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