Home
last modified time | relevance | path

Searched refs:probe_handle (Results 1 – 4 of 4) sorted by relevance

/titanic_44/usr/src/lib/libtnfctl/
H A Dkernel_int.c412 assert((p != NULL) && (p->probe_id == i) && (p->probe_handle)); in _tnfctl_refresh_kernel()
421 p->probe_handle->valid = B_FALSE; in _tnfctl_refresh_kernel()
426 if (p->probe_handle->valid == B_FALSE) { in _tnfctl_refresh_kernel()
437 p->probe_handle->valid = B_TRUE; in _tnfctl_refresh_kernel()
453 p->probe_handle->client_registered_data = in _tnfctl_refresh_kernel()
455 p->probe_handle); in _tnfctl_refresh_kernel()
518 probe_p->probe_handle = calloc(1, sizeof (tnfctl_probe_t)); in alloc_probe_space()
519 if (probe_p->probe_handle == NULL) { in alloc_probe_space()
525 probe_p->probe_handle->valid = B_FALSE; in alloc_probe_space()
526 probe_p->probe_handle->probe_p = probe_p; in alloc_probe_space()
[all …]
H A Dprobes.c250 tnfctl_probe_t *probe_handle; in _tnfctl_find_all_probes() local
256 probe_handle = cur_obj->probes[j].probe_handle; in _tnfctl_find_all_probes()
257 probe_handle->client_registered_data = in _tnfctl_find_all_probes()
258 hndl->create_func(hndl, probe_handle); in _tnfctl_find_all_probes()
299 if (probe_p->probe_handle) in free_obj_fields()
300 probe_p->probe_handle->valid = B_FALSE; in free_obj_fields()
560 prbctl_p->probe_handle = calloc(1, sizeof (tnfctl_probe_t)); in read_a_probe()
561 if (prbctl_p->probe_handle == NULL) in read_a_probe()
563 prbctl_p->probe_handle->valid = B_TRUE; in read_a_probe()
564 prbctl_p->probe_handle->probe_p = prbctl_p; in read_a_probe()
[all …]
H A Dprobes_ext.c97 hndl->destroy_func(probe->probe_handle->client_registered_data); in _tnfctl_destructor_wrapper()
108 p_handle = probe->probe_handle; in _tnfctl_creator_wrapper()
160 prexstat = func_p(hndl, probe->probe_handle, calldata); in tnfctl_probe_apply_ids()
455 prexstat = (*(args->func_p))(hndl, probe->probe_handle, args->calldata); in apply_func()
H A Dtnfctl_int.h93 tnfctl_probe_t *probe_handle; /* handle visible to client */ member