Home | History | Annotate | Download | only in channel

Lines Matching refs:copylen

933 			int copylen = 0;
978 copylen = (stdoutAvail > len) ? len : stdoutAvail;
979 System.arraycopy(c.stdoutBuffer, c.stdoutReadpos, target, off, copylen);
980 c.stdoutReadpos += copylen;
992 copylen = (stderrAvail > len) ? len : stderrAvail;
993 System.arraycopy(c.stderrBuffer, c.stderrReadpos, target, off, copylen);
994 c.stderrReadpos += copylen;
1006 return copylen;
1051 return copylen;