Home
last modified time | relevance | path

Searched refs:pkt_obj (Results 1 – 9 of 9) sorted by relevance

/titanic_50/usr/src/cmd/picl/plugins/sun4u/lib/fruaccess/
H A Dfru_access.c174 packet_obj_t *pkt_obj; in create_packet_hash_object() local
176 pkt_obj = malloc(sizeof (packet_obj_t)); in create_packet_hash_object()
177 if (pkt_obj == NULL) { in create_packet_hash_object()
183 free(pkt_obj); in create_packet_hash_object()
187 pkt_obj->next = NULL; in create_packet_hash_object()
190 hash_obj->u.pkt_obj = pkt_obj; in create_packet_hash_object()
270 child_obj->u.pkt_obj->segment_hdl = parent_obj->obj_hdl; in add_to_pkt_object_list()
278 next_hash->u.pkt_obj->next != NULL; in add_to_pkt_object_list()
279 next_hash = next_hash->u.pkt_obj->next) { in add_to_pkt_object_list()
283 next_hash->u.pkt_obj->next = child_obj; in add_to_pkt_object_list()
[all …]
H A Dfru_access_impl.h197 packet_obj_t *pkt_obj; member
/titanic_50/usr/src/lib/libfru/libfruraw/
H A Draw_access.c180 packet_obj_t *pkt_obj; in create_packet_hash_object() local
182 pkt_obj = malloc(sizeof (packet_obj_t)); in create_packet_hash_object()
183 if (pkt_obj == NULL) { in create_packet_hash_object()
189 free(pkt_obj); in create_packet_hash_object()
193 pkt_obj->next = NULL; in create_packet_hash_object()
196 hash_obj->u.pkt_obj = pkt_obj; in create_packet_hash_object()
243 child_obj->u.pkt_obj->segment_hdl = parent_obj->obj_hdl; in add_to_pkt_object_list()
251 next_hash->u.pkt_obj->next != NULL; in add_to_pkt_object_list()
252 next_hash = next_hash->u.pkt_obj->next) { in add_to_pkt_object_list()
256 next_hash->u.pkt_obj->next = child_obj; in add_to_pkt_object_list()
[all …]
H A Dfru_access_impl.h191 packet_obj_t *pkt_obj; member
/titanic_50/usr/src/cmd/picl/plugins/sun4u/blade/fruaccess/
H A Dfru_access.c175 packet_obj_t *pkt_obj; in create_packet_hash_object() local
177 pkt_obj = malloc(sizeof (packet_obj_t)); in create_packet_hash_object()
178 if (pkt_obj == NULL) { in create_packet_hash_object()
184 free(pkt_obj); in create_packet_hash_object()
188 pkt_obj->next = NULL; in create_packet_hash_object()
191 hash_obj->u.pkt_obj = pkt_obj; in create_packet_hash_object()
271 child_obj->u.pkt_obj->segment_hdl = parent_obj->obj_hdl; in add_to_pkt_object_list()
279 next_hash->u.pkt_obj->next != NULL; in add_to_pkt_object_list()
280 next_hash = next_hash->u.pkt_obj->next) { in add_to_pkt_object_list()
284 next_hash->u.pkt_obj->next = child_obj; in add_to_pkt_object_list()
[all …]
H A Dfru_access_impl.h193 packet_obj_t *pkt_obj; member
/titanic_50/usr/src/cmd/picl/plugins/sun4u/snowbird/lib/fruaccess/
H A Dlibfruaccess.c312 packet_obj_t *pkt_obj; in create_packet_hash_object() local
314 pkt_obj = malloc(sizeof (packet_obj_t)); in create_packet_hash_object()
315 if (pkt_obj == NULL) { in create_packet_hash_object()
321 free(pkt_obj); in create_packet_hash_object()
325 pkt_obj->next = NULL; in create_packet_hash_object()
328 hash_obj->u.pkt_obj = pkt_obj; in create_packet_hash_object()
406 child_obj->u.pkt_obj->segment_hdl = parent_obj->obj_hdl; in add_to_pkt_object_list()
414 next_hash->u.pkt_obj->next != NULL; in add_to_pkt_object_list()
415 next_hash = next_hash->u.pkt_obj->next) { in add_to_pkt_object_list()
419 next_hash->u.pkt_obj->next = child_obj; in add_to_pkt_object_list()
[all …]
H A Dfru_access_impl.h249 packet_obj_t *pkt_obj; member
/titanic_50/usr/src/cmd/picl/plugins/sun4u/frudata/
H A Dfru_data.c2367 free_packet_hash_object(hash_obj_t *pkt_obj) in free_packet_hash_object() argument
2371 while (pkt_obj != NULL) { in free_packet_hash_object()
2372 tmp_obj = pkt_obj->u.pkt_node->next; in free_packet_hash_object()
2373 free(pkt_obj->u.pkt_node); in free_packet_hash_object()
2374 free(pkt_obj); in free_packet_hash_object()
2375 pkt_obj = tmp_obj; in free_packet_hash_object()