Lines Matching refs:vendor

166   arg_type(int vendor, int tag)  in arg_type()  argument
168 switch (vendor) in arg_type()
212 Vendor_object_attributes(int vendor) in Vendor_object_attributes() argument
213 : vendor_(vendor), other_attributes_() in Vendor_object_attributes()
297 for (int vendor = Object_attribute::OBJ_ATTR_FIRST; in Attributes_section_data() local
298 vendor <= Object_attribute::OBJ_ATTR_LAST; in Attributes_section_data()
299 ++vendor) in Attributes_section_data()
300 this->vendor_object_attributes_[vendor] = in Attributes_section_data()
301 new Vendor_object_attributes(*asd.vendor_object_attributes_[vendor]); in Attributes_section_data()
306 for (int vendor = Object_attribute::OBJ_ATTR_FIRST; in ~Attributes_section_data() local
307 vendor <= Object_attribute::OBJ_ATTR_LAST; in ~Attributes_section_data()
308 ++vendor) in ~Attributes_section_data()
309 delete this->vendor_object_attributes_[vendor]; in ~Attributes_section_data()
318 known_attributes(int vendor) in known_attributes() argument
320 gold_assert(vendor >= OBJ_ATTR_FIRST && vendor <= OBJ_ATTR_LAST); in known_attributes()
321 return this->vendor_object_attributes_[vendor]->known_attributes(); in known_attributes()
325 known_attributes(int vendor) const in known_attributes() argument
327 gold_assert(vendor >= OBJ_ATTR_FIRST && vendor <= OBJ_ATTR_LAST); in known_attributes()
328 return this->vendor_object_attributes_[vendor]->known_attributes(); in known_attributes()
333 other_attributes(int vendor) in other_attributes() argument
335 gold_assert(vendor >= OBJ_ATTR_FIRST && vendor <= OBJ_ATTR_LAST); in other_attributes()
336 return this->vendor_object_attributes_[vendor]->other_attributes(); in other_attributes()
341 other_attributes(int vendor) const in other_attributes() argument
343 gold_assert(vendor >= OBJ_ATTR_FIRST && vendor <= OBJ_ATTR_LAST); in other_attributes()
344 return this->vendor_object_attributes_[vendor]->other_attributes(); in other_attributes()
349 get_attribute(int vendor, int tag) in get_attribute() argument
351 gold_assert(vendor >= OBJ_ATTR_FIRST && vendor <= OBJ_ATTR_LAST); in get_attribute()
352 return this->vendor_object_attributes_[vendor]->get_attribute(tag); in get_attribute()
356 get_attribute(int vendor, int tag) const in get_attribute() argument
358 gold_assert(vendor >= OBJ_ATTR_FIRST && vendor <= OBJ_ATTR_LAST); in get_attribute()
359 return this->vendor_object_attributes_[vendor]->get_attribute(tag); in get_attribute()