Searched defs:retp (Results 1 - 21 of 21) sorted by relevance

/external/ltrace/sysdeps/linux-gnu/arm/
H A Dbreakpoint.c111 arch_breakpoint_clone(struct breakpoint *retp, struct breakpoint *sbp) argument
113 retp->arch.thumb_mode = sbp->arch.thumb_mode;
H A Dplt.c249 arch_library_clone(struct library *retp, struct library *lib) argument
251 retp->arch = lib->arch;
/external/ltrace/
H A Dglob.c101 glob_to_regex(const char *glob, char **retp) argument
175 *retp = buf;
H A Dbreakpoints.c139 os_breakpoint_clone(struct breakpoint *retp, struct breakpoint *sbp) argument
158 arch_breakpoint_clone(struct breakpoint *retp, struct breakpoint *sbp) argument
211 breakpoint_clone(struct breakpoint *retp, struct process *new_proc, argument
220 breakpoint_init_base(retp, bp->addr, libsym);
221 memcpy(retp->orig_value, bp->orig_value, sizeof(bp->orig_value));
222 retp->enabled = bp->enabled;
223 if (os_breakpoint_clone(retp, bp) < 0)
225 if (arch_breakpoint_clone(retp, bp) < 0) {
226 os_breakpoint_destroy(retp);
229 breakpoint_set_callbacks(retp, b
[all...]
H A Dexpr.c189 expr_clone(struct expr_node *retp, const struct expr_node *node) argument
191 *retp = *node;
202 return value_clone(&retp->u.value, &node->u.value);
206 && (retp->u.name.s = strdup(node->u.name.s)) == NULL)
223 retp->lhs = nlhs;
224 retp->u.node.n = nrhs;
231 retp->u.call.rhs = nrhs;
245 retp->lhs = nlhs;
H A Dlibrary.c47 os_library_clone(struct library *retp, struct library *lib) argument
66 arch_library_clone(struct library *retp, struct library *lib) argument
85 os_library_symbol_clone(struct library_symbol *retp, argument
105 arch_library_symbol_clone(struct library_symbol *retp, argument
135 strdup_if(const char **retp, const char *str, int whether) argument
143 *retp = str;
205 library_symbol_clone(struct library_symbol *retp, struct library_symbol *libsym) argument
213 private_library_symbol_init(retp, libsym->enter_addr,
217 if (os_library_symbol_clone(retp, libsym) < 0) {
219 private_library_symbol_destroy(retp);
316 library_exported_name_clone(struct library_exported_name *retp, struct library_exported_name *exnm) argument
328 library_clone(struct library *retp, struct library *lib) argument
[all...]
H A Dvalue.c189 value_clone(struct value *retp, const struct value *val) argument
191 *retp = *val;
194 retp->type = malloc(sizeof(struct arg_type_info));
195 if (type_clone (retp->type, val->type) < 0) {
196 free(retp->type);
206 if (retp->own_type) {
207 type_destroy(retp->type);
208 free(retp->type);
213 retp->u.address = malloc(size);
214 if (retp
386 value_extract_word(struct value *value, long *retp, struct value_dict *arguments) argument
[all...]
H A Doptions.c410 parse_filter_chain(const char *expr, struct filter **retp) argument
422 *slist_chase_end(retp) = recursive_parse_chain(expr, str, 1);
H A Dproc.c53 os_process_clone(struct process *retp, struct process *proc) argument
78 arch_process_clone(struct process *retp, struct process *proc) argument
358 process_clone(struct process *retp, struct process *proc, pid_t pid) argument
360 if (process_bare_init(retp, proc->filename, pid, 0) < 0) {
367 retp->tracesysgood = proc->tracesysgood;
368 retp->e_machine = proc->e_machine;
369 retp->e_class = proc->e_class;
372 if (retp->leader != retp)
378 struct library **nlibp = &retp
[all...]
H A Dprototype.c365 const char *key, struct protolib **retp)
378 *retp = data.result;
384 const char *key, int private, struct protolib **retp)
394 *retp = plib;
548 struct protolib **retp)
550 if (DICT_FIND_VAL(&cache->protolibs, &key, retp) == 0)
559 *retp = NULL;
560 if (load_dash_F_dirs(cache, key, retp) < 0
561 || (*retp == NULL && allow_private
562 && load_config(cache, key, 1, retp) <
364 load_dash_F_dirs(struct protolib_cache *cache, const char *key, struct protolib **retp) argument
383 load_config(struct protolib_cache *cache, const char *key, int private, struct protolib **retp) argument
546 protolib_cache_maybe_load(struct protolib_cache *cache, const char *key, int own_key, bool allow_private, struct protolib **retp) argument
[all...]
H A Dread_config_file.c85 char **str, struct arg_type_info **retp, int *ownp);
557 char **str, struct arg_type_info **retp, int *ownp)
656 *retp = info;
713 char **str, struct arg_type_info **retp, int *ownp,
723 return parse_string(plib, loc, str, retp, ownp);
731 if (parse_string(plib, loc, str, retp, ownp) < 0)
738 return parse_enum(plib, loc, str, retp, ownp);
741 *retp = NULL;
789 struct arg_type_info **retp, int *ownp)
796 *retp
556 parse_string(struct protolib *plib, struct locus *loc, char **str, struct arg_type_info **retp, int *ownp) argument
712 parse_alias(struct protolib *plib, struct locus *loc, char **str, struct arg_type_info **retp, int *ownp, struct param **extra_param, size_t param_num) argument
788 parse_enum(struct protolib *plib, struct locus *loc, char **str, struct arg_type_info **retp, int *ownp) argument
[all...]
H A Dtype.c283 struct arg_type_info *retp = data; local
292 if (type_struct_add(retp, info, field->own_info) < 0) {
302 type_clone(struct arg_type_info *retp, const struct arg_type_info *info) argument
306 type_init_struct(retp);
308 clone_struct_add_field, retp) != NULL) {
309 type_destroy(retp);
321 type_init_array(retp, elt_type, info->u.array_info.own_info,
331 type_init_pointer(retp, ninfo, info->u.ptr_info.own_info);
344 *retp = *info;
349 retp
[all...]
H A Dltrace-elf.c283 NAME(Elf_Data *data, GElf_Xword offset, uint##SIZE##_t *retp) \
289 *retp = 0; \
298 *retp = u.dst; \
311 NAME(Elf_Data *data, GElf_Xword *offset, uint##SIZE##_t *retp) \
313 int rc = elf_read_u##SIZE(data, *offset, retp); \
328 elf_read_next_uleb128(Elf_Data *data, GElf_Xword *offset, uint64_t *retp) argument
348 if (retp != NULL)
349 *retp = result;
354 elf_read_uleb128(Elf_Data *data, GElf_Xword offset, uint64_t *retp) argument
356 return elf_read_next_uleb128(data, &offset, retp);
[all...]
/external/ltrace/sysdeps/linux-gnu/
H A Dhooks.c76 os_get_config_dirs(int private, const char ***retp) argument
90 if (retp != NULL) {
92 *retp = VECT_ELEMENT(&dirs, const char *, 0);
94 *retp = VECT_ELEMENT(&dirs, const char *,
178 os_get_ltrace_conf_filenames(struct vect *retp) argument
208 if (VECT_PUSHBACK(retp, &homepath) < 0
209 || VECT_PUSHBACK(retp, &syspath) < 0)
H A Dproc.c736 os_process_clone(struct process *retp, struct process *proc) argument
738 retp->os = proc->os;
H A Dtrace.c1319 os_library_symbol_clone(struct library_symbol *retp, argument
1322 retp->os = libsym->os;
1515 os_breakpoint_clone(struct breakpoint *retp, struct breakpoint *bp) argument
/external/chromium_org/third_party/boringssl/src/crypto/x509/
H A Dby_dir.c117 char **retp)
116 dir_ctrl(X509_LOOKUP *ctx, int cmd, const char *argp, long argl, char **retp) argument
/external/ltrace/sysdeps/linux-gnu/mips/
H A Dplt.c418 arch_library_symbol_clone(struct library_symbol *retp, argument
421 retp->arch = libsym->arch;
/external/openssl/crypto/x509/
H A Dby_dir.c125 char **retp)
124 dir_ctrl(X509_LOOKUP *ctx, int cmd, const char *argp, long argl, char **retp) argument
/external/ppp/pppd/
H A Dccp.c1075 u_char *p0, *retp; local
1085 retp = p0 = p;
1326 retp = p0;
1328 if (p != retp)
1329 BCOPY(p, retp, clen);
1330 retp += clen;
1338 if (ret == CONFREJ && *lenp == retp - p0)
1341 *lenp = retp - p0;
/external/ltrace/sysdeps/linux-gnu/ppc/
H A Dplt.c1115 arch_library_clone(struct library *retp, struct library *lib) argument
1141 arch_library_symbol_clone(struct library_symbol *retp, argument
1144 retp->arch = libsym->arch;
1193 arch_breakpoint_clone(struct breakpoint *retp, struct breakpoint *sbp) argument
1195 retp->arch = sbp->arch;
1213 arch_process_clone(struct process *retp, struct process *proc) argument
1215 retp->arch = proc->arch;
1217 if (retp->arch.dl_plt_update_bp != NULL) {
1221 retp->arch.dl_plt_update_bp
1222 = address2bpstruct(retp,
[all...]

Completed in 309 milliseconds