Lines Matching refs:prexstat
131 tnfctl_errcode_t prexstat; in _tnfctl_comb_build() local
146 prexstat = build(hndl, op, down, next, comb_p); in _tnfctl_comb_build()
152 return (prexstat); in _tnfctl_comb_build()
165 tnfctl_errcode_t prexstat; in _tnfctl_comb_decode() local
170 prexstat = decode(hndl, addr, func_names, func_addrs); in _tnfctl_comb_decode()
175 return (prexstat); in _tnfctl_comb_decode()
191 tnfctl_errcode_t prexstat = TNFCTL_ERR_NONE; in decode() local
217 prexstat = iscomb(hndl, addr, &down, &next, &is_combination); in decode()
218 if (prexstat) in decode()
232 prexstat = findname(hndl, down, &thisname); in decode()
233 if (prexstat == TNFCTL_ERR_USR1) { in decode()
238 prexstat = TNFCTL_ERR_INTERNAL; in decode()
240 } else if (prexstat) in decode()
243 prexstat = decode(hndl, next, &nextnames, &nextaddrs); in decode()
244 if (prexstat) in decode()
255 prexstat = TNFCTL_ERR_ALLOCFAIL; in decode()
261 prexstat = TNFCTL_ERR_ALLOCFAIL; in decode()
273 prexstat = findname(hndl, addr, &thisname); in decode()
274 if (prexstat != TNFCTL_ERR_USR1) { in decode()
279 if (prexstat == TNFCTL_ERR_NONE) in decode()
280 prexstat = TNFCTL_ERR_NONE; in decode()
285 prexstat = TNFCTL_ERR_ALLOCFAIL; in decode()
290 prexstat = TNFCTL_ERR_ALLOCFAIL; in decode()
317 return (prexstat); in decode()
442 tnfctl_errcode_t prexstat; in findname() local
445 prexstat = _tnfctl_sym_findname(hndl, addr, &symname); in findname()
446 if ((prexstat == TNFCTL_ERR_NONE) && (symname != NULL)) { in findname()
577 tnfctl_errcode_t prexstat; in build() local
591 prexstat = _tnfctl_targmem_alloc(hndl, size, &addr); in build()
592 if (prexstat) { in build()
602 prexstat = TNFCTL_ERR_ALLOCFAIL; in build()
648 prexstat = TNFCTL_ERR_INTERNAL; in build()
652 prexstat = add(hndl, op, down, next, addr); in build()
657 return (prexstat); in build()