Searched refs:tmo (Results 1 – 2 of 2) sorted by relevance
/PHP-7.4/sapi/phpdbg/ |
H A D | phpdbg_io.h | 31 PHPDBG_API int phpdbg_consume_bytes(int sock, char *ptr, int len, int tmo); 33 PHPDBG_API int phpdbg_mixed_read(int sock, char *ptr, int len, int tmo);
|
H A D | phpdbg_io.c | 98 PHPDBG_API int phpdbg_consume_bytes(int sock, char *ptr, int len, int tmo) { argument 104 if (tmo < 0) goto recv_once; 108 j = poll(&pfd, 1, tmo); 115 if (tmo < 0) goto recv_once; 120 ttmo.tv_usec = tmo*1000; 131 if (tmo < 0) { 179 PHPDBG_API int phpdbg_mixed_read(int sock, char *ptr, int len, int tmo) { argument 183 return phpdbg_consume_bytes(sock, ptr, len, tmo);
|
Completed in 8 milliseconds