Home | History | Annotate | Download | only in tic

Lines Matching refs:TBUF

90 grow_tbuf(TBUF *tbuf, size_t len)
94 buf = _ti_grow_tbuf(tbuf, len);
211 process_entry(TBUF *buf, int flags)
215 TBUF sbuf = *buf;
331 dup_tbuf(TBUF *dst, const TBUF *src)
614 TBUF tbuf;
659 buf = tbuf.buf = NULL;
660 buflen = tbuf.buflen = tbuf.bufpos = 0;
666 process_entry(&tbuf, flags);
675 if (!isspace((unsigned char)*buf) && tbuf.bufpos != 0)
676 process_entry(&tbuf, flags);
679 grow_tbuf(&tbuf, len);
681 memcpy(tbuf.buf + tbuf.bufpos, buf, len);
682 tbuf.bufpos += len;
686 process_entry(&tbuf, flags);
687 free(tbuf.buf);