Lines Matching refs: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, in _tnfctl_comb_build() argument
138 if (find(hndl, op, down, next, comb_p)) { in _tnfctl_comb_build()
146 prexstat = build(hndl, op, down, next, comb_p); in _tnfctl_comb_build()
162 _tnfctl_comb_decode(tnfctl_handle_t *hndl, uintptr_t addr, char ***func_names, in _tnfctl_comb_decode() argument
170 prexstat = decode(hndl, addr, func_names, func_addrs); in _tnfctl_comb_decode()
188 decode(tnfctl_handle_t *hndl, uintptr_t addr, char ***func_names, in decode() argument
202 find_pp = (decode_key_t **) tfind(&key, &hndl->decoderoot, in decode()
217 prexstat = iscomb(hndl, addr, &down, &next, &is_combination); in decode()
232 prexstat = findname(hndl, down, &thisname); in decode()
243 prexstat = decode(hndl, next, &nextnames, &nextaddrs); in decode()
273 prexstat = findname(hndl, addr, &thisname); in decode()
303 &hndl->decoderoot, decode_compare); in decode()
326 iscomb(tnfctl_handle_t *hndl, in iscomb() argument
351 miscstat = hndl->p_read(hndl->proc_p, addr, targ_p, size); in iscomb()
439 findname(tnfctl_handle_t *hndl, uintptr_t addr, char **ret_name) in findname() argument
445 prexstat = _tnfctl_sym_findname(hndl, addr, &symname); in findname()
480 find(tnfctl_handle_t *hndl, comb_op_t op, uintptr_t down, uintptr_t next, in find() argument
491 find_pp = (comb_key_t **) tfind(&key, &hndl->buildroot, comb_compare); in find()
504 add(tnfctl_handle_t *hndl, comb_op_t op, uintptr_t down, uintptr_t next, in add() argument
520 ret_pp = (comb_key_t **) tsearch(new_p, &hndl->buildroot, in add()
567 build(tnfctl_handle_t *hndl, comb_op_t op, uintptr_t down, uintptr_t next, in build() argument
591 prexstat = _tnfctl_targmem_alloc(hndl, size, &addr); in build()
644 miscstat = hndl->p_write(hndl->proc_p, addr, buffer_p, size); in build()
652 prexstat = add(hndl, op, down, next, addr); in build()