Home
last modified time | relevance | path

Searched refs:xmlMemStrdup (Results 1 – 11 of 11) sorted by relevance

/external/libxml2/
Dnanohttp.c312 ctxt->protocol = xmlMemStrdup(uri->scheme); in xmlNanoHTTPScanURL()
313 ctxt->hostname = xmlMemStrdup(uri->server); in xmlNanoHTTPScanURL()
315 ctxt->path = xmlMemStrdup(uri->path); in xmlNanoHTTPScanURL()
317 ctxt->path = xmlMemStrdup("/"); in xmlNanoHTTPScanURL()
319 ctxt->query = xmlMemStrdup(uri->query); in xmlNanoHTTPScanURL()
365 proxy = xmlMemStrdup(uri->server); in xmlNanoHTTPScanProxy()
658 return(xmlMemStrdup(buf)); in xmlNanoHTTPReadLine()
667 return(xmlMemStrdup(buf)); in xmlNanoHTTPReadLine()
673 return(xmlMemStrdup(buf)); in xmlNanoHTTPReadLine()
735 ctxt->contentType = xmlMemStrdup(cur); in xmlNanoHTTPScanAnswer()
[all …]
Duri.c2038 res->scheme = xmlMemStrdup(bas->scheme); in xmlBuildURI()
2040 res->authority = xmlMemStrdup(bas->authority); in xmlBuildURI()
2042 res->server = xmlMemStrdup(bas->server); in xmlBuildURI()
2044 res->user = xmlMemStrdup(bas->user); in xmlBuildURI()
2048 res->path = xmlMemStrdup(bas->path); in xmlBuildURI()
2050 res->query_raw = xmlMemStrdup (ref->query_raw); in xmlBuildURI()
2052 res->query = xmlMemStrdup(ref->query); in xmlBuildURI()
2054 res->query_raw = xmlMemStrdup(bas->query_raw); in xmlBuildURI()
2056 res->query = xmlMemStrdup(bas->query); in xmlBuildURI()
2058 res->fragment = xmlMemStrdup(ref->fragment); in xmlBuildURI()
[all …]
Dglobals.c79 #undef xmlMemStrdup
87 xmlStrdupFunc xmlMemStrdup = (xmlStrdupFunc) xmlMemoryStrdup; variable
134 xmlStrdupFunc xmlMemStrdup = (xmlStrdupFunc) xmlStrdup; variable
533 gs->xmlMemStrdup = (xmlStrdupFunc) xmlMemoryStrdup; in xmlInitializeGlobalState()
539 gs->xmlMemStrdup = (xmlStrdupFunc) xmlStrdup; in xmlInitializeGlobalState()
768 return (&xmlMemStrdup); in __xmlMemStrdup()
770 return (&xmlGetGlobalState()->xmlMemStrdup); in __xmlMemStrdup()
Dnanoftp.c217 proxyUser = xmlMemStrdup(env); in xmlNanoFTPInit()
221 proxyPasswd = xmlMemStrdup(env); in xmlNanoFTPInit()
282 proxy = xmlMemStrdup(host); in xmlNanoFTPProxy()
284 proxyUser = xmlMemStrdup(user); in xmlNanoFTPProxy()
286 proxyPasswd = xmlMemStrdup(passwd); in xmlNanoFTPProxy()
331 ctxt->protocol = xmlMemStrdup(uri->scheme); in xmlNanoFTPScanURL()
332 ctxt->hostname = xmlMemStrdup(uri->server); in xmlNanoFTPScanURL()
334 ctxt->path = xmlMemStrdup(uri->path); in xmlNanoFTPScanURL()
336 ctxt->path = xmlMemStrdup("/"); in xmlNanoFTPScanURL()
343 ctxt->user = xmlMemStrdup(uri->user); in xmlNanoFTPScanURL()
[all …]
Dxmlmemory.c72 #ifdef xmlMemStrdup
73 #undef xmlMemStrdup
1019 xmlMemStrdup = strdupFunc; in xmlMemSetup()
1044 if (strdupFunc != NULL) *strdupFunc = xmlMemStrdup; in xmlMemGet()
1088 xmlMemStrdup = strdupFunc; in xmlGcMemSetup()
1118 if (strdupFunc != NULL) *strdupFunc = xmlMemStrdup; in xmlGcMemGet()
Dencoding.c1079 xmlCharEncodingAliases[i].name = xmlMemStrdup(name); in xmlAddEncodingAlias()
1086 xmlCharEncodingAliases[xmlCharEncodingAliasesNb].name = xmlMemStrdup(name); in xmlAddEncodingAlias()
1087 xmlCharEncodingAliases[xmlCharEncodingAliasesNb].alias = xmlMemStrdup(upper); in xmlAddEncodingAlias()
1334 up = xmlMemStrdup(upper); in xmlNewCharEncodingHandler()
1693 enc->name = xmlMemStrdup(name); in xmlFindCharEncodingHandler()
1721 encu->name = xmlMemStrdup(name); in xmlFindCharEncodingHandler()
DxmlIO.c3776 ret = xmlMemStrdup(dir); in xmlParserGetDirectory()
3780 ret = xmlMemStrdup(dir); in xmlParserGetDirectory()
Dtree.c4455 ret->name = xmlMemStrdup(doc->name); in xmlCopyDoc()
/external/libxml2/include/libxml/
Dglobals.h88 #undef xmlMemStrdup
129 xmlStrdupFunc xmlMemStrdup; member
236 #define xmlMemStrdup \ macro
239 XMLPUBVAR xmlStrdupFunc xmlMemStrdup; variable
247 XMLPUBVAR xmlStrdupFunc xmlMemStrdup; variable
Dxmlmemory.h208 #define xmlMemStrdup(str) xmlMemStrdupLoc((str), __FILE__, __LINE__) macro
/external/libxml2/patches/
D0001-Add-ICU-support-for-libxml.patch160 + enc->name = xmlMemStrdup(name);