Lines Matching defs:brand
54 * z_is_zone_brand_in_list - determine if the zone's brand matches the
55 * brand list passed in.
83 #include <sys/brand.h>
231 * Description: Given a string with a list of brand name delimited by
233 * with the list of brand names and return it to the caller.
235 * brands - const char pointer to string list of brand names
248 zoneBrandList_t *brand = NULL, *head = NULL;
256 if ((brand = (zoneBrandList_t *)
261 head = brand;
262 brand->string_ptr = strdup(str);
263 brand->next = NULL;
266 if ((brand->next = (zoneBrandList_t *)
271 brand = brand->next;
272 brand->string_ptr = strdup(str);
273 brand->next = NULL;
330 * skip any zones with brands not on the brand list
791 * Description: Determine whether zone's brand has a match in the list
796 * == B_TRUE - zone has a matching brand
797 * == B_FALSE - zone brand is not in list