Lines Matching refs:opd
696 prop_dictionary_copy(prop_dictionary_t opd) in prop_dictionary_copy() argument
703 if (! prop_object_is_dictionary(opd)) in prop_dictionary_copy()
706 _PROP_RWLOCK_RDLOCK(opd->pd_rwlock); in prop_dictionary_copy()
708 pd = _prop_dictionary_alloc(opd->pd_count); in prop_dictionary_copy()
710 for (idx = 0; idx < opd->pd_count; idx++) { in prop_dictionary_copy()
711 pdk = opd->pd_array[idx].pde_key; in prop_dictionary_copy()
712 po = opd->pd_array[idx].pde_objref; in prop_dictionary_copy()
720 pd->pd_count = opd->pd_count; in prop_dictionary_copy()
721 pd->pd_flags = opd->pd_flags; in prop_dictionary_copy()
723 _PROP_RWLOCK_UNLOCK(opd->pd_rwlock); in prop_dictionary_copy()
733 prop_dictionary_copy_mutable(prop_dictionary_t opd) in prop_dictionary_copy_mutable() argument
737 if (! prop_object_is_dictionary(opd)) in prop_dictionary_copy_mutable()
740 pd = prop_dictionary_copy(opd); in prop_dictionary_copy_mutable()