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

1 2 3 4 5 6 7 8 910

  /art/benchmark/
jni_loader.cc 23 if (vm->GetEnv(reinterpret_cast<void**>(&env), JNI_VERSION_1_6) != JNI_OK) {
  /frameworks/base/core/tests/coretests/apks/install_jni_lib/
com_android_frameworks_coretests_JNITest.cpp 31 if (jvm->GetEnv((void **) &e, JNI_VERSION_1_6)) {
  /external/curl/lib/
getenv.c 31 char *GetEnv(const char *variable)
39 char *temp = getenv(variable);
45 char *env = getenv(variable);
53 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/googletest/googletest/test/
gtest_premature_exit_test.cc 41 using ::testing::internal::posix::GetEnv;
57 premature_exit_file_path_ = GetEnv("TEST_PREMATURE_EXIT_FILE");
116 const char* const filepath = GetEnv("TEST_PREMATURE_EXIT_FILE");
  /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__"));
  /external/v8/testing/gtest/test/
gtest_premature_exit_test.cc 41 using ::testing::internal::posix::GetEnv;
57 premature_exit_file_path_ = GetEnv("TEST_PREMATURE_EXIT_FILE");
116 const char* const filepath = GetEnv("TEST_PREMATURE_EXIT_FILE");
  /cts/apps/CtsVerifier/jni/verifier/
CtsVerifierJniOnLoad.cpp 25 if (vm->GetEnv((void **) &env, JNI_VERSION_1_4) != JNI_OK) {
  /cts/common/device-side/util/jni/
CtsJniOnLoad.cpp 26 if (vm->GetEnv((void **) &env, JNI_VERSION_1_4) != JNI_OK) {
  /cts/hostsidetests/gputools/apps/jni/
CtsGpuToolsJniOnLoad.cpp 24 if (vm->GetEnv((void**)&env, JNI_VERSION_1_4) != JNI_OK)
  /cts/hostsidetests/seccomp/app/jni/
CtsSeccompJniOnLoad.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/hardware/jni/
CtsHardwareJniOnLoad.cpp 24 if (vm->GetEnv((void**)&env, JNI_VERSION_1_4) != JNI_OK)
  /cts/tests/tests/media/libmediandkjni/
CtsMediaDrmJniOnLoad.cpp 25 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/selinux/common/jni/
CtsSecurityJniOnLoad.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/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 ||
  /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/ex/framesequence/jni/
BitmapDecoderJNI.cpp 34 if (vm->GetEnv(reinterpret_cast<void**>(&env), JNI_VERSION_1_6) != JNI_OK) {
  /hardware/intel/common/utils/ituxd/jni/
onload.cpp 36 if (vm->GetEnv((void**) &env, JNI_VERSION_1_4) != JNI_OK) {
37 ALOGE("GetEnv failed!");
  /art/test/909-attach-agent/
attach.cc 52 if (vm->GetEnv(reinterpret_cast<void**>(&env), kArtTiVersion) == JNI_OK) {
60 if (vm->GetEnv(reinterpret_cast<void**>(&env), JVMTI_VERSION_1_0) != JNI_OK) {
64 CHECK_CALL_SUCCESS(vm->GetEnv(reinterpret_cast<void**>(&env2), JVMTI_VERSION_1_0));
66 Println("GetEnv returned same environment twice!");

Completed in 549 milliseconds

1 2 3 4 5 6 7 8 910