Searched refs:uv_os_getenv (Results 1 – 10 of 10) sorted by relevance
/third_party/libuv/test/ |
D | test-env-vars.c | 46 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()
|
D | test-fs.c | 2379 r = uv_os_getenv("LOCALAPPDATA", localappdata, &len); in TEST_IMPL()
|
/third_party/node/src/ |
D | node_env_var.cc | 88 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()
|
D | node_credentials.cc | 62 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/ |
D | core.c | 1077 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/ |
D | util.c | 1090 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/ |
D | uv.h | 1261 UV_EXTERN int uv_os_getenv(const char* name, char* buffer, size_t* size);
|
/third_party/libuv/include/uv_ndk/ |
D | uv.h | 1246 UV_EXTERN int uv_os_getenv(const char* name, char* buffer, size_t* size);
|
/third_party/libuv/docs/src/ |
D | misc.rst | 629 .. c:function:: int uv_os_getenv(const char* name, char* buffer, size_t* size)
|
/third_party/libuv/ |
D | ChangeLog | 1853 * win: update uv_os_homedir() to use uv_os_getenv() (cjihrig) 1861 * unix: refactor uv_os_homedir to use uv_os_getenv (Santiago Gimeno)
|