Searched defs:lbuf_dim (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/lib/libtecla/common/
H A Dhistory.c188 int lbuf_dim; /* The allocated size of lbuf[] */ member in struct:GlHistory
280 glh->lbuf_dim = 0;
331 glh->lbuf_dim = GLH_LBUF_SIZE;
332 glh->lbuf = (char *) malloc(glh->lbuf_dim);
1981 if(node->line->len + 1 > glh->lbuf_dim) {
1982 int lbuf_dim = node->line->len + 1; local
1983 char *lbuf = realloc(glh->lbuf, lbuf_dim);
1988 glh->lbuf_dim = lbuf_dim;
1994 _glh_return_line(node->line, glh->lbuf, glh->lbuf_dim);
[all...]

Completed in 62 milliseconds