Home | History | Annotate | Download | only in libxml2

Lines Matching full:rebuf

7180     xmlChar* rebuf = NULL;
7224 rebuf = (xmlChar *) xmlRealloc(buf->contentIO, start_buf + newSize);
7225 if (rebuf == NULL) {
7229 buf->contentIO = rebuf;
7230 buf->content = rebuf + start_buf;
7234 rebuf = (xmlChar *) xmlMallocAtomic(newSize);
7236 rebuf = (xmlChar *) xmlRealloc(buf->content, newSize);
7243 rebuf = (xmlChar *) xmlMallocAtomic(newSize);
7244 if (rebuf != NULL) {
7245 memcpy(rebuf, buf->content, buf->use);
7247 rebuf[buf->use] = 0;
7250 if (rebuf == NULL) {
7254 buf->content = rebuf;