Home
last modified time | relevance | path

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

/third_party/libuv/test/
Dtest-fs.c1275 r = uv_fs_mkstemp(loop, &mkstemp_req1, path_template, mkstemp_cb); in TEST_IMPL()
1282 r = uv_fs_mkstemp(NULL, &mkstemp_req2, path_template, NULL); in TEST_IMPL()
1290 ASSERT_EQ(UV_EINVAL, uv_fs_mkstemp(NULL, &mkstemp_req3, "test_file", NULL)); in TEST_IMPL()
3969 r = uv_fs_mkstemp(NULL, NULL, NULL, NULL); in TEST_IMPL()
/third_party/libuv/docs/src/guide/
Dfilesystem.rst135 int uv_fs_mkstemp(uv_loop_t* loop, uv_fs_t* req, const char* tpl, uv_fs_cb cb);
/third_party/libuv/include/
Duv.h1412 UV_EXTERN int uv_fs_mkstemp(uv_loop_t* loop,
/third_party/libuv/include/uv_ndk/
Duv.h1395 UV_EXTERN int uv_fs_mkstemp(uv_loop_t* loop,
/third_party/libuv/docs/src/
Dfs.rst252 .. c:function:: int uv_fs_mkstemp(uv_loop_t* loop, uv_fs_t* req, const char* tpl, uv_fs_cb cb)
/third_party/libuv/src/unix/
Dfs.c1970 int uv_fs_mkstemp(uv_loop_t* loop, in uv_fs_mkstemp() function
/third_party/libuv/src/win/
Dfs.c3027 int uv_fs_mkstemp(uv_loop_t* loop, in uv_fs_mkstemp() function
/third_party/libuv/
DChangeLog542 * fs: clobber req->path on uv_fs_mkstemp() error (tjarlama)
968 * fs: add uv_fs_mkstemp (Saúl Ibarra Corretgé)
/third_party/node/doc/changelogs/
DCHANGELOG_V12.md632 `uv_fs_mkstemp()`.