/external/bison/m4/ |
setenv.m4 | 70 AC_CHECK_DECLS_ONCE([unsetenv]) 74 AC_CHECK_FUNCS([unsetenv]) 80 AC_CACHE_CHECK([for unsetenv() return type], [gt_cv_func_unsetenv_ret], 85 #define _BSD 1 /* unhide unsetenv declaration in OSF/1 5.1 <stdlib.h> */ 91 int unsetenv (const char *name); 97 AC_DEFINE([VOID_UNSETENV], [1], [Define to 1 if unsetenv returns void 102 dnl Solaris 10 unsetenv does not remove all copies of a name. 103 dnl Haiku alpha 2 unsetenv gets confused by assignment to environ. 104 dnl OpenBSD 4.7 unsetenv("") does not fail. 105 AC_CACHE_CHECK([whether unsetenv obeys POSIX] [all...] |
/external/bison/lib/ |
unsetenv.c | 51 # define unsetenv __unsetenv macro 57 unsetenv (const char *name) function 93 # undef unsetenv macro 94 weak_alias (__unsetenv, unsetenv) 99 # undef unsetenv 102 extern void unsetenv (const char *); 104 extern int unsetenv (const char *); 108 /* Call the underlying unsetenv, in case there is hidden bookkeeping 123 unsetenv (name);
|
stdlib.in.h | 897 # undef unsetenv 898 # define unsetenv rpl_unsetenv 900 _GL_FUNCDECL_RPL (unsetenv, int, (const char *name) _GL_ARG_NONNULL ((1))); 901 _GL_CXXALIAS_RPL (unsetenv, int, (const char *name)); 904 _GL_FUNCDECL_SYS (unsetenv, int, (const char *name) _GL_ARG_NONNULL ((1))); 906 _GL_CXXALIAS_SYS (unsetenv, int, (const char *name)); 909 _GL_CXXALIASWARN (unsetenv); 912 # undef unsetenv 914 _GL_WARN_ON_USE (unsetenv, "unsetenv is unportable - [all...] |
/external/chromium_org/base/ |
os_compat_nacl.cc | 24 unsetenv("TZ");
|
/external/libffi/testsuite/lib/ |
target-libpath.exp | 206 unsetenv LD_LIBRARY_PATH 211 unsetenv LD_RUN_PATH 216 unsetenv SHLIB_PATH 221 unsetenv LD_LIBRARYN32_PATH 226 unsetenv LD_LIBRARY64_PATH 231 unsetenv LD_LIBRARY_PATH_32 236 unsetenv LD_LIBRARY_PATH_64 241 unsetenv DYLD_LIBRARY_PATH
|
/external/chromium_org/tools/gyp/test/cflags/ |
gyptest-cflags.py | 40 # case the platform doesn't support unsetenv. 59 # case the platform doesn't support unsetenv. 80 # case the platform doesn't support unsetenv. 97 # case the platform doesn't support unsetenv.
|
/external/qemu/distrib/sdl-1.2.15/Xcode/ |
uninstall.csh | 29 unsetenv HOME_DIR
|
/external/valgrind/main/memcheck/tests/darwin/ |
env.c | 26 unsetenv("MYVAR");
|
/external/chromium_org/tools/gyp/test/cxxflags/ |
gyptest-cxxflags.py | 36 # case the platform doesn't support unsetenv. 55 # case the platform doesn't support unsetenv.
|
/external/chromium_org/tools/gyp/test/defines/ |
gyptest-defines-env-regyp.py | 25 # case the platform doesn't support unsetenv.
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/test/test_tkinter/ |
test_loadtk.py | 32 # because they don't support unsetenv
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/test/test_tkinter/ |
test_loadtk.py | 32 # because they don't support unsetenv
|
/bionic/libc/stdlib/ |
setenv.c | 90 * unsetenv(name) -- 94 unsetenv(const char *name) function
|
getenv.c | 40 * environmental array, for use by setenv(3) and unsetenv(3).
|
/external/openssh/openbsd-compat/ |
setenv.c | 46 * environmental array, for use by setenv(3) and unsetenv(3). 129 * unsetenv(name) -- 133 unsetenv(const char *name) function
|
bsd-misc.h | 89 void unsetenv(const char *);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
os.py | 400 # Fake unsetenv() for Windows 405 def unsetenv(key): function 425 unsetenv 431 unsetenv(key) 435 unsetenv(key) 438 unsetenv(key) 490 unsetenv 495 unsetenv(key) 499 unsetenv(key) 502 unsetenv(key [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
os.py | 400 # Fake unsetenv() for Windows 405 def unsetenv(key): function 425 unsetenv 431 unsetenv(key) 435 unsetenv(key) 438 unsetenv(key) 490 unsetenv 495 unsetenv(key) 499 unsetenv(key) 502 unsetenv(key [all...] |
/external/chromium_org/third_party/tcmalloc/chromium/src/ |
symbolize.cc | 190 unsetenv("CPUPROFILE"); 191 unsetenv("HEAPPROFILE"); 192 unsetenv("HEAPCHECK"); 193 unsetenv("PERFTOOLS_VERBOSE");
|
/external/chromium_org/third_party/tcmalloc/vendor/src/ |
symbolize.cc | 190 unsetenv("CPUPROFILE"); 191 unsetenv("HEAPPROFILE"); 192 unsetenv("HEAPCHECK"); 193 unsetenv("PERFTOOLS_VERBOSE");
|
/ndk/sources/host-tools/sed-4.2.1/lib/ |
stdlib.in.h | 307 /* On some systems, unsetenv() returns void. 309 # define unsetenv(name) ((unsetenv)(name), 0) 313 extern int unsetenv (const char *name);
|
/external/bison/darwin-lib/ |
stdlib.h | 1231 _GL_CXXALIASWARN (unsetenv); variable 1234 # undef unsetenv macro [all...] |
/external/bison/linux-lib/ |
stdlib.h | 1231 _GL_CXXALIASWARN (unsetenv); variable 1234 # undef unsetenv macro [all...] |
/external/llvm/unittests/Support/ |
CommandLineTest.cpp | 36 // Assume setenv and unsetenv come together. 37 unsetenv(name);
|
/bionic/libstdc++/include/ |
cstdlib | 52 using ::unsetenv;
|