Lines Matching full:locations
268 * @locations: An array of supported splash locations.
271 * @return: If a null set of splash locations is given, or
280 struct splash_location *locations, uint size) in select_splash_location() argument
285 if (!locations || size == 0) in select_splash_location()
290 return &locations[0]; in select_splash_location()
293 if (!strcmp(locations[i].name, env_splashsource)) in select_splash_location()
294 return &locations[i]; in select_splash_location()
376 * variable and the board supported splash source locations, and load a
379 * @locations: An array of supported splash locations.
384 int splash_source_load(struct splash_location *locations, uint size) in splash_source_load() argument
400 splash_location = select_splash_location(locations, size); in splash_source_load()