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

1 2 3 4 5 6 7 8 91011>>

  /external/valgrind/main/memcheck/tests/darwin/
env.c 15 assert( 0 == strcmp(getenv("MYVAR"), val1) );
18 assert( 0 == strcmp(getenv("MYVAR"), val2) );
21 assert( 0 == strcmp(getenv("MYVAR"), val2) );
24 assert( 0 == strcmp(getenv("MYVAR"), "xxxx") );
27 assert( NULL == getenv("MYVAR") );
  /external/llvm/include/llvm/ExecutionEngine/
Interpreter.h 29 // to know that getenv() never returns -1, this will do the job.
30 if (std::getenv("bar") != (char*) -1)
JIT.h 29 // to know that getenv() never returns -1, this will do the job.
30 if (std::getenv("bar") != (char*) -1)
MCJIT.h 29 // to know that getenv() never returns -1, this will do the job.
30 if (std::getenv("bar") != (char*) -1)
  /external/llvm/include/llvm/CodeGen/
LinkAllAsmWriterComponents.h 28 // to know that getenv() never returns -1, this will do the job.
29 if (std::getenv("bar") != (char*) -1)
  /external/llvm/include/llvm/
LinkAllVMCore.h 43 // to know that getenv() never returns -1, this will do the job.
44 if (std::getenv("bar") != (char*) -1)
  /ndk/tests/device/test-gnustl-1/jni/
hello.cpp 23 if (std::getenv("UNKNOWN_VARIABLE") == NULL)
  /external/chromium/chrome/browser/
locale_tests_uitest.cc 40 old_lc_all_ = getenv("LC_ALL");
51 old_lc_all_ = getenv("LC_ALL");
62 old_lc_all_ = getenv("LC_ALL");
  /external/e2fsprogs/intl/
os2compat.h 42 /* We have our own getenv() which works even if library is compiled as DLL */
43 #define getenv _nl_getenv macro
os2compat.c 28 /* A version of getenv() that works from DLLs */
51 char *root = getenv ("UNIXROOT");
52 char *gnulocaledir = getenv ("GNULOCALEDIR");
  /prebuilt/windows/sdl/host/include/SDL/
SDL_getenv.h 2 /* Not all environments have a working getenv()/putenv() */
22 #define getenv(X) SDL_getenv(X) macro
  /system/core/toolbox/
printenv.c 20 v = getenv(argv[i]);
  /external/qemu/android/utils/
setenv.c 9 if (overwrite || !getenv(name)) {
bufprint.c 171 const char* home = getenv("ANDROID_SDK_HOME");
183 const char* home = getenv("ANDROID_SDK_HOME");
185 home = getenv("HOME");
219 const char* tmppath = getenv("ANDROID_TMP");
221 const char* user = getenv("USER");
  /external/webkit/Source/WebCore/platform/efl/
LoggingEfl.cpp 39 char* logEnv = getenv("WEBKIT_DEBUG");
  /external/webkit/Source/WebCore/platform/gtk/
LoggingGtk.cpp 40 char* logEnv = getenv("WEBKIT_DEBUG");
  /system/extras/tests/bionic/libc/common/
test_tm_zone.c 39 const char* tz = getenv("TZ");
  /ndk/sources/host-tools/sed-4.2.1/lib/
localcharset.c 129 dir = getenv ("CHARSETALIASDIR");
349 locale = getenv ("LC_ALL");
352 locale = getenv ("LC_CTYPE");
354 locale = getenv ("LANG");
388 /* On old systems which lack it, use setlocale or getenv. */
400 locale = getenv ("LC_ALL");
403 locale = getenv ("LC_CTYPE");
405 locale = getenv ("LANG");
433 locale = getenv ("LC_ALL");
436 locale = getenv ("LC_CTYPE")
    [all...]
  /external/clang/utils/
CaptureCmd 36 program = os.getenv('CAPTURE_CMD_PROGRAM')
37 dir = os.getenv('CAPTURE_CMD_DIR')
38 fallback = os.getenv('CAPTURE_CMD_FALLBACK')
  /external/dropbear/
cli-authpasswd.c 40 askpass_prog = getenv("SSH_ASKPASS");
41 return askpass_prog && !isatty(STDIN_FILENO) && getenv("DISPLAY");
55 helper = getenv("SSH_ASKPASS");
  /development/tools/emulator/opengl/host/libs/libOpenglRender/
GL2Dispatch.cpp 41 const char *libName = getenv("ANDROID_GLESv2_LIB");
  /external/llvm/unittests/Support/
CommandLineTest.cpp 26 const char *old_value = getenv(name);
  /external/webkit/Source/WebCore/platform/
NotImplemented.h 33 #define supressNotImplementedWarning() getenv("DISABLE_NI_WARNING")
  /external/clang/tools/c-arcmt-test/
c-arcmt-test.c 77 if (getenv("LIBCLANG_LOGGING") == NULL)
84 if (getenv("CINDEXTEST_NOTHREADS"))
  /libcore/luni/src/main/java/java/lang/
System.java 202 public static String getenv(String name) { method in class:System
203 return getenv(name, null);
206 private static String getenv(String name, String defaultValue) { method in class:System
210 String value = Libcore.os.getenv(name);
226 public static Map<String, String> getenv() { method in class:System
283 p.put("java.home", getenv("JAVA_HOME", "/system"));
286 p.put("java.library.path", getenv("LD_LIBRARY_PATH"));
313 p.put("user.home", getenv("HOME", ""));
314 p.put("user.name", getenv("USER", ""));
653 * The unmodifiable environment variables map. System.getenv() specifie
    [all...]

Completed in 560 milliseconds

1 2 3 4 5 6 7 8 91011>>