Searched refs:uv_os_tmpdir (Results 1 – 6 of 6) sorted by relevance
/libuv/test/ |
H A D | test-tmpdir.c | 40 r = uv_os_tmpdir(tmpdir, &len); in TEST_IMPL() 57 r = uv_os_tmpdir(tmpdir, &len); in TEST_IMPL() 62 r = uv_os_tmpdir(NULL, &len); in TEST_IMPL() 64 r = uv_os_tmpdir(tmpdir, NULL); in TEST_IMPL() 67 r = uv_os_tmpdir(tmpdir, &len); in TEST_IMPL() 77 r = uv_os_tmpdir(tmpdirx, &lenx); in TEST_IMPL() 84 r = uv_os_tmpdir(tmpdir, &len); in TEST_IMPL()
|
/libuv/docs/src/ |
H A D | misc.rst | 552 .. c:function:: int uv_os_tmpdir(char* buffer, size_t* size) 554 Gets the temp directory. On Windows, `uv_os_tmpdir()` uses `GetTempPathW()`. 555 On all other operating systems, `uv_os_tmpdir()` uses the first environment 559 `uv_os_tmpdir()` is called, `size` indicates the maximum size of `buffer`. 565 `uv_os_tmpdir()` is not thread safe.
|
/libuv/src/win/ |
H A D | util.c | 974 int uv_os_tmpdir(char* buffer, size_t* size) { in uv_os_tmpdir() function
|
/libuv/src/unix/ |
H A D | core.c | 1162 int uv_os_tmpdir(char* buffer, size_t* size) { in uv_os_tmpdir() function
|
/libuv/include/ |
H A D | uv.h | 1294 UV_EXTERN int uv_os_tmpdir(char* buffer, size_t* size);
|
/libuv/ |
H A D | ChangeLog | 176 * win: fix env var in uv_os_homedir and uv_os_tmpdir (Hüseyin Açacak) 2069 * win: fix uv_os_tmpdir when env var is 260 chars (Mustafa M) 3867 * unix,win: add uv_os_tmpdir() (cjihrig)
|
Completed in 40 milliseconds