HomeSort by relevance Sort by last modified time
    Searched refs:GetEnv (Results 1 - 25 of 219) sorted by null

1 2 3 4 5 6 7 8 9

  /external/curl/lib/
getenv.c 31 char *GetEnv(const char *variable)
38 char *temp = getenv(variable);
44 char *env = getenv(variable);
52 return GetEnv(v);
  /external/curl/src/
tool_homedir.c 32 static char *GetEnv(const char *variable, char do_expand)
39 /* Don't use getenv(); it doesn't find variable added after program was
57 env = getenv(variable);
67 home = GetEnv("CURL_HOME", FALSE);
71 home = GetEnv("HOME", FALSE);
89 home = GetEnv("APPDATA", TRUE);
91 home = GetEnv("%USERPROFILE%\\Application Data", TRUE); /* Normally only
  /external/llvm/unittests/Support/
ProcessTest.cpp 36 Optional<std::string> val(Process::GetEnv("__LLVM_TEST_ENVIRON_VAR__"));
43 Process::GetEnv("__LLVM_TEST_ENVIRON_NO_SUCH_VAR__"));
51 Optional<std::string> val(Process::GetEnv("__LLVM_TEST_ENVIRON_VAR__"));
  /cts/apps/CtsVerifier/jni/verifier/
CtsVerifierJniOnLoad.cpp 26 if (vm->GetEnv((void **) &env, JNI_VERSION_1_4) != JNI_OK) {
  /cts/libs/deviceutil/jni/
CtsJniOnLoad.cpp 25 if (vm->GetEnv((void **) &env, JNI_VERSION_1_4) != JNI_OK) {
  /cts/tests/tests/drm/jni/
CtsDrmJniOnLoad.cpp 25 if (vm->GetEnv((void **) &env, JNI_VERSION_1_4) != JNI_OK) {
  /cts/tests/tests/graphics/jni/
CtsGraphicsJniOnLoad.cpp 24 if (vm->GetEnv((void**)&env, JNI_VERSION_1_4) != JNI_OK)
  /cts/tests/tests/permission/jni/
CtsPermissionsJniOnLoad.cpp 25 if (vm->GetEnv((void **) &env, JNI_VERSION_1_4) != JNI_OK) {
  /cts/tests/tests/view/jni/
CtsViewJniOnLoad.cpp 26 if (vm->GetEnv((void**)&env, JNI_VERSION_1_4) != JNI_OK) {
  /cts/tools/cts-device-info/jni/
CtsDeviceInfoJniOnLoad.cpp 24 if (vm->GetEnv((void**)&env, JNI_VERSION_1_4) != JNI_OK)
  /external/gtest/test/
gtest_premature_exit_test.cc 41 using ::testing::internal::posix::GetEnv;
61 premature_exit_file_path_ = GetEnv("TEST_PREMATURE_EXIT_FILE");
104 const char* const filepath = GetEnv("TEST_PREMATURE_EXIT_FILE");
130 const char* const filepath = GetEnv("TEST_PREMATURE_EXIT_FILE");
  /external/opencv3/modules/java/generator/src/cpp/
jni_part.cpp 23 if (vm->GetEnv((void**) &env, JNI_VERSION_1_6) != JNI_OK)
  /external/vulkan-validation-layers/tests/gtest-1.7.0/test/
gtest_premature_exit_test.cc 41 using ::testing::internal::posix::GetEnv;
61 premature_exit_file_path_ = GetEnv("TEST_PREMATURE_EXIT_FILE");
104 const char* const filepath = GetEnv("TEST_PREMATURE_EXIT_FILE");
130 const char* const filepath = GetEnv("TEST_PREMATURE_EXIT_FILE");
  /frameworks/base/packages/services/PacProcessor/jni/
jni_init.cpp 30 if (vm->GetEnv(reinterpret_cast<void**>(&env), JNI_VERSION_1_6) != JNI_OK) {
31 ALOGE("ERROR: GetEnv failed");
  /frameworks/opt/net/voip/src/jni/rtp/
rtp_jni.cpp 27 if (vm->GetEnv((void **)&env, JNI_VERSION_1_4) != JNI_OK ||
  /hardware/intel/common/utils/ituxd/jni/
onload.cpp 33 if (vm->GetEnv((void**) &env, JNI_VERSION_1_4) != JNI_OK) {
34 ALOGE("GetEnv failed!");
  /packages/apps/Terminal/jni/
jni_init.cpp 30 if (vm->GetEnv(reinterpret_cast<void**>(&env), JNI_VERSION_1_6) != JNI_OK) {
31 ALOGE("ERROR: GetEnv failed");
  /frameworks/base/core/tests/coretests/apks/install_jni_lib/
com_android_frameworks_coretests_JNITest.cpp 45 if (jvm->GetEnv((void **) &e, JNI_VERSION_1_6)) {
  /frameworks/ex/framesequence/jni/
BitmapDecoderJNI.cpp 34 if (vm->GetEnv(reinterpret_cast<void**>(&env), JNI_VERSION_1_6) != JNI_OK) {
  /cts/tests/tests/jni/libjnitest/
register.c 31 if ((*vm)->GetEnv(vm, (void **) &env, JNI_VERSION_1_4) != JNI_OK) {
  /cts/tests/tests/os/jni/
CtsOsJniOnLoad.cpp 37 if (vm->GetEnv((void **) &env, JNI_VERSION_1_4) != JNI_OK) {
  /cts/tests/tests/security/jni/
CtsSecurityJniOnLoad.cpp 31 if (vm->GetEnv((void **) &env, JNI_VERSION_1_4) != JNI_OK) {
  /external/compiler-rt/lib/asan/
asan_flags.cc 65 cf.external_symbolizer_path = GetEnv("ASAN_SYMBOLIZER_PATH");
111 asan_parser.ParseString(GetEnv("ASAN_OPTIONS"));
113 lsan_parser.ParseString(GetEnv("LSAN_OPTIONS"));
116 ubsan_parser.ParseString(GetEnv("UBSAN_OPTIONS"));
  /external/webrtc/webrtc/modules/utility/source/
helpers_android.cc 25 JNIEnv* GetEnv(JavaVM* jvm) {
27 jint status = jvm->GetEnv(&env, JNI_VERSION_1_6);
30 << "Unexpected GetEnv return: " << status << ":" << env;
100 env_ = GetEnv(jvm);
117 RTC_CHECK(!GetEnv(jvm_));
  /packages/services/Car/service/jni/
JniInit.cpp 31 if (vm->GetEnv((void**) &env, JNI_VERSION_1_4) != JNI_OK) {
32 ALOGE("GetEnv failed!");

Completed in 1261 milliseconds

1 2 3 4 5 6 7 8 9