Home | History | Annotate | Download | only in tests

Lines Matching refs:sysread

237 # eXsysread is a wrapper around perl's sysread() function. This will
238 # repeat the call to sysread() until it has actually read the complete
279 $rc = sysread($FH, $$scalar, $nbytes - $nread, $nread);
289 $rc = sysread($FH, $$scalar, $nbytes - $nread, $nread);
297 logmsg "Warning: retrying sysread() interrupted system call\n";
301 logmsg "Warning: retrying sysread() due to EAGAIN\n";
305 logmsg "Warning: retrying sysread() due to EWOULDBLOCK\n";
308 logmsg "Error: sysread() failure: $!\n";
312 logmsg "Error: sysread() failure: returned negative value $rc\n";
316 logmsg "Error: sysread() failure: read zero bytes\n";
380 $result = sysread($$FH, $$scalar, $length);
385 logmsg "Error: $srvrname server, sysread error: $!\n";
387 "line $lcaller. $srvrname server, sysread error: $!\n";
686 sysread DREAD, $i, 5;
907 while (5 == (sysread \*SFREAD, $line, 5)) {
911 sysread \*SFREAD, $i, 5;
1233 while(5 == (sysread \*SFREAD, $line, 5)) {
1235 sysread \*SFREAD, $line, 5;
2352 while (5 == (sysread DREAD, $line, 5)) {
2355 sysread DREAD, $i, 5;
2529 while(sysread(DREAD, $input, 5)) {