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

1 2

  /external/llvm/unittests/Support/
ProcessTest.cpp 30 #define setenv(name, var, ignore) _putenv_s(name, var) macro
35 setenv("__LLVM_TEST_ENVIRON_VAR__", "abc", true);
  /art/tools/golem/
env 33 setenv() { function
104 setenv ART_USE_READ_BARRIER true
107 setenv ART_USE_READ_BARRIER false
112 setenv ART_BUILD_TARGET_DEBUG false
113 setenv ART_BUILD_HOST_DEBUG false
114 setenv USE_DEX2OAT_DEBUG false
build-target.sh 96 setenv() { function
270 setenv JACK_SERVER false
273 setenv SOONG_ALLOW_MISSING_DEPENDENCIES true
292 setenv ART_TARGET_LINUX true
304 setenv HOST_PREFER_32_BIT true
325 setenv OUT_DIR "$out_dir"
342 setenv CUSTOM_TARGET_LINKER "${golem_run_path}${root_dir}/system/bin/linker${bit64_suffix}"
  /external/libxml2/os400/
initscript.sh 29 setenv() function
45 setenv TARGETLIB 'LIBXML2' # Target OS/400 program library.
46 setenv STATBNDDIR 'LIBXML2_A' # Static binding directory.
47 setenv DYNBNDDIR 'LIBXML2' # Dynamic binding directory.
48 setenv SRVPGM "LIBXML2" # Service program.
49 setenv TGTCCSID '500' # Target CCSID of objects.
50 setenv DEBUG '*ALL' # Debug level.
51 setenv OPTIMIZE '10' # Optimisation level.
52 setenv OUTPUT '*NONE' # Compilation output option.
53 setenv TGTRLS 'V6R1M0' # Target OS release
    [all...]
  /external/curl/packages/OS400/
initscript.sh 4 setenv() function
45 setenv TARGETLIB 'CURL' # Target OS/400 program library.
46 setenv STATBNDDIR 'CURL_A' # Static binding directory.
47 setenv DYNBNDDIR 'CURL' # Dynamic binding directory.
48 setenv SRVPGM "CURL.${SONAME}" # Service program.
49 setenv TGTCCSID '500' # Target CCSID of objects.
50 setenv DEBUG '*ALL' # Debug level.
51 setenv OPTIMIZE '10' # Optimisation level
52 setenv OUTPUT '*NONE' # Compilation output option.
53 setenv TGTRLS 'V6R1M0' # Target OS release
    [all...]
  /bionic/libc/upstream-openbsd/lib/libc/stdlib/
setenv.c 1 /* $OpenBSD: setenv.c,v 1.16 2015/09/13 08:31:47 guenther Exp $ */
85 * setenv --
90 setenv(const char *name, const char *value, int rewrite) function
149 DEF_WEAK(setenv); variable
  /device/linaro/bootloader/edk2/StdLib/LibC/StdLib/
Environs.c 210 setenv ( function
  /external/devlib/devlib/utils/
uboot.py 74 def setenv(self, variable, value, force=False): member in class:UbootMenu
77 command = 'setenv{} {} {}'.format(force_str, variable, value)
79 command = 'setenv{} {}'.format(force_str, variable)
  /toolchain/binutils/binutils-2.27/libiberty/
setenv.c 3 This file based on setenv.c in the GNU C Library.
23 @deftypefn Supplemental int setenv (const char *@var{name}, @
27 @code{setenv} adds @var{name} to the environment with value
41 #define setenv libiberty_setenv macro
67 #undef setenv macro
83 setenv (const char *name, const char *value, int replace) function
  /external/gflags/src/
windows_port.h 80 inline void setenv(const char* name, const char* value, int) { function
  /system/core/adb/
sysdeps.h 276 #define setenv setenv_utf8_not_yet_implemented macro
  /external/libjpeg-turbo/
turbojpeg-jni.c 67 #define setenv(envvar, value, dummy) _putenv_s(envvar, value) macro
77 setenv(envvar, value, 1); \
    [all...]
  /libcore/luni/src/main/java/android/system/
Os.java 484 * See <a href="http://man7.org/linux/man-pages/man3/setenv.3.html">setenv(3)</a>.
486 public static void setenv(String name, String value, boolean overwrite) throws ErrnoException { Libcore.os.setenv(name, value, overwrite); } method in class:Os
  /libcore/luni/src/main/java/libcore/io/
ForwardingOs.java 161 public void setenv(String name, String value, boolean overwrite) throws ErrnoException { os.setenv(name, value, overwrite); } method in class:ForwardingOs
Linux.java 235 public native void setenv(String name, String value, boolean overwrite) throws ErrnoException; method in class:Linux
Os.java 148 public void setenv(String name, String value, boolean overwrite) throws ErrnoException; method in interface:Os
  /external/libevent/test/
regress.c 2584 static void setenv(const char *k, const char *v, int o_) function
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/go/
go_test.go 197 os.Setenv("CCACHE_DIR", filepath.Join(home, ".ccache"))
199 os.Setenv("HOME", "/test-go-home-does-not-exist")
201 os.Setenv("GOCACHE", "off") // because $HOME is gone
312 tg.setenv("PWD", abs)
323 // setenv sets an environment variable to use when running the test go
325 func (tg *testgoData) setenv(name, val string) { func
328 tg.t.Fatalf("internal testsuite error: call to setenv with testdata (%s=%s) after parallel", name, val)
378 tg.setenv("GOROOT", testGOROOT)
775 tg.setenv("PATH", fmt.Sprintf("%v%c%v", fail, filepath.ListSeparator, os.Getenv("PATH")))
783 tg.setenv("GOPATH", filepath.Join(tg.pwd(), "testdata")
    [all...]
  /prebuilts/go/linux-x86/src/cmd/go/
go_test.go 197 os.Setenv("CCACHE_DIR", filepath.Join(home, ".ccache"))
199 os.Setenv("HOME", "/test-go-home-does-not-exist")
201 os.Setenv("GOCACHE", "off") // because $HOME is gone
312 tg.setenv("PWD", abs)
323 // setenv sets an environment variable to use when running the test go
325 func (tg *testgoData) setenv(name, val string) { func
328 tg.t.Fatalf("internal testsuite error: call to setenv with testdata (%s=%s) after parallel", name, val)
378 tg.setenv("GOROOT", testGOROOT)
775 tg.setenv("PATH", fmt.Sprintf("%v%c%v", fail, filepath.ListSeparator, os.Getenv("PATH")))
783 tg.setenv("GOPATH", filepath.Join(tg.pwd(), "testdata")
    [all...]
  /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 
android-all-8.0.0_r4-robolectric-0.jar 
android-all-8.0.0_r4-robolectric-r1.jar 

Completed in 125 milliseconds

1 2