Lines Matching full:locations
269 * @locations: An array of supported splash locations.
272 * @return: If a null set of splash locations is given, or
281 struct splash_location *locations, uint size) in select_splash_location() argument
286 if (!locations || size == 0) in select_splash_location()
291 return &locations[0]; in select_splash_location()
294 if (!strcmp(locations[i].name, env_splashsource)) in select_splash_location()
295 return &locations[i]; in select_splash_location()
377 * variable and the board supported splash source locations, and load a
380 * @locations: An array of supported splash locations.
385 int splash_source_load(struct splash_location *locations, uint size) in splash_source_load() argument
401 splash_location = select_splash_location(locations, size); in splash_source_load()