Lines Matching refs:ops
127 static int get_tag_count(const vendor_tag_ops_t* ops) in get_tag_count() argument
129 return gVendorTags.getTagCount(ops); in get_tag_count()
132 static void get_all_tags(const vendor_tag_ops_t* ops, uint32_t* tag_array) in get_all_tags() argument
134 gVendorTags.getAllTags(ops, tag_array); in get_all_tags()
137 static const char* get_section_name(const vendor_tag_ops_t* ops, uint32_t tag) in get_section_name() argument
139 return gVendorTags.getSectionName(ops, tag); in get_section_name()
142 static const char* get_tag_name(const vendor_tag_ops_t* ops, uint32_t tag) in get_tag_name() argument
144 return gVendorTags.getTagName(ops, tag); in get_tag_name()
147 static int get_tag_type(const vendor_tag_ops_t* ops, uint32_t tag) in get_tag_type() argument
149 return gVendorTags.getTagType(ops, tag); in get_tag_type()
152 static void get_vendor_tag_ops(vendor_tag_ops_t* ops) in get_vendor_tag_ops() argument
154 ALOGV("%s : ops=%p", __func__, ops); in get_vendor_tag_ops()
155 ops->get_tag_count = get_tag_count; in get_vendor_tag_ops()
156 ops->get_all_tags = get_all_tags; in get_vendor_tag_ops()
157 ops->get_section_name = get_section_name; in get_vendor_tag_ops()
158 ops->get_tag_name = get_tag_name; in get_vendor_tag_ops()
159 ops->get_tag_type = get_tag_type; in get_vendor_tag_ops()