Lines Matching defs:env
226 char *env;
239 env = strdup(env_const);
241 if (env == NULL)
244 for (ext = strtok(env, " "); ext != NULL; ext = strtok(NULL, " ")) {
290 free(env);
292 unrecognized_extensions = env;
381 /* Check if the MESA_EXTENSION_MAX_YEAR env var is set */
383 const char *env = getenv("MESA_EXTENSION_MAX_YEAR");
384 if (env) {
385 maxYear = atoi(env);