Home
last modified time | relevance | path

Searched refs:p_object (Results 1 – 13 of 13) sorted by relevance

/NextBSD/contrib/ofed/management/opensm/include/complib/
HDcl_list.h164 (*cl_pfn_list_apply_t) (IN void *const p_object, IN void *context);
196 (*cl_pfn_list_find_t) (IN const void *const p_object, IN void *context);
394 cl_list_insert_head(IN cl_list_t * const p_list, IN const void *const p_object) in cl_list_insert_head() argument
406 p_pool_obj->p_object = p_object; in cl_list_insert_head()
445 cl_list_insert_tail(IN cl_list_t * const p_list, IN const void *const p_object) in cl_list_insert_tail() argument
457 p_pool_obj->p_object = p_object; in cl_list_insert_tail()
589 IN const void *const p_object) in cl_list_insert_next() argument
601 p_pool_obj->p_object = p_object; in cl_list_insert_next()
642 IN const void *const p_object) in cl_list_insert_prev() argument
654 p_pool_obj->p_object = p_object; in cl_list_insert_prev()
[all …]
HDcl_pool.h105 (*cl_pfn_pool_init_t) (IN void *const p_object, IN void *context);
149 (*cl_pfn_pool_dtor_t) (IN void *const p_object, IN void *context);
444 CL_ASSERT(p_pool_obj->p_object); in cl_pool_get()
445 return ((void *)p_pool_obj->p_object); in cl_pool_get()
478 cl_pool_put(IN cl_pool_t * const p_pool, IN void *const p_object) in cl_pool_put() argument
483 CL_ASSERT(p_object); in cl_pool_put()
487 (((uint8_t *) p_object) - sizeof(cl_pool_obj_t)); in cl_pool_put()
490 CL_ASSERT(p_pool_obj->p_object == p_object); in cl_pool_put()
HDcl_comppool.h162 (*cl_pfn_cpool_dtor_t) (IN void *const p_object, IN void *context);
467 CL_ASSERT(p_pool_obj->p_object); in cl_cpool_get()
468 return ((void *)p_pool_obj->p_object); in cl_cpool_get()
502 cl_cpool_put(IN cl_cpool_t * const p_pool, IN void *const p_object) in cl_cpool_put() argument
507 CL_ASSERT(p_object); in cl_cpool_put()
511 (((uint8_t *) p_object) - sizeof(cl_pool_obj_t)); in cl_cpool_put()
514 CL_ASSERT(p_pool_obj->p_object == p_object); in cl_cpool_put()
HDcl_qmap.h210 const void *p_object; member
377 IN const void *const p_object) in cl_qmap_set_obj() argument
380 p_map_obj->p_object = p_object; in cl_qmap_set_obj()
411 return ((void *)p_map_obj->p_object); in cl_qmap_obj()
HDcl_qlist.h150 const void *p_object; /* User's context */ member
362 IN const void *const p_object) in cl_qlist_set_obj() argument
366 p_list_obj->p_object = p_object; in cl_qlist_set_obj()
398 return ((void *)p_list_obj->p_object); in cl_qlist_obj()
HDcl_qpool.h111 (*cl_pfn_qpool_init_t) (IN void *const p_object,
HDcl_map.h542 IN const uint64_t key, IN const void *const p_object);
HDcl_qcomppool.h151 const void *p_object; member
/NextBSD/contrib/ofed/management/opensm/complib/
HDcl_list.c404 IN const void *const p_object) in cl_list_remove_object() argument
413 cl_qlist_find_from_head(&p_list->list, cl_list_find_cb, p_object); in cl_list_remove_object()
426 IN const void *const p_object) in cl_is_object_in_list() argument
432 (&p_list->list, cl_list_find_cb, p_object) in cl_is_object_in_list()
442 void *p_object; in cl_list_insert_array_head() local
455 p_object = ((uint8_t *) p_array + (item_size * (item_count - 1))); in cl_list_insert_array_head()
459 status = cl_list_insert_head(p_list, p_object); in cl_list_insert_array_head()
468 p_object = ((uint8_t *) p_object - item_size); in cl_list_insert_array_head()
480 void *p_object; in cl_list_insert_array_tail() local
489 p_object = (void *)p_array; in cl_list_insert_array_tail()
[all …]
HDcl_pool.c489 p_pool_obj->p_object = p_comp_array[0]; in __cl_cpool_init_cb()
512 CL_ASSERT(((cl_pool_obj_t *) p_pool_item)->p_object); in __cl_cpool_dtor_cb()
515 p_pool->pfn_dtor((void *)((cl_pool_obj_t *) p_pool_item)->p_object, in __cl_cpool_dtor_cb()
602 p_pool_obj->p_object = *pp_obj; in __cl_pool_init_cb()
622 CL_ASSERT(((cl_pool_obj_t *) p_pool_item)->p_object); in __cl_pool_dtor_cb()
625 p_pool->pfn_dtor((void *)((cl_pool_obj_t *) p_pool_item)->p_object, in __cl_pool_dtor_cb()
HDcl_map.c739 IN const uint64_t key, IN const void *const p_object) in cl_map_insert() argument
750 cl_qmap_set_obj(p_map_obj, p_object); in cl_map_insert()
/NextBSD/contrib/ofed/management/opensm/opensm/
HDosm_state_mgr.c124 static void __osm_state_mgr_get_sw_info(IN cl_map_item_t * const p_object, in __osm_state_mgr_get_sw_info() argument
130 osm_switch_t *const p_sw = (osm_switch_t *) p_object; in __osm_state_mgr_get_sw_info()
520 static void __osm_state_mgr_get_node_desc(IN cl_map_item_t * const p_object, in __osm_state_mgr_get_node_desc() argument
524 osm_node_t *const p_node = (osm_node_t *) p_object; in __osm_state_mgr_get_node_desc()
/NextBSD/contrib/ofed/management/opensm/osmtest/
HDosmt_multicast.c134 __match_mgids(IN const void *const p_object, IN void *context) in __match_mgids() argument
137 ib_gid_t *p_mgid_list_item = (ib_gid_t *) p_object; in __match_mgids()