ostr              500 src/error.c            ScmObj ostr = Scm_MakeOutputStringPort(TRUE);
ostr              502 src/error.c            Scm_Vprintf(SCM_PORT(ostr), msg, args, TRUE);
ostr              504 src/error.c            e = Scm_MakeError(Scm_GetOutputString(SCM_PORT(ostr)));
ostr              557 src/error.c            ScmObj ostr = Scm_MakeOutputStringPort(TRUE);
ostr              559 src/error.c            Scm_Vprintf(SCM_PORT(ostr), msg, args, TRUE);
ostr              561 src/error.c            SCM_PUTZ(": ", -1, ostr);
ostr              562 src/error.c            SCM_PUTS(syserr, ostr);
ostr              563 src/error.c            e = Scm_MakeSystemError(Scm_GetOutputString(SCM_PORT(ostr)), en);
ostr              592 src/error.c            ScmObj ostr = Scm_MakeOutputStringPort(TRUE);
ostr              594 src/error.c            Scm_Vprintf(SCM_PORT(ostr), msg, args, TRUE);
ostr              598 src/error.c                SCM_PUTZ(": ", -1, ostr);
ostr              599 src/error.c                SCM_PUTS(syserr, ostr);
ostr              601 src/error.c            smsg = Scm_GetOutputString(SCM_PORT(ostr));
ostr              643 src/error.c        ScmObj ostr = Scm_MakeOutputStringPort(TRUE);
ostr              645 src/error.c        Scm_Vprintf(SCM_PORT(ostr), msg, args, TRUE);
ostr              647 src/error.c        Scm_Printf(SCM_CURERR, "WARNING: %A\n", Scm_GetOutputString(SCM_PORT(ostr)));
ostr              654 src/error.c        ScmObj ostr = Scm_MakeOutputStringPort(TRUE);
ostr              655 src/error.c        Scm_Format(SCM_PORT(ostr), fmt, args, TRUE);
ostr              656 src/error.c        Scm_Printf(SCM_CURERR, "WARNING: %A\n", Scm_GetOutputString(SCM_PORT(ostr)));
ostr              710 src/error.c                ScmObj ostr = Scm_MakeOutputStringPort(TRUE);
ostr              711 src/error.c                Scm_Vprintf(SCM_PORT(ostr), msg, ap, TRUE);
ostr              713 src/error.c                SCM_APPEND1(argh, argt, Scm_GetOutputString(SCM_PORT(ostr)));
ostr             1387 src/gauche.h           ScmDString ostr;        /* output string port */
ostr              915 src/port.c         Scm_DStringInit(&p->src.ostr);
ostr              929 src/port.c         r = Scm_DStringGet(&SCM_PORT(port)->src.ostr, 0);
ostr              938 src/port.c         return Scm_DStringGet(&SCM_PORT(port)->src.ostr, 0);
ostr              121 src/portapi.c          SCM_DSTRING_PUTB(&p->src.ostr, b);
ostr              170 src/portapi.c          SCM_DSTRING_PUTC(&p->src.ostr, c);
ostr              220 src/portapi.c          Scm_DStringAdd(&p->src.ostr, s);
ostr              266 src/portapi.c          Scm_DStringPutz(&p->src.ostr, s, siz);
ostr              955 src/portapi.c              r = (off_t)Scm_DStringSize(&(p->src.ostr));
ostr              191 src/read.c         ScmObj ostr = Scm_MakeOutputStringPort(TRUE);
ostr              197 src/read.c         Scm_Printf(SCM_PORT(ostr), "Read error at %S:",
ostr              200 src/read.c             Scm_Printf(SCM_PORT(ostr), "line %d: ", line);
ostr              203 src/read.c         Scm_Vprintf(SCM_PORT(ostr), msg, ap, TRUE);
ostr              206 src/read.c         rerr = Scm_MakeReadError(Scm_GetOutputString(SCM_PORT(ostr)), port, line);
ostr              120 src/write.c        if (out->src.ostr.length < 0) {
ostr              121 src/write.c            return Scm_DStringSize(&out->src.ostr);
ostr              123 src/write.c            return out->src.ostr.length;