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

1 2

  /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/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_));
  /external/tensorflow/tensorflow/core/lib/db/
sqlite.cc 99 const StringPiece GetEnv(const char* var) {
100 const char* val = std::getenv(var);
105 TF_RETURN_WITH_CONTEXT_IF_ERROR(SetPragma(db, pragma, GetEnv(var)), "getenv(",
  /frameworks/base/tools/bit/
command.cpp 73 Command::GetEnv() const
125 char* const* env = command.GetEnv();
173 char* const* env = command.GetEnv();
195 char* pathEnv = strdup(getenv("PATH"));
  /bionic/tests/
utils.h 184 char** GetEnv() {
  /external/webrtc/talk/app/webrtc/java/jni/
jni_helpers.cc 52 JNIEnv* GetEnv() {
54 jint status = g_jvm->GetEnv(&env, JNI_VERSION_1_6);
57 << "Unexpected GetEnv return: " << status << ":" << env;
69 if (!GetEnv())
72 RTC_CHECK(GetEnv() == prev_jni_ptr)
73 << "Detaching from another thread: " << prev_jni_ptr << ":" << GetEnv();
76 RTC_CHECK(!GetEnv()) << "Detaching was a successful no-op???";
92 if (jvm->GetEnv(reinterpret_cast<void**>(&jni), JNI_VERSION_1_6) != JNI_OK)
118 JNIEnv* jni = GetEnv();
  /external/tensorflow/tensorflow/core/kernels/batching_util/
adaptive_shared_batch_scheduler.h 169 // access to AddBatch, RemoveQueue, GetEnv.
193 Env* GetEnv() const { return options_.env; }
411 opts.env = GetEnv();
413 GetEnv(), options.thread_pool_name, options.num_batch_threads));
484 int64 end_time = GetEnv()->NowMicros();
531 const int64 start_time_micros = GetEnv()->NowMicros();
558 scheduling_period_ - (GetEnv()->NowMicros() - start_time_micros);
560 GetEnv()->SleepForMicroseconds(sleep_time);
591 scheduler_->GetEnv()->SleepForMicroseconds(kSleepMicros);
619 new ASBSBatch<TaskType>(this, scheduler_->GetEnv()->NowMicros())
    [all...]
  /art/runtime/
java_vm_ext.cc 382 static jint GetEnv(JavaVM* vm, void** env, jint version) {
448 JII::GetEnv,
505 LOG(ERROR) << "Error returned from a plugin GetEnv handler! " << res;
509 LOG(ERROR) << "Bad JNI version passed to GetEnv: " << version;
513 // Add a hook to handle getting environments from the GetEnv call.
    [all...]
check_jni.cc 537 // use DetachCurrentThread or GetEnv on a thread that's not yet attached.
585 // use DetachCurrentThread or GetEnv on a thread that's not yet attached.
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
Shell.h 551 used instead of GetEnv().
    [all...]
  /device/linaro/bootloader/edk2/ShellPkg/Include/Protocol/
EfiShellEnvironment2.h 922 SHELLENV_GET_ENV GetEnv;
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_mac.cc 285 const char *GetEnv(const char *name) {
615 const_cast<char*>(GetEnv(kDyldInsertLibraries));
sanitizer_win.cc 277 const char *GetEnv(const char *name) {
sanitizer_linux.cc 392 // Like getenv, but reads env directly from /proc (on Linux) or parses the
395 const char *GetEnv(const char *name) {
    [all...]
  /external/google-breakpad/src/testing/gtest/include/gtest/internal/
gtest-port.h 183 // GetEnv() - gets the value of an environment variable.
    [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-port.h 184 // GetEnv() - gets the value of an environment variable.
    [all...]
  /external/mesa3d/src/gtest/include/gtest/internal/
gtest-port.h 191 // GetEnv() - gets the value of an environment variable.
    [all...]
  /external/protobuf/gtest/include/gtest/internal/
gtest-port.h 167 // GetEnv() - gets the value of an environment variable.
    [all...]
  /external/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/internal/
gtest-port.h 182 // GetEnv() - gets the value of an environment variable.
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/
gtest-port.h 191 // GetEnv() - gets the value of an environment variable.
    [all...]
  /prebuilts/ndk/r16/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-port.h 191 // GetEnv() - gets the value of an environment variable.
    [all...]
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/tests/gtest-1.7.0/include/gtest/internal/
gtest-port.h 191 // GetEnv() - gets the value of an environment variable.
    [all...]
  /external/googletest/googletest/include/gtest/internal/
gtest-port.h 256 // GetEnv() - gets the value of an environment variable.
    [all...]
  /external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
gtest-port.h 254 // GetEnv() - gets the value of an environment variable.
    [all...]

Completed in 684 milliseconds

1 2