Lines Matching refs:ulValueLen
57 attr.ulValueLen = sizeof (class); in get_master_attributes_by_object()
65 attr.ulValueLen = sizeof (subtype); in get_master_attributes_by_object()
409 switch (attr->attribute.ulValueLen) { in get_master_attributes_by_type()
466 malloc(src->attribute.ulValueLen); in get_master_attributes_by_duplication()
473 dst->attribute.ulValueLen = 0; in get_master_attributes_by_duplication()
486 dst->attribute.ulValueLen = 0; in get_master_attributes_by_duplication()
493 src->attribute.ulValueLen); in get_master_attributes_by_duplication()
528 bzero(attr->attribute.pValue, attr->attribute.ulValueLen); in dealloc_attributes()
562 if (attr->attribute.ulValueLen >= new_attr->ulValueLen) { in attribute_set_value()
566 bzero((char *)attr->attribute.pValue + new_attr->ulValueLen, in attribute_set_value()
567 attr->attribute.ulValueLen - new_attr->ulValueLen); in attribute_set_value()
569 } else if (new_attr->ulValueLen <= sizeof (attr->generic_data)) { in attribute_set_value()
572 bzero(attr->attribute.pValue, attr->attribute.ulValueLen); in attribute_set_value()
594 newStorage = malloc(new_attr->ulValueLen); in attribute_set_value()
597 bzero(attr->attribute.pValue, attr->attribute.ulValueLen); in attribute_set_value()
603 new_attr->ulValueLen); in attribute_set_value()
604 attr->attribute.ulValueLen = new_attr->ulValueLen; in attribute_set_value()