Home
last modified time | relevance | path

Searched refs:close_req (Results 1 – 9 of 9) 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.c101 static uv_fs_t close_req; variable
322 ASSERT(req == &close_req); in close_cb()
341 r = uv_fs_close(loop, &close_req, open_req1.result, close_cb); in ftruncate_cb()
362 r = uv_fs_close(loop, &close_req, open_req1.result, close_cb); in read_cb()
407 r = uv_fs_close(loop, &close_req, open_req1.result, close_cb); in fsync_cb()
941 r = uv_fs_close(NULL, &close_req, open_req1.result, NULL); in fs_file_sync()
943 ASSERT(close_req.result == 0); in fs_file_sync()
944 uv_fs_req_cleanup(&close_req); in fs_file_sync()
963 r = uv_fs_close(NULL, &close_req, open_req1.result, NULL); in fs_file_sync()
965 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/mesa3d/src/freedreno/drm/
Dmsm_device.c88 struct drm_gem_close close_req = { in msm_device_new() local
91 drmIoctl(fd, DRM_IOCTL_GEM_CLOSE, &close_req); in msm_device_new()
/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()
1079 s->close_req = 1; in udp_close()