Lines Matching refs:event
159 /* Create another file on a different event loop tick. We do it this way
160 * to avoid fs events coalescing into one fs event. */
185 /* Remove another file on a different event loop tick. We do it this way
186 * to avoid fs events coalescing into one fs event. */
235 /* Create another file on a different event loop tick. We do it this way
236 * to avoid fs events coalescing into one fs event. */
261 /* Remove another file on a different event loop tick. We do it this way
262 * to avoid fs events coalescing into one fs event. */
283 /* It may happen that the "subdir" creation event is captured even though
726 /* FSEvents on macOS sometimes sends one change event, sometimes two. */
895 /* Generate an fs event. */
929 /* Generate an fs event. */
932 /* Allow time for the remove event to propagate to the pending list. */
1111 uv_fs_event_t* event;
1125 event = &events[i];
1129 ASSERT_OK(uv_fs_event_init(loop, event));
1130 ASSERT_OK(uv_fs_event_start(event,
1134 uv_unref((uv_handle_t*) event);
1152 event = &events[i];
1154 ASSERT_OK(uv_fs_event_stop(event));
1155 uv_ref((uv_handle_t*) event);
1156 uv_close((uv_handle_t*) event, fs_event_error_report_close_cb);