Searched refs:getenv (Results 1 - 25 of 388) sorted by relevance

1234567891011>>

/external/valgrind/main/memcheck/tests/darwin/
H A Denv.c15 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/compiler-rt/lib/asan/lit_tests/Darwin/
H A Dreexec-insert-libraries-env.cc17 printf("%s=%s\n", kEnvName, getenv(kEnvName));
/external/compiler-rt/SDKs/darwin/usr/include/
H A Dstdlib.h27 char *getenv(const char *);
/external/llvm/include/llvm/CodeGen/
H A DLinkAllAsmWriterComponents.h28 // to know that getenv() never returns -1, this will do the job.
29 if (std::getenv("bar") != (char*) -1)
/external/llvm/include/llvm/ExecutionEngine/
H A DInterpreter.h29 // to know that getenv() never returns -1, this will do the job.
30 if (std::getenv("bar") != (char*) -1)
H A DJIT.h29 // to know that getenv() never returns -1, this will do the job.
30 if (std::getenv("bar") != (char*) -1)
H A DMCJIT.h29 // to know that getenv() never returns -1, this will do the job.
30 if (std::getenv("bar") != (char*) -1)
/external/linux-tools-perf/util/
H A Dsetup.py4 from os import getenv namespace
7 cflags += getenv('CFLAGS', '').split()
H A Dpager.c53 const char *pager = getenv("PERF_PAGER");
63 pager = getenv("PAGER");
100 env = getenv("PERF_PAGER_IN_USE");
/external/compiler-rt/lib/asan/
H A Dasanwrapper.cc16 const char* value_old = getenv(name);
46 printf("ASAN_OPTIONS: %s\n", getenv("ASAN_OPTIONS"));
47 printf("LD_LIBRARY_PATH: %s\n", getenv("LD_LIBRARY_PATH"));
48 printf("LD_PRELOAD: %s\n", getenv("LD_PRELOAD"));
/external/chromium/chrome/browser/
H A Dlocale_tests_uitest.cc40 old_lc_all_ = getenv("LC_ALL");
51 old_lc_all_ = getenv("LC_ALL");
62 old_lc_all_ = getenv("LC_ALL");
/external/compiler-rt/SDKs/linux/usr/include/
H A Dstdlib.h27 char *getenv(const char *) __attribute__((__nothrow__))
/external/e2fsprogs/intl/
H A Dos2compat.h42 /* We have our own getenv() which works even if library is compiled as DLL */
43 #define getenv _nl_getenv macro
/external/libyuv/files/unit_test/
H A Dunit_test.cc13 #include <stdlib.h> // For getenv()
24 const char* repeat = getenv("LIBYUV_REPEAT");
/external/llvm/include/llvm/
H A DLinkAllIR.h43 // to know that getenv() never returns -1, this will do the job.
44 if (std::getenv("bar") != (char*) -1)
/external/webkit/Source/WebCore/platform/
H A DNotImplemented.h33 #define supressNotImplementedWarning() getenv("DISABLE_NI_WARNING")
/external/libmtp/examples/
H A Dutil.c37 char *lang = getenv("LANG");
/external/qemu/android/utils/
H A Dsetenv.c9 if (overwrite || !getenv(name)) {
/external/webkit/Source/WebCore/platform/efl/
H A DLoggingEfl.cpp39 char* logEnv = getenv("WEBKIT_DEBUG");
/external/webkit/Source/WebCore/platform/gtk/
H A DLoggingGtk.cpp40 char* logEnv = getenv("WEBKIT_DEBUG");
/external/bison/lib/
H A Dlocalcharset.c132 dir = getenv ("CHARSETALIASDIR");
378 locale = getenv ("LC_ALL");
381 locale = getenv ("LC_CTYPE");
383 locale = getenv ("LANG");
427 /* On old systems which lack it, use setlocale or getenv. */
439 locale = getenv ("LC_ALL");
442 locale = getenv ("LC_CTYPE");
444 locale = getenv ("LANG");
478 locale = getenv ("LC_ALL");
481 locale = getenv ("LC_CTYP
[all...]
/external/clang/utils/
H A DCaptureCmd36 program = os.getenv('CAPTURE_CMD_PROGRAM')
37 dir = os.getenv('CAPTURE_CMD_DIR')
38 fallback = os.getenv('CAPTURE_CMD_FALLBACK')
/external/dropbear/
H A Dcli-authpasswd.c40 askpass_prog = getenv("SSH_ASKPASS");
41 return askpass_prog && !isatty(STDIN_FILENO) && getenv("DISPLAY");
55 helper = getenv("SSH_ASKPASS");
/external/skia/
H A Dgyp_skia60 output_dir = os.getenv('SKIA_OUT')
67 (not os.getenv('GYP_GENERATORS') or
68 'make' not in os.getenv('GYP_GENERATORS')))):
/external/chromium/build/
H A Dcompiler_version.py34 cxx = os.getenv("CXX", None)

Completed in 507 milliseconds

1234567891011>>