/external/ltrace/sysdeps/linux-gnu/s390/ |
D | fetch.c | 127 struct arg_type_info *info, struct value *valuep, in allocate_stack_slot() argument 145 value_in_inferior(valuep, ctx->stack_pointer + off); in allocate_stack_slot() 152 copy_gpr(struct fetch_context *ctx, struct value *valuep, int regno) in copy_gpr() argument 154 value_set_word(valuep, ctx->regs.gprs[regno]); in copy_gpr() 159 struct arg_type_info *info, struct value *valuep, in allocate_gpr() argument 163 return allocate_stack_slot(ctx, proc, info, valuep, sz); in allocate_gpr() 165 copy_gpr(ctx, valuep, ctx->greg++); in allocate_gpr() 171 struct arg_type_info *info, struct value *valuep, in allocate_gpr_pair() argument 179 return allocate_stack_slot(ctx, proc, info, valuep, sz); in allocate_gpr_pair() 182 if (value_reserve(valuep, sz) == NULL) in allocate_gpr_pair() [all …]
|
/external/ltrace/sysdeps/linux-gnu/x86/ |
D | fetch.c | 106 struct value *valuep, unsigned long val, size_t offset) in copy_int_register() argument 108 if (valuep != NULL) { in copy_int_register() 109 unsigned char *buf = value_get_raw_data(valuep); in copy_int_register() 116 copy_sse_register(struct fetch_context *context, struct value *valuep, in copy_sse_register() argument 127 if (valuep != NULL) { in copy_sse_register() 128 unsigned char *buf = value_get_raw_data(valuep); in copy_sse_register() 138 struct value *valuep, size_t sz, size_t offset, in allocate_stack_slot() argument 141 assert(valuep != NULL); in allocate_stack_slot() 142 size_t a = type_alignof(valuep->inferior, valuep->type); in allocate_stack_slot() 148 value_in_inferior(valuep, context->stack_pointer); in allocate_stack_slot() [all …]
|
/external/ltrace/sysdeps/linux-gnu/ppc/ |
D | fetch.c | 35 struct arg_type_info *info, struct value *valuep); 147 struct arg_type_info *info, struct value *valuep) in allocate_stack_slot() argument 165 if (valuep != NULL) in allocate_stack_slot() 166 value_in_inferior(valuep, ctx->stack_pointer + off); in allocate_stack_slot() 219 struct arg_type_info *info, struct value *valuep) in allocate_gpr() argument 222 return allocate_stack_slot(ctx, proc, info, valuep); in allocate_gpr() 225 if (valuep == NULL) in allocate_gpr() 232 if (value_reserve(valuep, sz) == NULL) in allocate_gpr() 243 memcpy(value_get_raw_data(valuep), u.buf, sz); in allocate_gpr() 249 struct arg_type_info *info, struct value *valuep) in allocate_float() argument [all …]
|
/external/ltrace/sysdeps/linux-gnu/ia64/ |
D | fetch.c | 106 struct arg_type_info *info, struct value *valuep) in allocate_stack_slot() argument 118 value_set_word(valuep, value); in allocate_stack_slot() 125 struct arg_type_info *info, struct value *valuep) in allocate_reg() argument 128 return allocate_stack_slot(ctx, proc, info, valuep); in allocate_reg() 133 if (valuep == NULL) in allocate_reg() 150 value_set_word(valuep, ret); in allocate_reg() 180 struct arg_type_info *info, struct value *valuep) in allocate_arg() argument 187 unsigned char *buf = value_reserve(valuep, sz); in allocate_arg() 217 struct arg_type_info *info, struct value *valuep, in allocate_float() argument 230 return allocate_reg(ctx, proc, info, valuep); in allocate_float() [all …]
|
/external/ltrace/sysdeps/linux-gnu/m68k/ |
D | fetch.c | 107 struct value *valuep) in arch_fetch_arg_next() argument 127 value_set_word(valuep, context->regs[reg]); in arch_fetch_arg_next() 129 size_t a = type_alignof(valuep->inferior, valuep->type); in arch_fetch_arg_next() 137 value_in_inferior(valuep, context->stack_pointer); in arch_fetch_arg_next() 147 struct value *valuep) in arch_fetch_retval() argument 155 *valuep = context->retval; in arch_fetch_retval() 162 if (value_reserve(valuep, sz) == NULL) in arch_fetch_retval() 178 unsigned char *buf = value_get_raw_data(valuep); in arch_fetch_retval() 199 if (valuep->type->type == ARGTYPE_FLOAT) in arch_fetch_retval() 201 else if (valuep->type->type == ARGTYPE_DOUBLE) in arch_fetch_retval() [all …]
|
/external/ltrace/ |
D | fetch.c | 38 struct value *valuep); 42 struct value *valuep); 82 struct arg_type_info *info, struct value *valuep) in arch_fetch_arg_next() argument 85 value_set_word(valuep, l); in arch_fetch_arg_next() 92 struct arg_type_info *info, struct value *valuep) in arch_fetch_retval() argument 95 value_set_word(valuep, l); in arch_fetch_retval() 136 struct arg_type_info *info, struct value *valuep) in fetch_arg_next() argument 138 return arch_fetch_arg_next(context, type, proc, info, valuep); in fetch_arg_next() 144 struct arg_type_info *info, struct value *valuep) in fetch_retval() argument 146 return arch_fetch_retval(context, type, proc, info, valuep); in fetch_retval()
|
D | fetch.h | 53 struct arg_type_info *info, struct value *valuep); 59 struct arg_type_info *info, struct value *valuep); 83 struct value *valuep); 86 struct value *valuep);
|
D | expr.h | 142 int expr_eval_constant(struct expr_node *node, long *valuep);
|
D | expr.c | 399 expr_eval_constant(struct expr_node *node, long *valuep) in expr_eval_constant() argument 402 return expr_eval_word(node, NULL, NULL, valuep); in expr_eval_constant()
|
D | ltrace-elf.h | 144 int elf_load_dynamic_entry(struct ltelf *lte, int tag, GElf_Addr *valuep);
|
D | output.c | 299 struct value *valuep) in fetch_simple_param() argument 324 if (valuep != NULL) in fetch_simple_param() 325 *valuep = value; in fetch_simple_param()
|
D | ltrace-elf.c | 538 elf_load_dynamic_entry(struct ltelf *lte, int tag, GElf_Addr *valuep) in elf_load_dynamic_entry() argument 561 *valuep = dyn.d_un.d_ptr; in elf_load_dynamic_entry()
|
/external/ltrace/sysdeps/linux-gnu/arm/ |
D | fetch.c | 142 enum arg_type type, size_t count, struct value *valuep) in pass_in_vfp() argument 159 unsigned char *data = value_reserve(valuep, sz); in pass_in_vfp() 185 struct arg_type_info *info, struct value *valuep) in consider_vfp() argument 196 hfa_size, valuep); in consider_vfp() 203 struct arg_type_info *info, struct value *valuep) in arch_fetch_arg_next() argument 210 if ((rc = consider_vfp(ctx, proc, info, valuep)) != 1) in arch_fetch_arg_next() 231 unsigned char *data = value_reserve(valuep, words * 4); in arch_fetch_arg_next() 258 value_in_inferior(valuep, ctx->nsaa); in arch_fetch_arg_next() 267 struct value *valuep) in arch_fetch_retval() argument 274 if ((rc = consider_vfp(ctx, proc, info, valuep)) != 1) in arch_fetch_retval() [all …]
|
/external/libcxxabi/src/Unwind/ |
D | Unwind-EHABI.cpp | 765 void* valuep) { in ValueAsBitPattern() argument 770 memcpy(&value, valuep, sizeof(uint32_t)); in ValueAsBitPattern() 776 memcpy(&value, valuep, sizeof(uint64_t)); in ValueAsBitPattern() 785 void *valuep) { in _Unwind_VRS_Set() argument 790 ValueAsBitPattern(representation, valuep)); in _Unwind_VRS_Set() 797 *(unw_word_t *)valuep) == UNW_ESUCCESS in _Unwind_VRS_Set() 804 *(unw_word_t *)valuep) == UNW_ESUCCESS in _Unwind_VRS_Set() 820 *(unw_fpreg_t *)valuep) == UNW_ESUCCESS in _Unwind_VRS_Set() 827 *(unw_fpreg_t *)valuep) == UNW_ESUCCESS in _Unwind_VRS_Set() 838 void *valuep) { in _Unwind_VRS_Get_Internal() argument [all …]
|
/external/libcxxabi/include/ |
D | unwind.h | 194 void *valuep); 199 void *valuep);
|
/external/libxml2/ |
D | xmlregexp.c | 190 void *valuep; member 509 value = ret->atoms[i]->valuep; in xmlRegEpxFromParse() 820 if ((atom->type == XML_REGEXP_STRING) && (atom->valuep != NULL)) in xmlRegFreeAtom() 821 xmlFree(atom->valuep); in xmlRegFreeAtom() 824 if ((atom->type == XML_REGEXP_BLOCK_NAME) && (atom->valuep != NULL)) in xmlRegFreeAtom() 825 xmlFree(atom->valuep); in xmlRegFreeAtom() 1099 fprintf(output, "'%s' ", (char *) atom->valuep); in xmlRegPrintAtom() 2467 ret = (atom1->valuep == atom2->valuep); in xmlFAEqualAtoms() 2469 ret = xmlStrEqual((xmlChar *)atom1->valuep, in xmlFAEqualAtoms() 2470 (xmlChar *)atom2->valuep); in xmlFAEqualAtoms() [all …]
|
/external/elfutils/src/libdw/ |
D | dwarf_getlocation.c | 206 bool cfap, bool valuep, in __libdw_intern_expression() argument 225 if (valuep) in __libdw_intern_expression() 482 if (valuep) in __libdw_intern_expression()
|
D | libdwP.h | 574 bool cfap, bool valuep,
|
/external/bison/lib/ |
D | stdlib.in.h | 240 (char **optionp, char *const *tokens, char **valuep) 244 (char **optionp, char *const *tokens, char **valuep));
|
/external/bison/darwin-lib/ |
D | stdlib.h | 562 (char **optionp, char *const *tokens, char **valuep) 566 (char **optionp, char *const *tokens, char **valuep));
|
/external/bison/linux-lib/ |
D | stdlib.h | 562 (char **optionp, char *const *tokens, char **valuep) 566 (char **optionp, char *const *tokens, char **valuep));
|
/external/selinux/libsepol/src/ |
D | link.c | 1959 unsigned int valuep; member 1969 if (arg->valuep == perdatum->s.value) { in find_perm() 2050 fparg.valuep = perm_value; in is_decl_requires_met() 2101 fparg.valuep = req.perm_value; in debug_requirements() 2162 fparg.valuep = req->perm_value; in print_missing_requirements()
|