Lines Matching refs:name
144 * The option name used for getenv is translated into a property name
156 * 1) Avoid re-translating the option name on subsequent lookups
163 os_get_android_option(const char *name)
171 struct hash_entry *entry = _mesa_hash_table_search(options_tbl, name);
180 if (strstr(name, "MESA_") != name)
182 p += strlcpy(p, name, end - p);
197 _mesa_hash_table_insert(options_tbl, name, (void *)opt);
206 os_get_option(const char *name)
208 const char *opt = getenv(name);
211 opt = os_get_android_option(name);