Searched refs:TCL_READABLE (Results 1 - 11 of 11) sorted by relevance

/ast/src/lib/libtk/unix/
H A DtkUnixEvent.c70 Tcl_WatchFile(handle, TCL_READABLE);
119 if (Tcl_FileReady(handle, TCL_READABLE) != 0) {
/ast/src/lib/libtksh/tcl/
H A DtclUnixNotfy.c98 int mask; /* OR'ed combination of TCL_READABLE,
118 if (mask & TCL_READABLE) {
165 int mask; /* OR'ed combination of TCL_READABLE,
180 if ((mask & TCL_READABLE) && (readyMasks[index] & bit)) {
181 result |= TCL_READABLE;
268 Tcl_WatchFile(Tcl_GetFile((ClientData)winFd,TCL_UNIX_FD),TCL_READABLE);
263 Tcl_WatchFile(Tcl_GetFile((ClientData)winFd,TCL_UNIX_FD),TCL_READABLE); local
H A DtclUnixChan.c540 * combination of TCL_READABLE,
545 if ((mask & TCL_READABLE) && (fsPtr->inFile != (Tcl_File) NULL)) {
546 Tcl_WatchFile(fsPtr->inFile, TCL_READABLE);
572 * Returns OR-ed combination of TCL_READABLE, TCL_WRITABLE and
585 * combination of TCL_READABLE,
591 if ((mask & TCL_READABLE) && (fsPtr->inFile != (Tcl_File) NULL)) {
592 present |= Tcl_FileReady(fsPtr->inFile, TCL_READABLE);
633 if (direction == TCL_READABLE) {
858 (ClientData) fsPtr, TCL_READABLE);
990 * combination of TCL_READABLE,
[all...]
H A DtclIOCmd.c236 if ((mode & TCL_READABLE) == 0) {
339 if ((mode & TCL_READABLE) == 0) {
462 if ((mode & TCL_READABLE) == 0) {
916 if (Tcl_GetChannelFile(chan, TCL_READABLE) != NULL) {
1004 if ((mode & TCL_READABLE) == 0) {
H A DtclIOUtil.c118 file = Tcl_GetChannelFile(chan, writing ? TCL_WRITABLE : TCL_READABLE);
1005 inputFile = Tcl_GetChannelFile(channel, TCL_READABLE);
/ast/src/lib/libtksh/src/
H A DtclIO.c206 * the channel can also have TCL_READABLE (1<<1) and TCL_WRITABLE (1<<2) set.
419 inFile = Tcl_GetChannelFile((Tcl_Channel) chanPtr, TCL_READABLE);
437 WaitForChannel((Channel*)inFile, TCL_READABLE, -1);
841 chanIn = Tcl_GetChannelFile((Tcl_Channel) chanPtr, TCL_READABLE);
934 mode = TCL_READABLE;
1617 * combination of TCL_READABLE and
1658 *modePtr = (chanPtr->flags & (TCL_READABLE|TCL_WRITABLE));
1688 int mask; /* TCL_READABLE & TCL_WRITABLE to indicate
1843 * An OR-ed combination of TCL_READABLE and TCL_WRITABLE.
1859 return (chanPtr->flags & (TCL_READABLE | TCL_WRITABL
[all...]
/ast/src/lib/libtk/generic/
H A DtkMain.c200 Tcl_CreateChannelHandler(inChannel, TCL_READABLE, StdinProc,
309 Tcl_CreateChannelHandler(chan, TCL_READABLE, StdinProc,
H A DtkConsole.c100 (ClientData) TCL_STDIN, TCL_READABLE);
315 * TCL_READABLE, TCL_WRITABLE and
345 * TCL_READABLE, TCL_WRITABLE and
375 int direction; /* TCL_READABLE or TCL_WRITABLE
H A Dtk.h891 #define TK_READABLE TCL_READABLE
/ast/src/cmd/tksh/
H A DtkMain.c244 Tcl_CreateChannelHandler(inChannel, TCL_READABLE, StdinProc,
361 Tcl_CreateChannelHandler(chan, TCL_READABLE, StdinProc,
637 Tcl_CreateFileHandler(file, TCL_READABLE, fileReady, &file);
/ast/src/lib/libtksh/include/
H A Dtcl.h632 #define TCL_READABLE (1<<1) macro

Completed in 40 milliseconds