[][src]Struct panda::plugins::osi::Osi

pub struct Osi { /* fields omitted */ }

Implementations

impl Osi[src]

pub fn new() -> Self[src]

Create a new handle to this plugin

pub fn ensure_init(&self)[src]

Load the plugin and initialize it if it hasn't been loaded already.

pub fn get_process_handles(&self, cpu: *mut CPUState) -> *mut GArray[src]

pub fn get_current_thread(&self, cpu: *mut CPUState) -> GBox<OsiThread>[src]

pub fn get_modules(&self, cpu: *mut CPUState) -> *mut GArray[src]

pub fn get_mappings(&self, cpu: *mut CPUState, p: *mut OsiProc) -> *mut GArray[src]

pub fn get_processes(&self, cpu: *mut CPUState) -> *mut GArray[src]

pub fn get_current_process(&self, cpu: *mut CPUState) -> GBox<OsiProc>[src]

pub fn get_one_module(
    &self,
    osimodules: *mut GArray,
    idx: c_uint
) -> *mut OsiModule
[src]

pub fn get_one_proc(&self, osiprocs: *mut GArray, idx: c_uint) -> *mut OsiProc[src]

pub fn cleanup_garray(&self, g: *mut GArray)[src]

pub fn get_current_process_handle(
    &self,
    cpu: *mut CPUState
) -> GBox<OsiProcHandle>
[src]

pub fn get_process(
    &self,
    cpu: *mut CPUState,
    h: *const OsiProcHandle
) -> GBox<OsiProc>
[src]

pub fn get_process_pid(
    &self,
    cpu: *mut CPUState,
    h: *const OsiProcHandle
) -> target_pid_t
[src]

pub fn get_process_ppid(
    &self,
    cpu: *mut CPUState,
    h: *const OsiProcHandle
) -> target_pid_t
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.