HomeSort by: relevance | last modified time | path
    Searched refs:uv_fs_open (Results 1 - 14 of 14) sorted by relevancy

  /src/external/mit/libuv/dist/docs/code/uvcat/
main.c 55 uv_fs_open(uv_default_loop(), &open_req, argv[1], O_RDONLY, 0, on_open);
  /src/external/mit/libuv/dist/test/
test-fs.c 434 ASSERT_EQ(req->fs_type, UV_FS_OPEN);
452 ASSERT_EQ(req->fs_type, UV_FS_OPEN);
502 ASSERT_EQ(req->fs_type, UV_FS_OPEN);
710 ASSERT_EQ(req->fs_type, UV_FS_OPEN);
717 ASSERT_EQ(req->fs_type, UV_FS_OPEN);
724 ASSERT_EQ(req->fs_type, UV_FS_OPEN);
737 r = uv_fs_open(NULL, &req, "does_not_exist", UV_FS_O_RDONLY, 0, NULL);
742 r = uv_fs_open(loop, &req, "does_not_exist", UV_FS_O_RDONLY, 0,
766 r = uv_fs_open(NULL, &req, name, UV_FS_O_RDONLY, 0, NULL);
771 r = uv_fs_open(loop, &req, name, UV_FS_O_RDONLY, 0, open_nametoolong_cb)
    [all...]
test-fs-open-flags.c 51 /* Opening the same file multiple times quickly can cause uv_fs_open to fail
90 r = uv_fs_open(NULL, &open_req, empty_file,
104 r = uv_fs_open(NULL, &open_req, dummy_file,
133 r = uv_fs_open(NULL, &open_req, file, flags, S_IWUSR | S_IRUSR, NULL);
139 r = uv_fs_open(NULL, &open_req, file, flags, S_IWUSR | S_IRUSR, NULL);
152 r = uv_fs_open(NULL, &open_req, file, flags, S_IWUSR | S_IRUSR, NULL);
181 r = uv_fs_open(NULL, &open_req, file, UV_FS_O_RDONLY, S_IWUSR | S_IRUSR, NULL);
test-metrics.c 217 ASSERT_OK(uv_fs_open(uv_default_loop(),
331 fd = uv_fs_open(NULL,
test-fs-readdir.c 360 r = uv_fs_open(uv_default_loop(),
374 r = uv_fs_open(uv_default_loop(),
test-fs-copyfile.c 83 r = uv_fs_open(NULL, &req, name,
test-spawn.c 328 r = uv_fs_open(NULL, &fs_req, "stdout_file", UV_FS_O_CREAT | UV_FS_O_RDWR,
382 r = uv_fs_open(NULL, &fs_req, "stdout_file", UV_FS_O_CREAT | UV_FS_O_RDWR,
440 r = uv_fs_open(NULL,
507 r = uv_fs_open(NULL,
519 r = uv_fs_open(NULL, &fs_req, "stderr_file", O_CREAT | O_RDWR,
1686 r = uv_fs_open(NULL, &fs_req, dev_null, UV_FS_O_RDWR, 0, NULL);
test-fork.c 425 r = uv_fs_open(NULL, &req, name, O_WRONLY | O_CREAT, S_IWUSR | S_IRUSR, NULL);
441 r = uv_fs_open(NULL, &req, name, O_RDWR, 0, NULL);
test-threadpool-cancel.c 108 case UV_FS_OPEN:
343 ASSERT_OK(uv_fs_open(loop, reqs + n++, "/", 0, 0, fs_cb));
test-fs-event.c 73 r = uv_fs_open(NULL, &req, name, UV_FS_O_WRONLY | UV_FS_O_CREAT,
106 r = uv_fs_open(NULL, &req, name, UV_FS_O_RDWR, 0, NULL);
  /src/external/mit/libuv/dist/docs/code/uvtee/
main.c 71 int fd = uv_fs_open(loop, &file_req, argv[1], O_CREAT | O_RDWR, 0644, NULL);
  /src/external/mit/libuv/dist/src/unix/
fs.c 1244 srcfd = uv_fs_open(NULL, &fs_req, req->path, O_RDONLY, 0, NULL);
1262 dstfd = uv_fs_open(NULL,
1999 int uv_fs_open(uv_loop_t* loop, function
  /src/external/mit/libuv/dist/include/
uv.h 1397 UV_FS_OPEN,
1467 UV_EXTERN int uv_fs_open(uv_loop_t* loop,
  /src/external/mit/libuv/dist/src/win/
fs.c 3224 int uv_fs_open(uv_loop_t* loop, uv_fs_t* req, const char* path, int flags, function
3228 INIT(UV_FS_OPEN);

Completed in 36 milliseconds