HomeSort by relevance Sort by last modified time
    Searched refs:Getenv (Results 1 - 4 of 4) sorted by null

  /external/chromium/base/
linux_util.cc 29 virtual bool Getenv(const char* variable_name, std::string* result) {
30 const char* env_value = ::getenv(variable_name);
47 env_value = ::getenv(alternate_case_var.c_str());
186 if (env->Getenv("HOME", &home_dir) && !home_dir.empty())
240 if (env->Getenv(env_name, &env_value) && !env_value.empty())
263 if (env->Getenv("DESKTOP_SESSION", &desktop_session)) {
271 if (env->Getenv("KDE_SESSION_VERSION", &dummy))
280 if (env->Getenv("GNOME_DESKTOP_SESSION_ID", &dummy)) {
282 } else if (env->Getenv("KDE_FULL_SESSION", &dummy)) {
283 if (env->Getenv("KDE_SESSION_VERSION", &dummy)
    [all...]
linux_util.h 34 virtual bool Getenv(const char* variable_name, std::string* result) = 0;
  /external/chromium/net/proxy/
proxy_config_service_linux.cc 81 if (env_var_getter_->Getenv(variable, &env_value)) {
109 if (env_var_getter_->Getenv("auto_proxy", &auto_proxy)) {
148 if (env_var_getter_->Getenv("SOCKS_VERSION", &env_version)
158 env_var_getter_->Getenv("no_proxy", &no_proxy);
414 if (!env_var_getter->Getenv("KDE_HOME", &kde_home)) {
415 if (!env_var_getter->Getenv("HOME", &kde_home))
613 // be tested without using it. So we just use getenv() here.
616 char* value = getenv(it->second.c_str());
    [all...]
proxy_config_service_linux_unittest.cc 104 virtual bool Getenv(const char* variable_name, std::string* result) {
    [all...]

Completed in 143 milliseconds