SCM_PORT_INPUT    138 ext/charconv/charconv.c                from, to, (dir == SCM_PORT_INPUT? "from" : "to"),
SCM_PORT_INPUT    307 ext/charconv/charconv.c     name = conv_name(SCM_PORT_INPUT, fromPort, fromCode, toCode);
SCM_PORT_INPUT    308 ext/charconv/charconv.c     return Scm_MakeBufferedPort(SCM_CLASS_PORT, name, SCM_PORT_INPUT, TRUE, &bufrec);
SCM_PORT_INPUT    160 ext/net/net.c          sock->inPort = SCM_PORT(Scm_MakePortWithFd(sockname, SCM_PORT_INPUT,
SCM_PORT_INPUT    482 ext/net/netlib.c     bufmode = Scm_BufferingMode(buffering, SCM_PORT_INPUT, SCM_PORT_BUFFER_LINE);
SCM_PORT_INPUT    389 ext/vport/vport.c         dir = SCM_PORT_INPUT;
SCM_PORT_INPUT    647 ext/vport/vport.c         dir = SCM_PORT_INPUT;
SCM_PORT_INPUT   3071 src/extlib.c     bufmode = Scm_BufferingMode(buffering, SCM_PORT_INPUT, SCM_PORT_BUFFER_FULL);
SCM_PORT_INPUT   3313 src/extlib.c     SCM_RETURN(Scm_MakeBufferedPort(SCM_CLASS_PORT, SCM_FALSE, SCM_PORT_INPUT, TRUE, &bufrec));
SCM_PORT_INPUT   3749 src/extlib.c   int bufmode = Scm_BufferingMode(buffering, SCM_PORT_INPUT, SCM_PORT_BUFFER_FULL);
SCM_PORT_INPUT   3751 src/extlib.c      return Scm_MakePortWithFd(name, SCM_PORT_INPUT, fd, bufmode, ownerP);
SCM_PORT_INPUT   1394 src/gauche.h       SCM_PORT_INPUT = 1,
SCM_PORT_INPUT   1457 src/gauche.h   #define SCM_IPORTP(obj)  (SCM_PORTP(obj)&&(SCM_PORT_DIR(obj)&SCM_PORT_INPUT))
SCM_PORT_INPUT    216 src/port.c                    (SCM_PORT_DIR(obj)&SCM_PORT_INPUT)? "i" : "",
SCM_PORT_INPUT    451 src/port.c         if (dir == SCM_PORT_INPUT) {
SCM_PORT_INPUT    719 src/port.c         if (direction == SCM_PORT_INPUT) {
SCM_PORT_INPUT    838 src/port.c         if ((flags & O_ACCMODE) == O_RDONLY) dir = SCM_PORT_INPUT;
SCM_PORT_INPUT    901 src/port.c         ScmPort *p = make_port(SCM_CLASS_PORT, SCM_PORT_INPUT, SCM_PORT_ISTR);
SCM_PORT_INPUT   1271 src/port.c                                  Scm_PortName(iport), SCM_PORT_INPUT,
SCM_PORT_INPUT   1374 src/port.c                                         SCM_PORT_INPUT, 0,
SCM_PORT_INPUT    928 src/portapi.c              if (SCM_PORT_DIR(p)&SCM_PORT_INPUT) {
SCM_PORT_INPUT    936 src/portapi.c              if (SCM_PORT_DIR(p)&SCM_PORT_INPUT) {
SCM_PORT_INPUT    314 src/prof.c             Scm_MakePortWithFd(SCM_FALSE, SCM_PORT_INPUT, vm->prof->samplerFd,
SCM_PORT_INPUT     94 src/read.c         if (!SCM_PORTP(port) || SCM_PORT_DIR(port) != SCM_PORT_INPUT) {
SCM_PORT_INPUT    148 src/read.c         if (!SCM_PORTP(port) || SCM_PORT_DIR(port) != SCM_PORT_INPUT) {
SCM_PORT_INPUT   2201 src/syslib.c   SCM_RESULT0 = Scm_MakePortWithFd(name, SCM_PORT_INPUT, fds[0], bufmode, TRUE);