|
int | value_set_addr (struct value *value, ADDR addr) |
|
int | value_set_mmap (struct value *value, ADDR addr, struct memcache_mmap_entry *mme, char *offset_ptr) |
|
int | value_set_reg (struct value *value, REG reg) |
|
int | value_set_child (struct value *value, struct value *parent_value, ADDR addr) |
|
void | value_set_strlen (struct value *value, int len) |
|
void | value_set_const (struct value *value) |
|
struct value * | value_create_raw (struct target *target, struct target_thread *tthread, struct memrange *range, int len) |
|
struct value * | value_create_type (struct target_thread *thread, struct memrange *range, struct symbol *type) |
|
struct value * | value_create (struct target_thread *thread, struct memrange *range, struct lsymbol *lsymbol, struct symbol *type) |
|
struct value * | value_create_noalloc (struct target_thread *thread, struct memrange *range, struct lsymbol *lsymbol, struct symbol *type) |
|
struct value * | value_clone (struct value *in) |
|
struct value * | value_reload_as_type (struct value *in, struct symbol *type, int force) |
|
void | value_free (struct value *value) |
|
ADDR | value_addr (struct value *value) |
|
int | value_refresh (struct value *value, int recursive) |
|
int | value_refresh_diff (struct value *value, int recurse, value_diff_t *vdiff, char **old_buf, int *old_bufsiz, value_hash_t *old_vhash) |
|
signed char | v_c (struct value *v) |
|
unsigned char | v_uc (struct value *v) |
|
wchar_t | v_wc (struct value *v) |
|
uint8_t | v_u8 (struct value *v) |
|
uint16_t | v_u16 (struct value *v) |
|
uint32_t | v_u32 (struct value *v) |
|
uint64_t | v_u64 (struct value *v) |
|
int8_t | v_i8 (struct value *v) |
|
int16_t | v_i16 (struct value *v) |
|
int32_t | v_i32 (struct value *v) |
|
int64_t | v_i64 (struct value *v) |
|
num_t | v_num (struct value *v) |
|
unum_t | v_unum (struct value *v) |
|
float | v_f (struct value *v) |
|
double | v_d (struct value *v) |
|
long double | v_dd (struct value *v) |
|
ADDR | v_addr (struct value *v) |
|
char * | v_string (struct value *v) |
|
int | value_update (struct value *value, const char *buf, int bufsiz) |
|
int | value_update_zero (struct value *value, const char *buf, int bufsiz) |
|
int | value_update_c (struct value *value, signed char v) |
|
int | value_update_uc (struct value *value, unsigned char v) |
|
int | value_update_wc (struct value *value, wchar_t v) |
|
int | value_update_u8 (struct value *value, uint8_t v) |
|
int | value_update_u16 (struct value *value, uint16_t v) |
|
int | value_update_u32 (struct value *value, uint32_t v) |
|
int | value_update_u64 (struct value *value, uint64_t v) |
|
int | value_update_i8 (struct value *value, int8_t v) |
|
int | value_update_i16 (struct value *value, int16_t v) |
|
int | value_update_i32 (struct value *value, int32_t v) |
|
int | value_update_i64 (struct value *value, int64_t v) |
|
int | value_update_f (struct value *value, float v) |
|
int | value_update_d (struct value *value, double v) |
|
int | value_update_dd (struct value *value, long double v) |
|
int | value_update_addr (struct value *value, ADDR v) |
|
int | value_update_num (struct value *value, num_t v) |
|
int | value_update_unum (struct value *value, unum_t v) |
|
int | value_snprintf (struct value *value, char *buf, int buflen) |
|
void | __value_dump (struct value *value, struct dump_info *ud) |
|
void | value_dump_simple (struct value *value, struct dump_info *ud) |
|
void | value_dump (struct value *value, struct dump_info *ud) |
|
signed char | rv_c (void *buf) |
|
unsigned char | rv_uc (void *buf) |
|
wchar_t | rv_wc (void *buf) |
|
uint8_t | rv_u8 (void *buf) |
|
uint16_t | rv_u16 (void *buf) |
|
uint32_t | rv_u32 (void *buf) |
|
uint64_t | rv_u64 (void *buf) |
|
int8_t | rv_i8 (void *buf) |
|
int16_t | rv_i16 (void *buf) |
|
int32_t | rv_i32 (void *buf) |
|
int64_t | rv_i64 (void *buf) |
|
float | rv_f (void *buf) |
|
double | rv_d (void *buf) |
|
long double | rv_dd (void *buf) |
|
ADDR | rv_addr (void *buf) |
|