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

1 2 3 4

  /external/compiler-rt/lib/profile/
InstrProfilingUtil.h 23 /* PS4 doesn't have getenv. Define a shim. */
25 static inline char *getenv(const char *name) { return NULL; } function
  /bionic/libc/upstream-openbsd/lib/libc/stdlib/
getenv.c 1 /* $OpenBSD: getenv.c,v 1.10 2010/08/23 22:31:50 millert Exp $ */
69 * getenv --
73 getenv(const char *name) function
  /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
  /external/libusb/msvc/
missing.c 30 /* Workaround getenv not being available on WinCE.
32 char *getenv(const char *name) function
52 usbi_dbg("Failed to open registry key for getenv with error %d", rc);
62 usbi_dbg("Failed to read registry key value for getenv with error %d", rc);
  /external/libxml2/win32/wince/
wincecompat.c 57 char *getenv( const char *varname ) function
  /device/linaro/bootloader/edk2/StdLib/LibC/StdLib/
Environs.c 164 /** The getenv function searches an environment list, provided by the host
169 @return The getenv function returns a pointer to a string associated with
172 call to the getenv function. If the specified name cannot be
175 char *getenv(const char *name) function
  /external/devlib/devlib/utils/
uboot.py 65 def getenv(self): member in class:UbootMenu
  /external/libvpx/libvpx/vpx_ports/
arm_cpudetect.c 20 #define getenv(x) NULL macro
26 env = getenv("VPX_SIMD_CAPS");
37 env = getenv("VPX_SIMD_CAPS_MASK");
x86.h 150 #define getenv(x) NULL macro
175 env = getenv("VPX_SIMD_CAPS");
179 env = getenv("VPX_SIMD_CAPS_MASK");
  /external/syslinux/com32/include/
stdlib.h 48 static __inline__ char *getenv(const char *name) function
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
LongFilePathOs.py 69 getenv = os.getenv variable
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Lib/
ntpath.py 355 def getenv(var): function in function:expandvars
358 def getenv(var): function in function:expandvars
389 res = res + getenv(var)
403 res = res + getenv(var)
418 res = res + getenv(var)
os.py 438 # On RISC OS, all env access goes through getenv and putenv
539 def getenv(key, default=None): function
543 __all__.append("getenv")
  /external/python/cpython2/Lib/
ntpath.py 337 def getenv(var): function in function:expandvars
340 def getenv(var): function in function:expandvars
371 res = res + getenv(var)
385 res = res + getenv(var)
400 res = res + getenv(var)
os.py 411 # On RISC OS, all env access goes through getenv and putenv
512 def getenv(key, default=None): function
516 __all__.append("getenv")
  /external/sl4a/ScriptingLayer/src/com/googlecode/android_scripting/interpreter/
InterpreterProcess.java 55 putAllEnvironmentVariables(System.getenv());
  /prebuilts/go/darwin-x86/misc/ios/
go_darwin_arm_exec.go 71 devID = getenv("GOIOS_DEV_ID")
75 appID = getenv("GOIOS_APP_ID")
79 teamID = getenv("GOIOS_TEAM_ID")
82 deviceID = os.Getenv("GOIOS_DEVICE_ID")
135 func getenv(envvar string) string { func
136 s := os.Getenv(envvar)
  /prebuilts/go/linux-x86/misc/ios/
go_darwin_arm_exec.go 71 devID = getenv("GOIOS_DEV_ID")
75 appID = getenv("GOIOS_APP_ID")
79 teamID = getenv("GOIOS_TEAM_ID")
82 deviceID = os.Getenv("GOIOS_DEVICE_ID")
135 func getenv(envvar string) string { func
136 s := os.Getenv(envvar)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Lib/
os.py 423 # On RISC OS, all env access goes through getenv and putenv
524 def getenv(key, default=None): function
528 __all__.append("getenv")
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
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")
  /device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLib/SysCall/
CrtWrapper.c 267 char *getenv (const char *varname) function
270 // Null getenv() function implementation to satisfy the linker, since there is
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
ProcessBuilderTest.java 100 assertEquals(System.getenv(), env);
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/go/darwin-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)

Completed in 1575 milliseconds

1 2 3 4