Struct idalib_sys::func::qflow_chart_t

#[repr(C, align(8))]
pub struct qflow_chart_t { /* private fields */ }
Expand description

A flow chart for a function, or a set of address ranges

Implementations§

§

impl qflow_chart_t

pub unsafe fn create( self: Pin<&mut qflow_chart_t>, _title: *const c_char, _pfn: *mut func_t, _ea1: c_ulonglong, _ea2: c_ulonglong, _flags: c_int, )

pub unsafe fn create1( self: Pin<&mut qflow_chart_t>, _title: *const c_char, ranges: &rangevec_t, _flags: c_int, )

pub unsafe fn new() -> impl New<Output = Self>

pub unsafe fn new1( _title: *const c_char, _pfn: *mut func_t, _ea1: c_ulonglong, _ea2: c_ulonglong, _flags: c_int, ) -> impl New<Output = Self>

pub unsafe fn print_node_attributes( self: &qflow_chart_t, fp: *mut _IO_FILE, n: c_int, )

pub unsafe fn nsucc(self: &qflow_chart_t, node: c_int) -> c_int

pub unsafe fn npred(self: &qflow_chart_t, node: c_int) -> c_int

pub unsafe fn succ(self: &qflow_chart_t, node: c_int, i: c_int) -> c_int

pub unsafe fn pred(self: &qflow_chart_t, node: c_int, i: c_int) -> c_int

pub unsafe fn get_node_label( self: &qflow_chart_t, iobuf: *mut c_char, iobufsize: c_int, n: c_int, ) -> *mut c_char

pub unsafe fn size(self: &qflow_chart_t) -> c_int

§

impl qflow_chart_t

pub unsafe fn append_to_flowchart( self: Pin<&mut Self>, ea1: c_ulonglong, ea2: c_ulonglong, )

§

impl qflow_chart_t

pub unsafe fn refresh(self: Pin<&mut Self>)

§

impl qflow_chart_t

pub unsafe fn calc_block_type(&self, blknum: usize) -> fc_block_type_t

§

impl qflow_chart_t

pub unsafe fn is_ret_block(&self, blknum: usize) -> bool

§

impl qflow_chart_t

pub unsafe fn is_noret_block(&self, blknum: usize) -> bool

§

impl qflow_chart_t

pub unsafe fn print_names(&self) -> bool

Trait Implementations§

§

impl Drop for qflow_chart_t

§

fn drop(self: &mut qflow_chart_t)

Executes the destructor for this type. Read more
§

impl ExternType for qflow_chart_t

§

type Id = (q, f, l, o, w, __, c, h, a, r, t, __, t)

A type-level representation of the type’s C++ namespace and type name. Read more
§

type Kind = Opaque

§

impl MakeCppStorage for qflow_chart_t

§

unsafe fn allocate_uninitialized_cpp_storage() -> *mut qflow_chart_t

Allocates heap space for this type in C++ and return a pointer to that space, but do not initialize that space (i.e. do not yet call a constructor). Read more
§

unsafe fn free_uninitialized_cpp_storage(arg0: *mut qflow_chart_t)

Frees a C++ allocation which has not yet had a constructor called. Read more
§

impl SharedPtrTarget for qflow_chart_t

§

impl UniquePtrTarget for qflow_chart_t

§

impl WeakPtrTarget for qflow_chart_t

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.