HomeSort by relevance Sort by last modified time
    Searched full:getenv (Results 76 - 100 of 1340) sorted by null

1 2 34 5 6 7 8 91011>>

  /sdk/emulator/opengl/host/libs/GLESv2_dec/
GL2Decoder.cpp 56 if (getenv(GLES2_LIBNAME_VAR) != NULL) {
57 libname = getenv(GLES2_LIBNAME_VAR);
  /development/samples/BrowserPlugin/jni/
jni-bridge.cpp 74 if (vm->GetEnv((void**) &env, JNI_VERSION_1_4) != JNI_OK) {
  /external/chromium/chrome/browser/importer/
nss_decryptor_mac.mm 23 if (getenv("DYLD_FALLBACK_LIBRARY_PATH") == NULL) {
  /external/chromium/chrome/common/extensions/docs/build/
build.py 126 home_dir = os.path.normpath(os.getenv("HOMEDRIVE") + os.getenv("HOMEPATH"))
137 search_locations.append(os.getenv("HOME") + "/bin/DumpRenderTree/"
145 search_locations.append(os.getenv("HOME") + "/bin/DumpRenderTree/" +
  /external/compiler-rt/SDKs/darwin/usr/include/
stdlib.h 27 char *getenv(const char *);
  /external/compiler-rt/SDKs/linux/usr/include/
stdlib.h 27 char *getenv(const char *) __attribute__((__nothrow__))
  /external/jmonkeyengine/engine/src/bullet-native/
jmePhysicsSpace.cpp 60 JNIEnv* jmePhysicsSpace::getEnv() {
211 JNIEnv* env = dynamicsWorld->getEnv();
225 JNIEnv* env = dynamicsWorld->getEnv();
246 JNIEnv* env = dynamicsWorld->getEnv();
  /external/libmtp/examples/
util.c 37 char *lang = getenv("LANG");
  /external/llvm/unittests/Support/
CommandLineTest.cpp 26 const char *old_value = getenv(name);
  /external/oprofile/libpopt/
system.h 78 #define getenv(_s) __secure_getenv(_s) macro
  /external/webkit/Source/WebCore/platform/
NotImplemented.h 33 #define supressNotImplementedWarning() getenv("DISABLE_NI_WARNING")
  /external/webkit/Source/WebCore/platform/efl/
LoggingEfl.cpp 39 char* logEnv = getenv("WEBKIT_DEBUG");
FileSystemEfl.cpp 73 const char* tmpDir = getenv("TMPDIR");
102 const char *home = getenv("HOME");
104 home = getenv("TMPDIR");
  /external/webkit/Source/WebCore/platform/gtk/
LoggingGtk.cpp 40 char* logEnv = getenv("WEBKIT_DEBUG");
  /frameworks/base/packages/DefaultContainerService/jni/
com_android_defcontainer_MeasurementUtils.cpp 71 if (jvm->GetEnv((void**)&env, JNI_VERSION_1_6)) {
  /libcore/luni/src/test/java/libcore/java/lang/
OldSystemTest.java 276 Map<String,String> envMap = System.getenv();
288 System.getenv("PATH"));
291 System.getenv("nonexistent.property"));
294 System.getenv(null);
  /sdk/find_lock/
find_lock_exe.cpp 31 gIsDebug = (getenv("ANDROID_SDKMAN_DEBUG") != NULL);
  /system/extras/tests/bionic/libc/common/
test_tm_zone.c 39 const char* tz = getenv("TZ");
  /external/clang/tools/libclang/
CIndexer.cpp 97 const char *TmpDir = ::getenv("TMPDIR");
99 TmpDir = ::getenv("TEMP");
101 TmpDir = ::getenv("TMP");
  /external/oprofile/agents/jvmpi/
jvmpi_oprofile.cpp 219 * GetEnv call.
225 err = jvm->GetEnv(&jvmpi_GetEnv_arg.jvmpi_ifc_ptr, JVMPI_VERSION_1);
227 cerr << "GetEnv failed with rc=" << err << endl;
  /external/quake/quake/src/QW/client/
snd_linux.c 78 s = getenv("QUAKE_SOUND_SAMPLEBITS");
89 s = getenv("QUAKE_SOUND_SPEED");
100 s = getenv("QUAKE_SOUND_CHANNELS");
  /external/quake/quake/src/WinQuake/
snd_linux.cpp 97 s = getenv("QUAKE_SOUND_SAMPLEBITS");
108 s = getenv("QUAKE_SOUND_SPEED");
119 s = getenv("QUAKE_SOUND_CHANNELS");
  /external/clang/lib/Driver/
WindowsToolChain.cpp 233 const char* vcinstalldir = getenv("VCINSTALLDIR");
269 const char *vs100comntools = getenv("VS100COMNTOOLS");
270 const char *vs90comntools = getenv("VS90COMNTOOLS");
271 const char *vs80comntools = getenv("VS80COMNTOOLS");
323 if (const char *cl_include_dir = getenv("INCLUDE")) {
  /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", ""));
654 * The unmodifiable environment variables map. System.getenv() specifie
    [all...]
  /external/clang/test/Analysis/
taint-tester.c 81 // Test getenv.
82 char *getenv(const char *name);
84 home = getenv("HOME"); // expected-warning + {{tainted}}

Completed in 747 milliseconds

1 2 34 5 6 7 8 91011>>