Home
last modified time | relevance | path

Searched refs:uv_os_getenv (Results 1 – 10 of 10) sorted by relevance

/third_party/libuv/test/
Dtest-env-vars.c46 r = uv_os_getenv(NULL, buf, &size); in TEST_IMPL()
48 r = uv_os_getenv(name, NULL, &size); in TEST_IMPL()
50 r = uv_os_getenv(name, buf, NULL); in TEST_IMPL()
53 r = uv_os_getenv(name, buf, &size); in TEST_IMPL()
67 r = uv_os_getenv(name, buf, &size); in TEST_IMPL()
75 r = uv_os_getenv(name, buf, &size); in TEST_IMPL()
84 r = uv_os_getenv(name, buf, &size); in TEST_IMPL()
95 r = uv_os_getenv(name, buf, &size); in TEST_IMPL()
159 ASSERT_EQ(0, uv_os_getenv(name, p, &size)); in TEST_IMPL()
Dtest-fs.c2379 r = uv_os_getenv("LOCALAPPDATA", localappdata, &len); in TEST_IMPL()
/third_party/node/src/
Dnode_env_var.cc88 int ret = uv_os_getenv(key, *val, &init_sz); in Get()
94 ret = uv_os_getenv(key, *val, &init_sz); in Get()
138 int ret = uv_os_getenv(key, val, &init_sz); in Query()
Dnode_credentials.cc62 int ret = uv_os_getenv(key, *val, &init_sz); in SafeGetenv()
68 ret = uv_os_getenv(key, *val, &init_sz); in SafeGetenv()
/third_party/libuv/src/unix/
Dcore.c1077 r = uv_os_getenv("HOME", buffer, size); in uv_os_homedir()
1323 int uv_os_getenv(const char* name, char* buffer, size_t* size) { in uv_os_getenv() function
/third_party/libuv/src/win/
Dutil.c1090 r = uv_os_getenv("USERPROFILE", buffer, size); in uv_os_homedir()
1440 int uv_os_getenv(const char* name, char* buffer, size_t* size) { in uv_os_getenv() function
/third_party/libuv/include/
Duv.h1261 UV_EXTERN int uv_os_getenv(const char* name, char* buffer, size_t* size);
/third_party/libuv/include/uv_ndk/
Duv.h1246 UV_EXTERN int uv_os_getenv(const char* name, char* buffer, size_t* size);
/third_party/libuv/docs/src/
Dmisc.rst629 .. c:function:: int uv_os_getenv(const char* name, char* buffer, size_t* size)
/third_party/libuv/
DChangeLog1853 * win: update uv_os_homedir() to use uv_os_getenv() (cjihrig)
1861 * unix: refactor uv_os_homedir to use uv_os_getenv (Santiago Gimeno)