HomeSort by relevance Sort by last modified time
    Searched refs:xmlRealloc (Results 1 - 25 of 35) sorted by null

1 2

  /external/libxml2/include/libxml/
globals.h 96 #undef xmlRealloc
134 xmlReallocFunc xmlRealloc;
201 * - xmlRealloc
225 #define xmlRealloc \
228 XMLPUBVAR xmlReallocFunc xmlRealloc;
250 XMLPUBVAR xmlReallocFunc xmlRealloc;
xmlmemory.h 94 LIBXML_DLL_IMPORT xmlReallocFunc xmlRealloc;
191 * xmlRealloc:
199 #define xmlRealloc(ptr, size) xmlReallocLoc((ptr), (size), __FILE__, __LINE__)
  /external/libxml2/
globals.c 80 #undef xmlRealloc
86 xmlReallocFunc xmlRealloc = (xmlReallocFunc) xmlMemRealloc;
117 * xmlRealloc:
125 xmlReallocFunc xmlRealloc = realloc;
544 gs->xmlRealloc = (xmlReallocFunc) xmlMemRealloc;
550 gs->xmlRealloc = (xmlReallocFunc) realloc;
759 #undef xmlRealloc
763 return (&xmlRealloc);
765 return (&xmlGetGlobalState()->xmlRealloc);
xmlmemory.c 69 #ifdef xmlRealloc
70 #undef xmlRealloc
1058 xmlRealloc = reallocFunc;
1083 if (reallocFunc != NULL) *reallocFunc = xmlRealloc;
1127 xmlRealloc = reallocFunc;
1157 if (reallocFunc != NULL) *reallocFunc = xmlRealloc;
buf.c 478 newbuf = (xmlChar *) xmlRealloc(buf->contentIO, start_buf + size);
486 newbuf = (xmlChar *) xmlRealloc(buf->content, size);
817 rebuf = (xmlChar *) xmlRealloc(buf->contentIO, start_buf + newSize);
829 rebuf = (xmlChar *) xmlRealloc(buf->content, newSize);
    [all...]
testC14N.c 189 xmlRealloc(buffer, buffer_size * sizeof(xmlChar*)); \
pattern.c 353 temp = (xmlStepOpPtr) xmlRealloc(comp->steps, comp->maxStep * 2 *
424 temp = (xmlStepOpPtr) xmlRealloc(comp->steps, comp->maxStep * 2 *
473 tmp = (xmlStepStatePtr) xmlRealloc(states->states,
    [all...]
c14n.c 338 tmp = xmlRealloc(cur->nsTab, tmpSize * sizeof(xmlNsPtr));
345 tmp = xmlRealloc(cur->nodeTab, tmpSize * sizeof(xmlNodePtr));
    [all...]
parser.c     [all...]
tree.c     [all...]
xinclude.c 260 ctxt->incTab = (xmlXIncludeRefPtr *) xmlRealloc(ctxt->incTab,
336 (xmlChar * *) xmlRealloc(ctxt->urlTab,
779 ctxt->txtTab = (xmlNodePtr *) xmlRealloc(ctxt->txtTab,
785 ctxt->txturlTab = (xmlURL *) xmlRealloc(ctxt->txturlTab,
    [all...]
xmlstring.c 462 ret = (xmlChar *) xmlRealloc(cur, (size + len + 1) * sizeof(xmlChar));
schematron.c 751 xmlRealloc(ctxt->includes, ctxt->maxIncludes * 4 *
821 xmlRealloc((xmlChar **) ctxt->namespaces, ctxt->maxNamespaces * 4 *
    [all...]
xmlregexp.c     [all...]
libxml2.syms 838 xmlRealloc; # variable
    [all...]
relaxng.c 909 tmp = (xmlRelaxNGDefinePtr *) xmlRealloc(ctxt->defTab,
    [all...]
entities.c 541 tmp = (xmlChar *) xmlRealloc(buffer, new_size); \
error.c 49 if ((larger = (char *) xmlRealloc(str, size)) == NULL) {\
xpath.c 794 list->items = (void **) xmlRealloc(list->items,
1090 real = (xmlXPathStepOp *) xmlRealloc(comp->steps,
    [all...]
nanohttp.c 570 ctxt->in = (char *) xmlRealloc(tmp_ptr, ctxt->inlen);
    [all...]
uri.c 1041 temp = (xmlChar *) xmlRealloc(ret, (tmp + 1));
    [all...]
valid.c 288 tmp = (xmlValidState *) xmlRealloc(ctxt->vstateTab,
394 tmp = (xmlValidState *) xmlRealloc(ctxt->vstateTab,
452 tmp = (xmlNodePtr *) xmlRealloc(ctxt->nodeTab,
    [all...]
  /external/libxml2/os400/
rpgsupport.c 63 THREADED_VAR(xmlRealloc, xmlReallocFunc)
69 return xmlRealloc(mem, size);
transcode.c 105 ts = xmlRealloc(ts, (dstp - ts) + 4);
189 ts = xmlRealloc(ts, (dstp - ts) + 1);
  /external/libxml2/doc/examples/
testWriter.c     [all...]

Completed in 1206 milliseconds

1 2