Home
last modified time | relevance | path

Searched refs:parent_obj (Results 1 – 6 of 6) sorted by relevance

/illumos-gate/usr/src/lib/libfru/libfruraw/
H A Draw_access.c238 add_to_pkt_object_list(hash_obj_t *parent_obj, hash_obj_t *child_obj) in add_to_pkt_object_list() argument
243 child_obj->u.pkt_obj->segment_hdl = parent_obj->obj_hdl; in add_to_pkt_object_list()
245 if (parent_obj->u.seg_obj->pkt_obj_list == NULL) { in add_to_pkt_object_list()
246 parent_obj->u.seg_obj->pkt_obj_list = child_obj; in add_to_pkt_object_list()
250 for (next_hash = parent_obj->u.seg_obj->pkt_obj_list; in add_to_pkt_object_list()
337 add_to_sec_object_list(hash_obj_t *parent_obj, hash_obj_t *child_obj) in add_to_sec_object_list() argument
341 child_obj->u.sec_obj->cont_hdl = parent_obj->obj_hdl; in add_to_sec_object_list()
342 if (parent_obj->u.cont_obj->sec_obj_list == NULL) { in add_to_sec_object_list()
343 parent_obj->u.cont_obj->sec_obj_list = child_obj; in add_to_sec_object_list()
347 for (next_hash = parent_obj->u.cont_obj->sec_obj_list; in add_to_sec_object_list()
[all …]
/illumos-gate/usr/src/cmd/picl/plugins/sun4u/lib/fruaccess/
H A Dfru_access.c219 add_to_sec_object_list(hash_obj_t *parent_obj, hash_obj_t *child_obj) in add_to_sec_object_list() argument
223 child_obj->u.sec_obj->cont_hdl = parent_obj->obj_hdl; in add_to_sec_object_list()
224 if (parent_obj->u.cont_obj->sec_obj_list == NULL) { in add_to_sec_object_list()
225 parent_obj->u.cont_obj->sec_obj_list = child_obj; in add_to_sec_object_list()
229 for (next_hash = parent_obj->u.cont_obj->sec_obj_list; in add_to_sec_object_list()
241 add_to_seg_object_list(hash_obj_t *parent_obj, hash_obj_t *child_obj) in add_to_seg_object_list() argument
245 child_obj->u.seg_obj->section_hdl = parent_obj->obj_hdl; in add_to_seg_object_list()
246 if (parent_obj->u.sec_obj->seg_obj_list == NULL) { in add_to_seg_object_list()
247 parent_obj->u.sec_obj->seg_obj_list = child_obj; in add_to_seg_object_list()
251 for (next_hash = parent_obj->u.sec_obj->seg_obj_list; in add_to_seg_object_list()
[all …]
/illumos-gate/usr/src/cmd/picl/plugins/sun4u/frudata/
H A Dfru_data.c485 add_to_segment_list(hash_obj_t *parent_obj, hash_obj_t *child_obj) in add_to_segment_list() argument
489 child_obj->u.seg_node->sec_nodehdl = parent_obj->picl_hdl; in add_to_segment_list()
490 if (parent_obj->u.sec_node->segment_list == NULL) { in add_to_segment_list()
491 parent_obj->u.sec_node->segment_list = child_obj; in add_to_segment_list()
495 for (next_hash = parent_obj->u.sec_node->segment_list; in add_to_segment_list()
507 add_to_packet_list(hash_obj_t *parent_obj, hash_obj_t *child_obj) in add_to_packet_list() argument
511 if (parent_obj->u.seg_node->packet_list == NULL) { in add_to_packet_list()
512 parent_obj->u.seg_node->packet_list = child_obj; in add_to_packet_list()
516 for (next_hash = parent_obj->u.seg_node->packet_list; in add_to_packet_list()
/illumos-gate/usr/src/uts/common/fs/zfs/sys/
H A Dzap.h139 uint64_t parent_obj, const char *name, dmu_tx_t *tx);
141 uint64_t parent_obj, const char *name, int dnodesize, dmu_tx_t *tx);
/illumos-gate/usr/src/uts/common/fs/zfs/
H A Dzap.c978 zap_create_link(objset_t *os, dmu_object_type_t ot, uint64_t parent_obj, in zap_create_link() argument
981 return (zap_create_link_dnsize(os, ot, parent_obj, name, 0, tx)); in zap_create_link()
985 zap_create_link_dnsize(objset_t *os, dmu_object_type_t ot, uint64_t parent_obj, in zap_create_link_dnsize() argument
992 VERIFY0(zap_add(os, parent_obj, name, sizeof (uint64_t), 1, &new_obj, in zap_create_link_dnsize()
/illumos-gate/usr/src/boot/libsa/zfs/
H A Dzfsimpl.c3072 uint64_t dir_obj, parent_obj, child_dir_zapobj; in zfs_rlookup() local
3095 parent_obj = dd->dd_parent_obj; in zfs_rlookup()
3096 if (parent_obj == 0) in zfs_rlookup()
3099 if (objset_get_dnode(spa, &spa->spa_mos, parent_obj, in zfs_rlookup()
3117 dir_obj = parent_obj; in zfs_rlookup()