Home | History | Annotate | Download | only in main

Lines Matching defs:env

469    char *env;
472 env = getenv("EGL_DRIVER");
474 if (env && strchr(env, '/')) {
479 env = NULL;
482 else if (env) {
483 char *suffix = strchr(env, '.');
484 name_len = (suffix) ? suffix - env : strlen(env);
487 if (env)
488 name_len = strlen(env);
502 !strncmp(_eglBuiltInDrivers[i].name, env, name_len)) {
503 mod = _eglAddModule(env);
512 /* otherwise, treat env as a path */
513 if (env) {
514 _eglPreloadForEach(search_path, _eglLoaderFile, (void *) env);