CommonBase

Struct CommonBase 

Source
pub struct CommonBase {
    pub base: TargetBase,
    pub process: Process,
    pub step_tid: Cell<tid_t>,
    pub symgr: SymbolManager<Module>,
    pub bp_map: RwLock<HashMap<BpID, Arc<Breakpoint>>>,
    pub dbg_reg: [Cell<usize>; 4],
}

Fields§

§base: TargetBase§process: Process§step_tid: Cell<tid_t>§symgr: SymbolManager<Module>§bp_map: RwLock<HashMap<BpID, Arc<Breakpoint>>>§dbg_reg: [Cell<usize>; 4]

Implementations§

Source§

impl CommonBase

Source

pub fn new(ps: Process) -> Self

Source

pub fn get_hwbp_index(&self) -> Option<usize>

Source

pub fn set_hwbp(&self, index: usize, p: usize)

Source

pub fn enable_hwbp_for_context<C: HWBPRegs>( &self, cx: &mut C, info: HwbpInfo, enable: bool, )

Source

pub fn find_table_bp_index(&self) -> Option<isize>

Source

pub fn find_module(&self, address: usize) -> Option<Arc<Module>>

Source

pub fn bp_exists(&self, id: BpID) -> bool

Source

pub fn get_bp<'a>(&'a self, id: BpID) -> Option<Arc<dyn UDbgBreakpoint>>

Methods from Deref<Target = TargetBase>§

Source

pub fn is_ptr32(&self) -> bool

Source

pub fn is_wow64(&self) -> bool

if the target is a WOW64 process

Source

pub fn status(&self) -> UDbgStatus

Source

pub fn pointer_size(&self) -> usize

Source

pub fn check_attached(&self) -> UDbgResult<()>

Trait Implementations§

Source§

impl Deref for CommonBase

Source§

type Target = TargetBase

The resulting type after dereferencing.
Source§

fn deref(&self) -> &Self::Target

Dereferences the value.
Source§

impl DerefMut for CommonBase

Source§

fn deref_mut(&mut self) -> &mut Self::Target

Mutably dereferences the value.

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> AsByteArray for T

Source§

fn as_byte_array(&self) -> &[u8]

Source§

impl<T> AsByteArrayMut for T

Source§

fn as_mut_byte_array(&mut self) -> &mut [u8]

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> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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<P, T> Receiver for P
where P: Deref<Target = T> + ?Sized, T: ?Sized,

Source§

type Target = T

🔬This is a nightly-only experimental API. (arbitrary_self_types)
The target type on which the method may be called.
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.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more