HomeSort by relevance Sort by last modified time
    Searched defs:getenv (Results 26 - 50 of 87) sorted by null

12 3 4

  /prebuilts/go/linux-x86/test/
run.go 76 goos = getenv("GOOS", runtime.GOOS)
77 goarch = getenv("GOARCH", runtime.GOARCH)
163 p := filepath.Join(os.Getenv("GOROOT"), "bin", "tool", name)
425 return "-gcflags=" + os.Getenv("GO_GCFLAGS")
541 if os.Getenv("GOOS") == "" {
544 if os.Getenv("GOARCH") == "" {
1290 func getenv(key, def string) string { func
1291 value := os.Getenv(key)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
os.py 409 # On RISC OS, all env access goes through getenv and putenv
510 def getenv(key, default=None): function
514 __all__.append("getenv")
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
os.py 409 # On RISC OS, all env access goes through getenv and putenv
510 def getenv(key, default=None): function
514 __all__.append("getenv")
  /test/vts/harnesses/tradefed/src/com/android/tradefed/util/
VtsPythonRunnerHelper.java 141 if (System.getenv(PYTHONPATH) != null) {
143 sb.append(System.getenv(PYTHONPATH));
172 if (System.getenv(ANDROID_BUILD_TOP) != null) {
174 sb.append(System.getenv(ANDROID_BUILD_TOP)).append("/test");
  /tools/tradefederation/core/src/com/android/tradefed/testtype/
PythonUnitTestRunner.java 130 sb.append(System.getenv(PYTHONPATH));
  /external/python/cpython3/Lib/
os.py 758 def getenv(key, default=None): function
765 __all__.extend(("getenv", "supports_bytes_environ"))
    [all...]
  /libcore/ojluni/src/main/java/java/lang/
ProcessEnvironment.java 83 /* Only for use by System.getenv(String) */
84 static String getenv(String name) { method in class:ProcessEnvironment
88 /* Only for use by System.getenv() */
89 static Map<String,String> getenv() { method in class:ProcessEnvironment
System.java 1417 public static String getenv(String name) { method in class:System
1466 public static java.util.Map<String,String> getenv() { method in class:System
    [all...]
  /system/core/adb/
sysdeps.h 274 #define getenv adb_getenv macro
  /external/valgrind/coregrind/
m_libcproc.c 78 /* We do getenv without libc's help by snooping around in
80 HChar *VG_(getenv)(const HChar *varname) function
    [all...]
  /external/devlib/devlib/
target.py 142 return self.getenv('USER')
512 def getenv(self, variable): member in class:Target
531 for path in self.getenv('PATH').split(self.path.pathsep):
    [all...]
  /external/harfbuzz_ng/src/
hb-private.hh 187 # define getenv(Name) nullptr macro
193 # define getenv(Name) nullptr macro
  /external/python/cpython2/PC/
pyconfig.h 99 #define getenv(v) (NULL) macro
  /libcore/luni/src/main/java/libcore/io/
Linux.java 85 public native String getenv(String name); method in class:Linux
Os.java 79 public String getenv(String name); method in interface:Os
ForwardingOs.java 94 public String getenv(String name) { return os.getenv(name); } method in class:ForwardingOs
  /external/curl/lib/
setup-vms.h 27 /* getenv(), getpwuid() and provide is_vms_shell() */
37 #define getenv decc_getenv macro
44 char *decc$getenv(const char *__name);
50 #undef getenv macro
52 #define getenv vms_getenv macro
120 /* first use the DECC getenv() function */
121 result = decc$getenv(envvar);
130 /* may do a malloc(2048) for each call to getenv(), so you will need */
  /frameworks/base/core/jni/
android_view_ThreadedRenderer.cpp 82 static JNIEnv* getenv(JavaVM* vm) { function in namespace:android
84 if (vm->GetEnv(reinterpret_cast<void**>(&env), JNI_VERSION_1_6) != JNI_OK) {
154 JNIEnv* env = getenv(vm);
187 getenv(mVm)->CallVoidMethod(mObject, gFrameCompleteCallback.onFrameComplete, mFrameNr);
200 getenv(mVm)->DeleteGlobalRef(mObject);
533 JNIEnv* env = getenv(mVm);
555 JNIEnv* env = getenv(mVm);
624 JNIEnv* env = getenv(mVm);
    [all...]
  /libcore/luni/src/main/java/android/system/
Os.java 189 * See <a href="http://man7.org/linux/man-pages/man3/getenv.3.html">getenv(3)</a>.
191 public static String getenv(String name) { return Libcore.os.getenv(name); } method in class:Os
  /system/core/logcat/
logcat.cpp 708 const char* getenv(android_logcat_context_internal* context, const char* name) { function in namespace:android
    [all...]
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.launcher_1.3.0.v20130327-1440.jar 
  /prebuilts/misc/common/robolectric/android-all/
android-all-6.0.1_r3-robolectric-0.jar 
android-all-7.0.0_r1-robolectric-r1.jar 
android-all-7.1.0_r7-robolectric-0.jar 
android-all-7.1.0_r7-robolectric-r1.jar 

Completed in 1016 milliseconds

12 3 4