Home
last modified time | relevance | path

Searched refs:GetEnv (Results 1 – 25 of 92) sorted by relevance

1234

/external/curl/src/
Dtool_homedir.c32 static char *GetEnv(const char *variable, char do_expand) in GetEnv() function
67 home = GetEnv("CURL_HOME", FALSE); in homedir()
71 home = GetEnv("HOME", FALSE); in homedir()
89 home = GetEnv("APPDATA", TRUE); in homedir()
91 home = GetEnv("%USERPROFILE%\\Application Data", TRUE); /* Normally only in homedir()
/external/vulkan-validation-layers/tests/gtest-1.7.0/test/
Dgtest_premature_exit_test.cc41 using ::testing::internal::posix::GetEnv;
61 premature_exit_file_path_ = GetEnv("TEST_PREMATURE_EXIT_FILE"); in PrematureExitTest()
104 const char* const filepath = GetEnv("TEST_PREMATURE_EXIT_FILE"); in TEST_F()
130 const char* const filepath = GetEnv("TEST_PREMATURE_EXIT_FILE"); in main()
/external/webrtc/talk/app/webrtc/java/jni/
Djni_helpers.cc52 JNIEnv* GetEnv() { in GetEnv() function
54 jint status = g_jvm->GetEnv(&env, JNI_VERSION_1_6); in GetEnv()
69 if (!GetEnv()) in ThreadDestructor()
72 RTC_CHECK(GetEnv() == prev_jni_ptr) in ThreadDestructor()
73 << "Detaching from another thread: " << prev_jni_ptr << ":" << GetEnv(); in ThreadDestructor()
76 RTC_CHECK(!GetEnv()) << "Detaching was a successful no-op???"; in ThreadDestructor()
92 if (jvm->GetEnv(reinterpret_cast<void**>(&jni), JNI_VERSION_1_6) != JNI_OK) in InitGlobalJniVariables()
118 JNIEnv* jni = GetEnv(); in AttachCurrentThreadIfNeeded()
/external/v8/testing/gtest/test/
Dgtest_premature_exit_test.cc41 using ::testing::internal::posix::GetEnv;
57 premature_exit_file_path_ = GetEnv("TEST_PREMATURE_EXIT_FILE"); in PrematureExitTest()
116 const char* const filepath = GetEnv("TEST_PREMATURE_EXIT_FILE"); in main()
/external/googletest/googletest/test/
Dgtest_premature_exit_test.cc41 using ::testing::internal::posix::GetEnv;
57 premature_exit_file_path_ = GetEnv("TEST_PREMATURE_EXIT_FILE"); in PrematureExitTest()
116 const char* const filepath = GetEnv("TEST_PREMATURE_EXIT_FILE"); in main()
/external/llvm/unittests/Support/
DProcessTest.cpp36 Optional<std::string> val(Process::GetEnv("__LLVM_TEST_ENVIRON_VAR__")); in TEST()
43 Process::GetEnv("__LLVM_TEST_ENVIRON_NO_SUCH_VAR__")); in TEST()
51 Optional<std::string> val(Process::GetEnv("__LLVM_TEST_ENVIRON_VAR__")); in TEST()
/external/webrtc/webrtc/modules/utility/source/
Dhelpers_android.cc25 JNIEnv* GetEnv(JavaVM* jvm) { in GetEnv() function
27 jint status = jvm->GetEnv(&env, JNI_VERSION_1_6); in GetEnv()
100 env_ = GetEnv(jvm); in AttachThreadScoped()
117 RTC_CHECK(!GetEnv(jvm_)); in ~AttachThreadScoped()
Djvm_android.cc74 JNIEnv* jni = GetEnv(jvm); in AttachCurrentThreadIfNeeded()
250 JNIEnv* jni = GetEnv(jvm_); in environment()
/external/compiler-rt/lib/asan/
Dasan_flags.cc65 cf.external_symbolizer_path = GetEnv("ASAN_SYMBOLIZER_PATH"); in InitializeFlags()
111 asan_parser.ParseString(GetEnv("ASAN_OPTIONS")); in InitializeFlags()
113 lsan_parser.ParseString(GetEnv("LSAN_OPTIONS")); in InitializeFlags()
116 ubsan_parser.ParseString(GetEnv("UBSAN_OPTIONS")); in InitializeFlags()
/external/curl/lib/
Dgetenv.c31 char *GetEnv(const char *variable) in GetEnv() function
52 return GetEnv(v); in curl_getenv()
/external/webrtc/webrtc/modules/video_render/android/
Dvideo_render_android_native_opengl2.cc45 if (g_jvm->GetEnv((void**) &env, JNI_VERSION_1_4) != JNI_OK) { in UseOpenGL2()
102 if (g_jvm->GetEnv((void**) &env, JNI_VERSION_1_4) != JNI_OK) { in ~AndroidNativeOpenGl2Renderer()
148 if (g_jvm->GetEnv((void**) &env, JNI_VERSION_1_4) != JNI_OK) { in Init()
252 if (_jvm->GetEnv((void**) &env, JNI_VERSION_1_4) != JNI_OK) { in ~AndroidNativeOpenGl2Channel()
300 if (_jvm->GetEnv((void**) &env, JNI_VERSION_1_4) != JNI_OK) { in Init()
Dvideo_render_android_surface_view.cc45 if (g_jvm->GetEnv((void**)&env, JNI_VERSION_1_4) != JNI_OK) { in ~AndroidSurfaceViewRenderer()
102 if (g_jvm->GetEnv((void**)&env, JNI_VERSION_1_4) != JNI_OK) { in Init()
253 if ( _jvm->GetEnv((void**)&env, JNI_VERSION_1_4) != JNI_OK) { in ~AndroidSurfaceViewChannel()
320 if (_jvm->GetEnv((void**)&env, JNI_VERSION_1_4) != JNI_OK) { in Init()
/external/compiler-rt/lib/lsan/
Dlsan.cc44 cf.external_symbolizer_path = GetEnv("LSAN_SYMBOLIZER_PATH"); in InitializeFlags()
59 parser.ParseString(GetEnv("LSAN_OPTIONS")); in InitializeFlags()
/external/conscrypt/common/src/jni/main/cpp/
Djni_load.cpp33 if (vm->GetEnv((void**)&env, CONSCRYPT_JNI_VERSION) != JNI_OK) { in libconscrypt_JNI_OnLoad()
/external/compiler-rt/lib/esan/
Desan_flags.cpp47 Parser.ParseString(GetEnv(EsanOptsEnv)); in initializeFlags()
/external/protobuf/gtest/src/
Dgtest-port.cc674 const char* const string_value = posix::GetEnv(env_var.c_str()); in BoolFromGTestEnv()
684 const char* const string_value = posix::GetEnv(env_var.c_str()); in Int32FromGTestEnv()
706 const char* const value = posix::GetEnv(env_var.c_str()); in StringFromGTestEnv()
/external/compiler-rt/lib/scudo/
Dscudo_flags.cpp52 scudo_parser.ParseString(GetEnv("SCUDO_OPTIONS")); in initFlags()
/external/compiler-rt/lib/ubsan/
Dubsan_flags.cc61 parser.ParseString(GetEnv("UBSAN_OPTIONS")); in InitializeFlags()
/external/llvm/include/llvm/Support/
DProcess.h77 static Optional<std::string> GetEnv(StringRef name);
/external/libvpx/libvpx/third_party/googletest/src/src/
Dgtest-port.cc1062 const char* temp_dir = posix::GetEnv("TEMP"); in TempDir()
1196 const char* const string_value = posix::GetEnv(env_var.c_str()); in BoolFromGTestEnv()
1209 const char* const string_value = posix::GetEnv(env_var.c_str()); in Int32FromGTestEnv()
1234 const char* value = posix::GetEnv(env_var.c_str()); in StringFromGTestEnv()
1250 value = posix::GetEnv("XML_OUTPUT_FILE"); in StringFromGTestEnv()
/external/mesa3d/src/gtest/src/
Dgtest-port.cc709 const char* const string_value = posix::GetEnv(env_var.c_str()); in BoolFromGTestEnv()
719 const char* const string_value = posix::GetEnv(env_var.c_str()); in Int32FromGTestEnv()
741 const char* const value = posix::GetEnv(env_var.c_str()); in StringFromGTestEnv()
/external/llvm/utils/unittest/googletest/src/
Dgtest-port.cc713 const char* const string_value = posix::GetEnv(env_var.c_str()); in BoolFromGTestEnv()
723 const char* const string_value = posix::GetEnv(env_var.c_str()); in Int32FromGTestEnv()
745 const char* const value = posix::GetEnv(env_var.c_str()); in StringFromGTestEnv()
/external/swiftshader/third_party/LLVM/utils/unittest/googletest/
Dgtest-port.cc709 const char* const string_value = posix::GetEnv(env_var.c_str()); in BoolFromGTestEnv()
719 const char* const string_value = posix::GetEnv(env_var.c_str()); in Int32FromGTestEnv()
741 const char* const value = posix::GetEnv(env_var.c_str()); in StringFromGTestEnv()
/external/webrtc/webrtc/modules/utility/include/
Dhelpers_android.h26 JNIEnv* GetEnv(JavaVM* jvm);
/external/llvm/lib/Support/
DProcess.cpp34 Optional<std::string> OptPath = Process::GetEnv(EnvName); in FindInEnvPath()

1234