Lines Matching defs:name
33 static const char *__video_get_option_string(const char *name)
38 if (name)
39 name_len = strlen(name);
51 if (!strncmp(opt, name, name_len) && opt[name_len] == ':')
65 * @name: name of the output as it would appear in the boot parameter
66 * line (video=<name>:<options>)
68 * Looks up the video= options for the given name. Names are connector
70 * the name has been specified, the function returns the global video=
71 * setting. A @name of NULL always returns the global video setting.
74 * The string of video options for the given name, or NULL if no video
77 const char *video_get_options(const char *name)
79 return __video_get_option_string(name);
83 bool __video_get_options(const char *name, const char **options, bool is_of)
91 opt = __video_get_option_string(name);