| /src/external/mit/libuv/dist/docs/code/uvcat/ |
| main.c | 9 uv_fs_t read_req; variable 21 uv_fs_read(uv_default_loop(), &read_req, open_req.result, &iov, 1, -1, on_read); local 46 uv_fs_read(uv_default_loop(), &read_req, req->result, local 59 uv_fs_req_cleanup(&read_req);
|
| /src/external/mit/libuv/dist/test/ |
| test-eintr-handling.c | 37 static uv_fs_t read_req; variable 79 nread = uv_fs_read(loop, &read_req, pipe_fds[0], &iov, 1, -1, NULL);
|
| test-fs-open-flags.c | 43 static uv_fs_t read_req; variable 187 r = uv_fs_read(NULL, &read_req, open_req.result, &iov, 1, -1, NULL); 189 ASSERT_EQ(read_req.result, size); 191 uv_fs_req_cleanup(&read_req); 232 r = uv_fs_read(NULL, &read_req, open_req.result, &iov, 1, -1, NULL); 234 ASSERT_EQ(read_req.result, size); 236 uv_fs_req_cleanup(&read_req); 252 r = uv_fs_read(NULL, &read_req, open_req.result, &iov, 1, -1, NULL); 254 ASSERT_EQ(read_req.result, error); 255 uv_fs_req_cleanup(&read_req); [all...] |
| test-fs.c | 120 static uv_fs_t read_req; variable 414 ASSERT_PTR_EQ(req, &read_req); 445 r = uv_fs_read(loop, &read_req, open_req1.result, &iov, 1, -1, 1053 r = uv_fs_read(NULL, &read_req, open_req1.result, &iov, 1, -1, NULL); 1055 ASSERT_GE(read_req.result, 0); 1057 uv_fs_req_cleanup(&read_req); 1082 r = uv_fs_read(NULL, &read_req, open_req1.result, &iov, 1, -1, NULL); 1084 ASSERT_GE(read_req.result, 0); 1086 uv_fs_req_cleanup(&read_req); 3315 r = uv_fs_read(NULL, &read_req, open_req1.result, &iov, 1, -1, NULL) [all...] |