Struct simics::api::interface::interfaces::DebugSymbolInterface

source ·
pub struct DebugSymbolInterface {
    obj: *mut ConfObject,
    interface: *mut debug_symbol_interface,
}
Expand description

Automatically generated structure for the interface

Fields§

§obj: *mut ConfObject§interface: *mut debug_symbol_interface

Implementations§

source§

impl DebugSymbolInterface

source

pub fn address_source( &mut self, ctx_id: *const c_char, address: uint64, size: uint64, cb: Option<unsafe extern "C" fn(data: cbdata_call_t, code_area: attr_value_t)>, data: cbdata_register_t, ) -> Result<AttrValue>

Automatically generated method for the interface

source

pub fn source_address( &mut self, ctx_id: *const c_char, filename: *const c_char, line: uint32, column: uint32, cb: Option<unsafe extern "C" fn(data: cbdata_call_t, code_area: attr_value_t)>, data: cbdata_register_t, ) -> Result<AttrValue>

Automatically generated method for the interface

source

pub fn address_symbol( &mut self, ctx_id: *const c_char, address: uint64, ) -> Result<AttrValue>

Automatically generated method for the interface

source

pub fn stack_depth(&mut self, ctx_id: *const c_char) -> Result<AttrValue>

Automatically generated method for the interface

source

pub fn stack_frames( &mut self, ctx_id: *const c_char, min: c_int, max: c_int, ) -> Result<AttrValue>

Automatically generated method for the interface

source

pub fn local_variables( &mut self, ctx_id: *const c_char, frame: c_int, ) -> Result<AttrValue>

Automatically generated method for the interface

source

pub fn local_arguments( &mut self, ctx_id: *const c_char, frame: c_int, ) -> Result<AttrValue>

Automatically generated method for the interface

source

pub fn expression_value( &mut self, ctx_id: *const c_char, frame: int32, address_scope: uint64, expr: *const c_char, ) -> Result<AttrValue>

Automatically generated method for the interface

source

pub fn expression_type( &mut self, ctx_id: *const c_char, frame: int32, address_scope: uint64, expr: *const c_char, ) -> Result<AttrValue>

Automatically generated method for the interface

source

pub fn type_info( &mut self, ctx_id: *const c_char, address_scope: uint64, type_: *const c_char, ) -> Result<AttrValue>

Automatically generated method for the interface

source

pub fn type_to_string(&mut self, type_: attr_value_t) -> Result<AttrValue>

Automatically generated method for the interface

source

pub fn symbol_address( &mut self, ctx_id: *const c_char, frame: int32, symbol: *const c_char, ) -> Result<AttrValue>

Automatically generated method for the interface

source

pub fn address_string( &mut self, ctx_id: *const c_char, address: uint64, maxlen: c_int, ) -> Result<AttrValue>

Automatically generated method for the interface

source

pub fn lvalue_write( &mut self, ctx_id: *const c_char, frame: int32, symbol: *const c_char, value: attr_value_t, ) -> Result<AttrValue>

Automatically generated method for the interface

source

pub fn address_write( &mut self, ctx_id: *const c_char, address: uint64, value: attr_value_t, ) -> Result<AttrValue>

Automatically generated method for the interface

source

pub fn address_read( &mut self, ctx_id: *const c_char, address: uint64, size: c_uint, ) -> Result<AttrValue>

Automatically generated method for the interface

source

pub fn struct_members( &mut self, ctx_id: *const c_char, address_scope: uint64, struct_name: *const c_char, ) -> Result<AttrValue>

Automatically generated method for the interface

source

pub fn struct_field( &mut self, ctx_id: *const c_char, address_scope: uint64, struct_name: *const c_char, field: *const c_char, ) -> Result<AttrValue>

Automatically generated method for the interface

source

pub fn list_functions(&mut self, ctx_id: *const c_char) -> Result<AttrValue>

Automatically generated method for the interface

source

pub fn list_global_variables( &mut self, ctx_id: *const c_char, ) -> Result<AttrValue>

Automatically generated method for the interface

source

pub fn list_source_files(&mut self, ctx_id: *const c_char) -> Result<AttrValue>

Automatically generated method for the interface

Trait Implementations§

source§

impl Interface for DebugSymbolInterface

source§

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

The name of the interface
source§

type InternalInterface = debug_symbol_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.