Lines Matching defs:hndl

103 static tnfctl_errcode_t decode(tnfctl_handle_t *hndl, uintptr_t addr,
105 static boolean_t find(tnfctl_handle_t *hndl, comb_op_t op, uintptr_t down,
107 static tnfctl_errcode_t build(tnfctl_handle_t *hndl, comb_op_t op,
109 static tnfctl_errcode_t add(tnfctl_handle_t *hndl, comb_op_t op, uintptr_t down,
113 static tnfctl_errcode_t iscomb(tnfctl_handle_t *hndl, uintptr_t addr,
115 static tnfctl_errcode_t findname(tnfctl_handle_t *hndl, uintptr_t addr,
128 _tnfctl_comb_build(tnfctl_handle_t *hndl, comb_op_t op,
138 if (find(hndl, op, down, next, comb_p)) {
146 prexstat = build(hndl, op, down, next, comb_p);
162 _tnfctl_comb_decode(tnfctl_handle_t *hndl, uintptr_t addr, char ***func_names,
170 prexstat = decode(hndl, addr, func_names, func_addrs);
188 decode(tnfctl_handle_t *hndl, uintptr_t addr, char ***func_names,
202 find_pp = (decode_key_t **) tfind(&key, &hndl->decoderoot,
217 prexstat = iscomb(hndl, addr, &down, &next, &is_combination);
232 prexstat = findname(hndl, down, &thisname);
243 prexstat = decode(hndl, next, &nextnames, &nextaddrs);
273 prexstat = findname(hndl, addr, &thisname);
303 &hndl->decoderoot, decode_compare);
326 iscomb(tnfctl_handle_t *hndl,
351 miscstat = hndl->p_read(hndl->proc_p, addr, targ_p, size);
439 findname(tnfctl_handle_t *hndl, uintptr_t addr, char **ret_name)
445 prexstat = _tnfctl_sym_findname(hndl, addr, &symname);
480 find(tnfctl_handle_t *hndl, comb_op_t op, uintptr_t down, uintptr_t next,
491 find_pp = (comb_key_t **) tfind(&key, &hndl->buildroot, comb_compare);
504 add(tnfctl_handle_t *hndl, comb_op_t op, uintptr_t down, uintptr_t next,
520 ret_pp = (comb_key_t **) tsearch(new_p, &hndl->buildroot,
567 build(tnfctl_handle_t *hndl, comb_op_t op, uintptr_t down, uintptr_t next,
591 prexstat = _tnfctl_targmem_alloc(hndl, size, &addr);
644 miscstat = hndl->p_write(hndl->proc_p, addr, buffer_p, size);
652 prexstat = add(hndl, op, down, next, addr);