Home
last modified time | relevance | path

Searched refs:close_req (Results 1 – 8 of 8) sorted by relevance

/third_party/libuv/test/
Dtest-fs-open-flags.c40 static uv_fs_t close_req; variable
96 r = uv_fs_close(NULL, &close_req, open_req.result, NULL); in refresh()
98 ASSERT(close_req.result == 0); in refresh()
99 uv_fs_req_cleanup(&close_req); in refresh()
116 r = uv_fs_close(NULL, &close_req, open_req.result, NULL); in refresh()
118 ASSERT(close_req.result == 0); in refresh()
119 uv_fs_req_cleanup(&close_req); in refresh()
175 r = uv_fs_close(NULL, &close_req, open_req.result, NULL); in writeExpect()
177 ASSERT(close_req.result == 0); in writeExpect()
178 uv_fs_req_cleanup(&close_req); in writeExpect()
[all …]
Dtest-fs.c104 static uv_fs_t close_req; variable
376 ASSERT(req == &close_req); in close_cb()
395 r = uv_fs_close(loop, &close_req, open_req1.result, close_cb); in ftruncate_cb()
416 r = uv_fs_close(loop, &close_req, open_req1.result, close_cb); in read_cb()
461 r = uv_fs_close(loop, &close_req, open_req1.result, close_cb); in fsync_cb()
995 r = uv_fs_close(NULL, &close_req, open_req1.result, NULL); in fs_file_sync()
997 ASSERT(close_req.result == 0); in fs_file_sync()
998 uv_fs_req_cleanup(&close_req); in fs_file_sync()
1017 r = uv_fs_close(NULL, &close_req, open_req1.result, NULL); in fs_file_sync()
1019 ASSERT(close_req.result == 0); in fs_file_sync()
[all …]
Dtest-fs-readdir.c349 uv_fs_t close_req; in TEST_IMPL() local
367 &close_req, in TEST_IMPL()
371 uv_fs_req_cleanup(&close_req); in TEST_IMPL()
381 &close_req, in TEST_IMPL()
385 uv_fs_req_cleanup(&close_req); in TEST_IMPL()
/third_party/libuv/docs/code/uvcat/
Dmain.c31 uv_fs_t close_req; in on_read() local
33 uv_fs_close(uv_default_loop(), &close_req, open_req.result, NULL); in on_read()
/third_party/node/src/
Dutil.cc238 uv_fs_t close_req; in ReadFileSync() local
239 CHECK_EQ(0, uv_fs_close(nullptr, &close_req, file, nullptr)); in ReadFileSync()
240 uv_fs_req_cleanup(&close_req); in ReadFileSync()
Denv.cc687 uv_fs_t close_req; in RunCleanup() local
688 uv_fs_close(nullptr, &close_req, fd, nullptr); in RunCleanup()
689 uv_fs_req_cleanup(&close_req); in RunCleanup()
Dnode_file.cc216 uv_fs_t close_req; in ~TransferData() local
217 CHECK_EQ(0, uv_fs_close(nullptr, &close_req, fd_, nullptr)); in ~TransferData()
218 uv_fs_req_cleanup(&close_req); in ~TransferData()
916 uv_fs_t close_req; in InternalModuleReadJSON() local
917 CHECK_EQ(0, uv_fs_close(loop, &close_req, fd, nullptr)); in InternalModuleReadJSON()
918 uv_fs_req_cleanup(&close_req); in InternalModuleReadJSON()
/third_party/ffmpeg/libavformat/
Dudp.c105 int close_req; member
551 if (s->close_req) in circular_buffer_task_tx()
1065 s->close_req = 1; in udp_close()