Searched refs:toRead (Results 1 - 6 of 6) sorted by relevance

/ast/src/lib/libtksh/tcl/
H A DtclUnixFile.c323 TclReadFile(file, shouldBlock, buf, toRead)
327 int toRead; /* Number of characters to read. */
336 return read(fd, buf, (size_t) toRead);
H A DtclUnixChan.c107 char *buf, int toRead, int *errorCode));
126 char *buf, int toRead, int *errorCode));
145 char *buf, int toRead, int *errorCode));
336 FileInputProc(instanceData, buf, toRead, errorCodePtr)
339 int toRead; /* How much space is available
358 bytesRead = read(fd, buf, (size_t) toRead);
897 PipeInputProc(instanceData, buf, toRead, errorCodePtr)
900 int toRead; /* How much space is available
919 bytesRead = read(fd, buf, (size_t) toRead);
H A DtclIOCmd.c304 int toRead; /* How many bytes to read? */
352 toRead = INT_MAX;
355 if (Tcl_GetInt(interp, argv[i], &toRead) != TCL_OK) {
369 for (charactersRead = 0; charactersRead < toRead; ) {
370 toReadNow = toRead - charactersRead;
300 int toRead; /* How many bytes to read? */ local
/ast/src/lib/libtk/generic/
H A DtkConsole.c44 char *buf, int toRead, int *errorCode));
/ast/src/lib/libtksh/src/
H A DtclIO.c2984 int toRead; /* How much to read? */
3010 toRead = bufPtr->bufSize - bufPtr->nextAdded;
3022 toRead = bufPtr->bufSize;
3044 toRead, &result);
3078 if (nread < toRead) {
3610 Tcl_Read(chan, bufPtr, toRead)
3613 int toRead; /* Maximum number of characters to read. */
3657 for (copied = 0; copied < toRead; copied += copiedNow) {
3659 toRead - copied);
3681 copied = sfread(chanPtr->sfPtr, bufPtr, toRead);
[all...]
/ast/src/lib/libtksh/include/
H A Dtcl.h656 char *buf, int toRead, int *errorCodePtr));
1031 char *bufPtr, int toRead));

Completed in 263 milliseconds