whence            339 ext/vport/vport.c static off_t vport_seek(ScmPort *p, off_t off, int whence)
whence            346 ext/vport/vport.c                                        Scm_MakeInteger(whence)));
whence            592 ext/vport/vport.c static off_t bport_seek(ScmPort *p, off_t off, int whence)
whence            599 ext/vport/vport.c                                        Scm_MakeInteger(whence)));
whence           3619 src/extlib.c     int whence;
whence           3636 src/extlib.c     whence = SCM_INT_VALUE(whence_scm);
whence           3640 src/extlib.c   SCM_RESULT = Scm_PortSeek(port, offset, whence);
whence           1312 src/gauche.h       off_t (*seeker)(ScmPort *p, off_t offset, int whence);
whence           1339 src/gauche.h       off_t     (*Seek)(ScmPort *p, off_t off, int whence);
whence           1500 src/gauche.h   SCM_EXTERN ScmObj Scm_PortSeek(ScmPort *port, ScmObj off, int whence);
whence           1501 src/gauche.h   SCM_EXTERN ScmObj Scm_PortSeekUnsafe(ScmPort *port, ScmObj off, int whence);
whence            827 src/port.c     static off_t file_seeker(ScmPort *p, off_t offset, int whence)
whence            829 src/port.c         return lseek((int)p->src.buf.data, offset, whence);
whence            878 src/portapi.c  static off_t seek_istr(ScmPort *p, off_t o, int whence, int nomove)
whence            885 src/portapi.c          if (whence == SEEK_CUR) {
whence            887 src/portapi.c          } else if (whence == SEEK_END) {
whence            903 src/portapi.c  ScmObj Scm_PortSeek(ScmPort *p, ScmObj off, int whence)
whence            905 src/portapi.c  ScmObj Scm_PortSeekUnsafe(ScmPort *p, ScmObj off, int whence)
whence            909 src/portapi.c      int nomove = (whence == SEEK_CUR && o == 0);
whence            911 src/portapi.c      SHORTCUT(p, return Scm_PortSeekUnsafe(p, off, whence));
whence            937 src/portapi.c                  if (whence == SEEK_CUR) {
whence            941 src/portapi.c                  SAFE_CALL(p, r = p->src.buf.seeker(p, o, whence));
whence            944 src/portapi.c                  SAFE_CALL(p, r = p->src.buf.seeker(p, o, whence));
whence            951 src/portapi.c          r = SEEK_ISTR(p, o, whence, nomove);
whence            963 src/portapi.c              SAFE_CALL(p, r = p->src.vt.Seek(p, o, whence));