Home
last modified time | relevance | path

Searched refs:uv_os_homedir (Results 1 – 9 of 9) sorted by relevance

/third_party/libuv/test/
Dtest-homedir.c38 r = uv_os_homedir(homedir, &len); in TEST_IMPL()
58 r = uv_os_homedir(homedir, &len); in TEST_IMPL()
63 r = uv_os_homedir(NULL, &len); in TEST_IMPL()
65 r = uv_os_homedir(homedir, NULL); in TEST_IMPL()
68 r = uv_os_homedir(homedir, &len); in TEST_IMPL()
/third_party/libuv/docs/src/
Dmisc.rst489 .. c:function:: int uv_os_homedir(char* buffer, size_t* size)
491 Gets the current user's home directory. On Windows, `uv_os_homedir()` first
495 `uv_os_homedir()` first checks the `HOME` environment variable using
497 user's home directory is stored in `buffer`. When `uv_os_homedir()` is
503 `uv_os_homedir()` is not thread safe.
/third_party/node/src/
Dnode_os.cc246 const int err = uv_os_homedir(buf, &len); in GetHomeDirectory()
/third_party/libuv/src/unix/
Dcore.c1069 int uv_os_homedir(char* buffer, size_t* size) { in uv_os_homedir() function
/third_party/libuv/src/win/
Dutil.c1082 int uv_os_homedir(char* buffer, size_t* size) { in uv_os_homedir() function
/third_party/libuv/include/uv_ndk/
Duv.h1204 UV_EXTERN int uv_os_homedir(char* buffer, size_t* size);
/third_party/libuv/include/
Duv.h1230 UV_EXTERN int uv_os_homedir(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)
3383 * unix,win: add uv_os_homedir() (cjihrig)
/third_party/node/doc/changelogs/
DCHANGELOG_IOJS.md891 * Add `uv_os_homedir()` (exposed as `os.homedir()`, see below)