Searched defs:toReadNow (Results 1 - 1 of 1) sorted by relevance

/ast/src/lib/libtksh/tcl/
H A DtclIOCmd.c305 int toReadNow; /* How many bytes to attempt to
370 toReadNow = toRead - charactersRead;
371 if (toReadNow > bufSize) {
372 toReadNow = bufSize;
374 Tcl_DStringSetLength(&ds, charactersRead + toReadNow);
376 Tcl_Read(chan, Tcl_DStringValue(&ds) + charactersRead, toReadNow);
391 if (charactersReadNow < toReadNow) {
445 int actuallyRead, actuallyWritten, totalRead, toReadNow, mode;
490 toReadNow = requested;
491 if (toReadNow > TCL_READ_CHUNK_SIZ
301 int toReadNow; /* How many bytes to attempt to local
440 int actuallyRead, actuallyWritten, totalRead, toReadNow, mode; local
[all...]

Completed in 481 milliseconds