Searched refs:tmo (Results 1 – 2 of 2) sorted by relevance
/PHP-8.0/sapi/phpdbg/ |
H A D | phpdbg_io.h | 29 PHPDBG_API int phpdbg_consume_bytes(int sock, char *ptr, int len, int tmo); 31 PHPDBG_API int phpdbg_mixed_read(int sock, char *ptr, int len, int tmo);
|
H A D | phpdbg_io.c | 96 PHPDBG_API int phpdbg_consume_bytes(int sock, char *ptr, int len, int tmo) { argument 102 if (tmo < 0) goto recv_once; 106 j = poll(&pfd, 1, tmo); 113 if (tmo < 0) goto recv_once; 118 ttmo.tv_usec = tmo*1000; 129 if (tmo < 0) { 177 PHPDBG_API int phpdbg_mixed_read(int sock, char *ptr, int len, int tmo) { argument 181 return phpdbg_consume_bytes(sock, ptr, len, tmo);
|
Completed in 5 milliseconds