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

/ast/src/lib/libtksh/tcl/
H A DtclUnixChan.c569 * present on the channel.
573 * TCL_EXCEPTION to indicate which events of interest are present.
589 int present = 0;
592 present |= Tcl_FileReady(fsPtr->inFile, TCL_READABLE);
595 present |= Tcl_FileReady(fsPtr->outFile, TCL_WRITABLE);
599 present |= Tcl_FileReady(fsPtr->inFile, TCL_EXCEPTION);
602 present |= Tcl_FileReady(fsPtr->outFile, TCL_EXCEPTION);
605 return present;
618 * The appropriate Tcl_File or NULL if not present.
1019 * present o
582 int present = 0; local
1024 int present = 0; local
[all...]
H A DtclEvent.c240 int present; /* Conditions present on the file during member in struct:FileWait
243 * the desired conditions is present or the
2173 * that are present on file at the time of the return. This
2199 int present;
2242 present = Tcl_FileReady(file, mask);
2243 if (present != 0) {
2256 return present;
2166 int present; local
/ast/src/lib/libtksh/src/
H A DtclIO.c1491 * will not be present if the actual close is delayed and more events
1628 * it up in the specified interpreter to ensure that it is present
3490 * Count of bytes upto and including the end of line if one is present
3712 * present) will be appended to this
4997 int present;
5040 present = (chanPtr->typePtr->channelReadyProc) (chanPtr->instanceData,
5042 if (present != 0) {
6234 * used to test the Tcl channel event mechanism. It is present in
4951 int present; local

Completed in 81 milliseconds