Lines Matching defs:parent_obj
238 add_to_pkt_object_list(hash_obj_t *parent_obj, hash_obj_t *child_obj)
243 child_obj->u.pkt_obj->segment_hdl = parent_obj->obj_hdl;
245 if (parent_obj->u.seg_obj->pkt_obj_list == NULL) {
246 parent_obj->u.seg_obj->pkt_obj_list = child_obj;
250 for (next_hash = parent_obj->u.seg_obj->pkt_obj_list;
337 add_to_sec_object_list(hash_obj_t *parent_obj, hash_obj_t *child_obj)
341 child_obj->u.sec_obj->cont_hdl = parent_obj->obj_hdl;
342 if (parent_obj->u.cont_obj->sec_obj_list == NULL) {
343 parent_obj->u.cont_obj->sec_obj_list = child_obj;
347 for (next_hash = parent_obj->u.cont_obj->sec_obj_list;
358 add_to_seg_object_list(hash_obj_t *parent_obj, hash_obj_t *child_obj)
362 child_obj->u.seg_obj->section_hdl = parent_obj->obj_hdl;
363 if (parent_obj->u.sec_obj->seg_obj_list == NULL) {
364 parent_obj->u.sec_obj->seg_obj_list = child_obj;
368 for (next_hash = parent_obj->u.sec_obj->seg_obj_list;