Home
last modified time | relevance | path

Searched refs:obj_p (Results 1 – 2 of 2) sorted by relevance

/titanic_50/usr/src/lib/libtnfctl/
H A Dkernel_int.c371 objlist_t *obj_p; in _tnfctl_refresh_kernel() local
394 obj_p = hndl->objlist; in _tnfctl_refresh_kernel()
396 assert((obj_p != NULL) && (obj_p->probes != NULL)); in _tnfctl_refresh_kernel()
400 if (i >= (obj_p->min_probe_num + obj_p->probecnt)) { in _tnfctl_refresh_kernel()
401 obj_p = obj_p->next; in _tnfctl_refresh_kernel()
405 assert(obj_p != NULL); in _tnfctl_refresh_kernel()
406 assert((i >= obj_p->min_probe_num) && in _tnfctl_refresh_kernel()
407 (i < (obj_p->min_probe_num + obj_p->probecnt))); in _tnfctl_refresh_kernel()
410 pos = i - obj_p->min_probe_num; in _tnfctl_refresh_kernel()
411 p = &(obj_p->probes[pos]); in _tnfctl_refresh_kernel()
[all …]
H A Dprobes_ext.c134 objlist_t *obj_p; in tnfctl_probe_apply_ids() local
145 obj_p = hndl->objlist; in tnfctl_probe_apply_ids()
146 while (obj_p) { in tnfctl_probe_apply_ids()
147 if ((*id_p >= obj_p->min_probe_num) && in tnfctl_probe_apply_ids()
148 (*id_p < (obj_p->min_probe_num + in tnfctl_probe_apply_ids()
149 obj_p->probecnt))) { in tnfctl_probe_apply_ids()
152 obj_p = obj_p->next; in tnfctl_probe_apply_ids()
154 if (obj_p == NULL) { in tnfctl_probe_apply_ids()
158 pos = *id_p - obj_p->min_probe_num; in tnfctl_probe_apply_ids()
159 probe = &(obj_p->probes[pos]); in tnfctl_probe_apply_ids()