Skip to content

Commit 9c75832

Browse files
authored
fix: Update the Reflector with the ext-uv symbols (#894)
1 parent 9386a0a commit 9c75832

File tree

1 file changed

+144
-12
lines changed

1 file changed

+144
-12
lines changed

src/Symbol/Reflector.php

Lines changed: 144 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -189,18 +189,150 @@ final class Reflector
189189
// https://youtrack.jetbrains.com/issue/WI-74930
190190
'cubrid_current_oid',
191191

192-
// https://youtrack.jetbrains.com/issue/WI-74931
193-
'ctype_alnum',
194-
'ctype_alpha',
195-
'ctype_cntrl',
196-
'ctype_digit',
197-
'ctype_graph',
198-
'ctype_lower',
199-
'ctype_print',
200-
'ctype_punct',
201-
'ctype_space',
202-
'ctype_upper',
203-
'ctype_xdigit',
192+
// https://youtrack.jetbrains.com/issue/WI-74965
193+
'uv_unref',
194+
'uv_last_error',
195+
'uv_err_name',
196+
'uv_strerror',
197+
'uv_ref',
198+
'uv_run',
199+
'uv_run_once',
200+
'uv_loop_delete',
201+
'uv_now',
202+
'uv_tcp_bind',
203+
'uv_tcp_bind6',
204+
'uv_write',
205+
'uv_write2',
206+
'uv_tcp_nodelay',
207+
'uv_accept',
208+
'uv_shutdown',
209+
'uv_close',
210+
'uv_read_start',
211+
'uv_read2_start',
212+
'uv_read_stop',
213+
'uv_ip4_addr',
214+
'uv_ip6_addr',
215+
'uv_listen',
216+
'uv_tcp_connect',
217+
'uv_tcp_connect6',
218+
'uv_timer_init',
219+
'uv_timer_stop',
220+
'uv_timer_again',
221+
'uv_timer_set_repeat',
222+
'uv_timer_get_repeat',
223+
'uv_idle_init',
224+
'uv_idle_start',
225+
'uv_idle_stop',
226+
'uv_get_addrinfo',
227+
'uv_tcp_init',
228+
'uv_default_loop',
229+
'uv_loop_new',
230+
'uv_udp_init',
231+
'uv_udp_bind',
232+
'uv_udp_bind6',
233+
'uv_udp_recv_start',
234+
'uv_udp_recv_stop',
235+
'uv_udp_set_membership',
236+
'uv_udp_set_multicast_loop',
237+
'uv_udp_set_multicast_ttl',
238+
'uv_udp_set_broadcast',
239+
'uv_udp_send',
240+
'uv_udp_send6',
241+
'uv_is_active',
242+
'uv_is_readable',
243+
'uv_is_writeable',
244+
'uv_walk',
245+
'uv_guess_handle',
246+
'uv_handle_type',
247+
'uv_pipe_init',
248+
'uv_pipe_open',
249+
'uv_pipe_bind',
250+
'uv_pipe_connect',
251+
'uv_pipe_pending_instances',
252+
'uv_ares_init_options',
253+
'ares_ghostbyname',
254+
'uv_loadavg',
255+
'uv_uptime',
256+
'uv_get_free_memory',
257+
'uv_get_total_memory',
258+
'uv_hrtime',
259+
'uv_exepath',
260+
'uv_cpu_info',
261+
'uv_interface_addresses',
262+
'uv_stdio_new',
263+
'uv_spawn',
264+
'uv_process_kill',
265+
'uv_kill',
266+
'uv_chdir',
267+
'uv_rwlock_init',
268+
'uv_rwlock_rdlock',
269+
'uv_rwlock_tryrdlock',
270+
'uv_rwlock_rdunlock',
271+
'uv_rwlock_wrlock',
272+
'uv_rwlock_trywrlock',
273+
'uv_rwlock_wrunlock',
274+
'uv_mutex_init',
275+
'uv_mutex_lock',
276+
'uv_mutex_trylock',
277+
'uv_sem_init',
278+
'uv_sem_post',
279+
'uv_sem_wait',
280+
'uv_sem_trywait',
281+
'uv_prepare_init',
282+
'uv_prepare_start',
283+
'uv_prepare_stop',
284+
'uv_check_init',
285+
'uv_check_start',
286+
'uv_check_stop',
287+
'uv_async_init',
288+
'uv_async_asend',
289+
'uv_queue_work',
290+
'uv_fs_open',
291+
'uv_fs_read',
292+
'uv_fs_close',
293+
'uv_fs_write',
294+
'uv_fs_fsync',
295+
'uv_fs_fdatasync',
296+
'uv_fs_ftruncate',
297+
'uv_fs_mkdir',
298+
'uv_fs_rmdir',
299+
'uv_fs_unlink',
300+
'uv_fs_rename',
301+
'uv_fs_utime',
302+
'uv_fs_futime',
303+
'uv_fs_chmod',
304+
'uv_fs_fchmod',
305+
'uv_fs_chown',
306+
'uv_fs_fchown',
307+
'uv_fs_link',
308+
'uv_fs_symlink',
309+
'uv_fs_readlink',
310+
'uv_fs_stat',
311+
'uv_fs_lstat',
312+
'uv_fs_fstat',
313+
'uv_fs_readdir',
314+
'uv_fs_sendfile',
315+
'uv_fs_event_init',
316+
'uv_tty_init',
317+
'uv_tty_get_winsize',
318+
'uv_tty_set_mode',
319+
'uv_tty_reset_mode',
320+
'uv_tcp_getsockname',
321+
'uv_tcp_getpeername',
322+
'uv_udp_getsockname',
323+
'uv_resident_set_memory',
324+
'uv_ip4_name',
325+
'uv_ip6_name',
326+
'uv_poll_init',
327+
'uv_poll_start',
328+
'uv_poll_stop',
329+
'uv_fs_poll_init',
330+
'uv_fs_poll_start',
331+
'uv_fs_poll_stop',
332+
'uv_stop',
333+
'uv_signal_init',
334+
'uv_signal_start',
335+
'uv_signal_stop',
204336
];
205337

206338
/**

0 commit comments

Comments
 (0)