Home
last modified time | relevance | path

Searched refs:XMLSTR (Results 1 – 25 of 32) sorted by relevance

12

/dports/audio/icecast-kh/icecast-kh-icecast-2.4.0-kh15/src/
H A Dadmin.c525 xmlNewChild(node, NULL, XMLSTR("message"), XMLSTR(buf)); in command_move_clients()
526 xmlNewChild(node, NULL, XMLSTR("return"), XMLSTR("1")); in command_move_clients()
572 xmlNewChild(node, NULL, XMLSTR("message"), XMLSTR(buf)); in command_admin_function()
573 xmlNewChild(node, NULL, XMLSTR("return"), XMLSTR("1")); in command_admin_function()
662 xmlNewChild(node, NULL, XMLSTR("message"), XMLSTR(msg)); in command_manage_relay()
663 xmlNewChild(node, NULL, XMLSTR("return"), XMLSTR("1")); in command_manage_relay()
721 xmlNewChild(node, NULL, XMLSTR("message"), XMLSTR(msg)); in command_reset_stats()
722 xmlNewChild(node, NULL, XMLSTR("return"), XMLSTR("1")); in command_reset_stats()
927 xmlNewChild(node, NULL, XMLSTR("return"), XMLSTR("1")); in command_kill_source()
1090 xmlNewChild(node, NULL, XMLSTR("return"), XMLSTR("1")); in command_metadata()
[all …]
H A Dstats.c925 xmlNewTextChild (root, NULL, XMLSTR(stat->name), XMLSTR(stat->value)); in _dump_stats_to_doc()
943 xmlSetProp (xmlnode, XMLSTR("mount"), XMLSTR(source->source)); in _dump_stats_to_doc()
950 xmlNewTextChild (xmlnode, NULL, XMLSTR(stat->name), XMLSTR(stat->value)); in _dump_stats_to_doc()
1193 doc = xmlNewDoc (XMLSTR("1.0")); in stats_get_xml()
1637 xmlSetProp (node, XMLSTR("id"), XMLSTR(buf)); in stats_listener_to_xml()
1638 xmlNewChild (node, NULL, XMLSTR("ID"), XMLSTR(buf)); in stats_listener_to_xml()
1640 xmlNewChild (node, NULL, XMLSTR("IP"), XMLSTR(listener->connection.ip)); in stats_listener_to_xml()
1654 xmlNewChild (node, NULL, XMLSTR("Referer"), str); in stats_listener_to_xml()
1665 xmlNewChild (node, NULL, XMLSTR("lag"), XMLSTR(buf)); in stats_listener_to_xml()
1671 xmlNewChild (node, NULL, XMLSTR("Connected"), XMLSTR(buf)); in stats_listener_to_xml()
[all …]
H A Dauth_htpasswd.c420 newnode = xmlNewChild (srcnode, NULL, XMLSTR("User"), NULL); in htpasswd_userlist()
421 xmlNewChild(newnode, NULL, XMLSTR("username"), XMLSTR(user->name)); in htpasswd_userlist()
422 xmlNewChild(newnode, NULL, XMLSTR("password"), XMLSTR(user->pass)); in htpasswd_userlist()
H A Dfserve.c1269 doc = xmlNewDoc(XMLSTR("1.0")); in fserve_kill_client()
1270 node = xmlNewDocNode(doc, NULL, XMLSTR("iceresponse"), NULL); in fserve_kill_client()
1305 xmlNewChild (node, NULL, XMLSTR("message"), XMLSTR(buf)); in fserve_kill_client()
1306 xmlNewChild (node, NULL, XMLSTR("return"), XMLSTR(v)); in fserve_kill_client()
1353 doc = xmlNewDoc(XMLSTR("1.0")); in fserve_list_clients()
1354 node = xmlNewDocNode(doc, NULL, XMLSTR("icestats"), NULL); in fserve_list_clients()
1356 srcnode = xmlNewChild(node, NULL, XMLSTR("source"), NULL); in fserve_list_clients()
1357 xmlSetProp(srcnode, XMLSTR("mount"), XMLSTR(mount)); in fserve_list_clients()
1369 xmlNewChild (srcnode, NULL, XMLSTR("listeners"), XMLSTR(buf)); in fserve_list_clients()
H A Dauth.c786 auth->realm = (char*)xmlStrdup (XMLSTR(options->value)); in get_authenticator()
790 auth->rejected_mount = (char*)xmlStrdup (XMLSTR(options->value)); in get_authenticator()
816 if (xmlStrcmp (current->name, XMLSTR("option")) == 0) in auth_get_authenticator()
819 opt->name = (char *)xmlGetProp (current, XMLSTR("name")); in auth_get_authenticator()
825 opt->value = (char *)xmlGetProp (current, XMLSTR("value")); in auth_get_authenticator()
836 if (xmlStrcmp (current->name, XMLSTR("text")) != 0) in auth_get_authenticator()
839 auth->type = (char *)xmlGetProp (node, XMLSTR("type")); in auth_get_authenticator()
H A Dcfgfile.c550 if (xmlStrcmp(node->name, XMLSTR("icecast")) != 0) { in config_parse_file()
684 alias->source = (char *)xmlGetProp (node, XMLSTR ("source")); in _parse_alias()
685 alias->destination = (char *)xmlGetProp (node, XMLSTR ("dest")); in _parse_alias()
694 alias->bind_address = (char *)xmlGetProp (node, XMLSTR("bind-address")); in _parse_alias()
695 temp = xmlGetProp(node, XMLSTR("port")); in _parse_alias()
1415 sc_port->shoutcast_mount = (char*)xmlStrdup (XMLSTR(listener->shoutcast_mount)); in _parse_listen_sock()
1417 sc_port->bind_address = (char*)xmlStrdup (XMLSTR(listener->bind_address)); in _parse_listen_sock()
1424 listener->shoutcast_mount = (char*)xmlStrdup (XMLSTR(config->shoutcast_mount)); in _parse_listen_sock()
1488 listener->bind_address = (char*)xmlStrdup (XMLSTR(bindaddress)); in _parse_root()
H A Dslave.c164 copy->localmount = (char *)xmlStrdup (XMLSTR(r->localmount)); in relay_copy()
166 copy->username = (char *)xmlStrdup (XMLSTR(r->username)); in relay_copy()
168 copy->password = (char *)xmlStrdup (XMLSTR(r->password)); in relay_copy()
742 m->ip = (char *)xmlStrdup (XMLSTR(master->server)); in create_master_relay()
745 m->bind = (char *)xmlStrdup (XMLSTR(master->bind)); in create_master_relay()
747 m->mount = (char *)xmlStrdup (XMLSTR(remote)); in create_master_relay()
751 relay->localmount = (char *)xmlStrdup (XMLSTR(local)); in create_master_relay()
760 relay->username = (char *)xmlStrdup (XMLSTR(master->username)); in create_master_relay()
761 relay->password = (char *)xmlStrdup (XMLSTR(master->password)); in create_master_relay()
H A Dxslt.c237 sheet = x->cache.stylesheet = xsltParseStylesheetFile (XMLSTR(fn)); in xslt_update()
486 if (cur->method && xmlStrcmp (cur->method, XMLSTR("html")) == 0) in xslt_send_sheet()
489 if (cur->method && xmlStrcmp (cur->method, XMLSTR("text")) == 0) in xslt_send_sheet()
/dports/audio/icecast/icecast-2.4.4/src/
H A Dadmin.c234 XMLSTR(source->fallback_mount):XMLSTR("")); in admin_build_sourcelist()
684 xmlNewTextChild(node, NULL, XMLSTR("message"), XMLSTR(buf)); in command_move_clients()
685 xmlNewTextChild(node, NULL, XMLSTR("return"), XMLSTR("1")); in command_move_clients()
706 xmlSetProp(srcnode, XMLSTR("mount"), XMLSTR(source->mount)); in command_show_listeners()
884 xmlNewTextChild(node, NULL, XMLSTR("return"), XMLSTR("1")); in command_kill_source()
925 xmlNewTextChild(node, NULL, XMLSTR("return"), XMLSTR("1")); in command_kill_client()
931 xmlNewTextChild(node, NULL, XMLSTR("return"), XMLSTR("0")); in command_kill_client()
980 xmlNewTextChild(node, NULL, XMLSTR("return"), XMLSTR("0")); in command_metadata()
1016 xmlNewTextChild(node, NULL, XMLSTR("return"), XMLSTR("1")); in command_metadata()
1024 xmlNewTextChild(node, NULL, XMLSTR("return"), XMLSTR("1")); in command_metadata()
[all …]
H A Dcfgfile.c352 if (xmlStrcmp (node->name, XMLSTR("icecast")) != 0) { in config_parse_file()
466 if (xmlStrcmp (node->name, XMLSTR("location")) == 0) { in _parse_root()
597 if (xmlStrcmp (node->name, XMLSTR("clients")) == 0) { in _parse_limits()
654 tmp = (char *)xmlGetProp(node, XMLSTR("type")); in _parse_mount()
920 if (xmlStrcmp (node->name, XMLSTR("server")) == 0) { in _parse_relay()
987 if (xmlStrcmp (node->name, XMLSTR("port")) == 0) { in _parse_listen_socket()
1053 if (xmlGetProp(node, XMLSTR("mount"))) { in _parse_authentication()
1099 if (xmlStrcmp (node->name, XMLSTR("yp-url")) == 0) { in _parse_directory()
1194 temp = (char *)xmlGetProp(node, XMLSTR("port")); in _parse_paths()
1267 if (xmlStrcmp (node->name, XMLSTR("chroot")) == 0) { in _parse_security()
[all …]
H A Dxslt.c164 cache[i].stylesheet = xsltParseStylesheetFile (XMLSTR(fn)); in xslt_get_stylesheet()
182 cache[i].stylesheet = xsltParseStylesheetFile (XMLSTR(fn)); in xslt_get_stylesheet()
227 if (cur->method && xmlStrcmp (cur->method, XMLSTR("html")) == 0) in xslt_transform()
230 if (cur->method && xmlStrcmp (cur->method, XMLSTR("text")) == 0) in xslt_transform()
H A Dstats.c827 xmlNewTextChild (root, NULL, XMLSTR(stat->name), XMLSTR(stat->value)); in _dump_stats_to_doc()
839 xmlNodePtr xmlnode = xmlNewTextChild (root, NULL, XMLSTR("source"), NULL); in _dump_stats_to_doc()
841 xmlSetProp (xmlnode, XMLSTR("mount"), XMLSTR(source->source)); in _dump_stats_to_doc()
847 xmlNewTextChild (xmlnode, NULL, XMLSTR(stat->name), XMLSTR(stat->value)); in _dump_stats_to_doc()
992 doc = xmlNewDoc (XMLSTR("1.0")); in stats_get_xml()
993 node = xmlNewDocNode (doc, NULL, XMLSTR("icestats"), NULL); in stats_get_xml()
H A Dauth.c651 if (xmlStrcmp (current->name, XMLSTR("option")) == 0) in auth_get_authenticator()
654 opt->name = (char *)xmlGetProp (current, XMLSTR("name")); in auth_get_authenticator()
660 opt->value = (char *)xmlGetProp (current, XMLSTR("value")); in auth_get_authenticator()
671 if (xmlStrcmp (current->name, XMLSTR("text")) != 0) in auth_get_authenticator()
674 auth->type = (char*)xmlGetProp (node, XMLSTR("type")); in auth_get_authenticator()
H A Dauth_htpasswd.c438 newnode = xmlNewChild (srcnode, NULL, XMLSTR("User"), NULL); in htpasswd_userlist()
439 xmlNewTextChild(newnode, NULL, XMLSTR("username"), XMLSTR(user->name)); in htpasswd_userlist()
H A Dcfgfile.h33 #define XMLSTR(str) ((xmlChar *)(str)) macro
/dports/net/libzmq2/zeromq-2.2.0/foreign/xmlParser/
H A DxmlParser.hpp169 #define XMLSTR wchar_t * macro
174 #define XMLSTR char * macro
477 …XMLAttribute *addAttribute_WOSD(XMLSTR lpszName, XMLSTR lpszValue); …
617 XMLNode addChild_priv(int,XMLSTR,char,int);
618 XMLAttribute *addAttribute_priv(int,XMLSTR,XMLSTR);
619 XMLCSTR addText_priv(int,XMLSTR,int);
620 XMLClear *addClear_priv(int,XMLSTR,XMLCSTR,XMLCSTR,int);
646 XMLDLLENTRY XMLSTR stringDup(XMLCSTR source, int cbData=-1);
653 XMLDLLENTRY void freeXMLString(XMLSTR t); // {free(t);}
698 static XMLSTR toXMLUnSafe(XMLSTR dest,XMLCSTR source); ///< deprecated: use "toXML" instead
[all …]
H A DxmlParser.cpp253 static inline XMLSTR xstrcpy(XMLSTR c1, XMLCSTR c2) { return (XMLSTR)wcscpy(c1,c2); } in xstrcpy()
292 static inline XMLSTR xstrcpy(XMLSTR c1, XMLCSTR c2) { return (XMLSTR)strcpy(c1,c2); } in xstrcpy()
335 static inline XMLSTR xstrcpy(XMLSTR c1, XMLCSTR c2) { return (XMLSTR)wcscpy(c1,c2); } in xstrcpy()
352 static inline XMLSTR xstrcpy(XMLSTR c1, XMLCSTR c2) { return (XMLSTR)strcpy(c1,c2); } in xstrcpy()
675 XMLSTR lpszNew; in stringDup()
686 XMLSTR ToXMLStringTool::toXMLUnSafe(XMLSTR dest,XMLCSTR source) in toXMLUnSafe()
688 XMLSTR dd=dest; in toXMLUnSafe()
764 XMLSTR d; in fromXMLString()
865 return (XMLSTR)s; in fromXMLString()
1674 XMLSTR attrVal=(XMLSTR)token.pStr; in ParseXMLElement()
[all …]
/dports/audio/libcoverart/libcoverart-1.0.0/src/
H A DxmlParser.h140 #define XMLSTR wchar_t * macro
145 #define XMLSTR char * macro
448 …XMLAttribute *addAttribute_WOSD(XMLSTR lpszName, XMLSTR lpszValue); …
588 XMLNode addChild_priv(int,XMLSTR,char,int);
589 XMLAttribute *addAttribute_priv(int,XMLSTR,XMLSTR);
590 XMLCSTR addText_priv(int,XMLSTR,int);
591 XMLClear *addClear_priv(int,XMLSTR,XMLCSTR,XMLCSTR,int);
617 XMLDLLENTRY XMLSTR stringDup(XMLCSTR source, int cbData=-1);
624 XMLDLLENTRY void freeXMLString(XMLSTR t); // {free(t);}
669 static XMLSTR toXMLUnSafe(XMLSTR dest,XMLCSTR source); ///< deprecated: use "toXML" instead
[all …]
H A DxmlParser.cpp220 static inline XMLSTR xstrcpy(XMLSTR c1, XMLCSTR c2) { return (XMLSTR)wcscpy(c1,c2); } in xstrcpy()
259 static inline XMLSTR xstrcpy(XMLSTR c1, XMLCSTR c2) { return (XMLSTR)strcpy(c1,c2); } in xstrcpy()
326 static inline XMLSTR xstrcpy(XMLSTR c1, XMLCSTR c2) { return (XMLSTR)wcscpy(c1,c2); } in xstrcpy()
343 static inline XMLSTR xstrcpy(XMLSTR c1, XMLCSTR c2) { return (XMLSTR)strcpy(c1,c2); } in xstrcpy()
670 XMLSTR lpszNew; in stringDup()
681 XMLSTR ToXMLStringTool::toXMLUnSafe(XMLSTR dest,XMLCSTR source) in toXMLUnSafe()
683 XMLSTR dd=dest; in toXMLUnSafe()
765 XMLSTR d; in fromXMLString()
866 return (XMLSTR)s; in fromXMLString()
1677 XMLSTR attrVal=(XMLSTR)token.pStr; in ParseXMLElement()
[all …]
/dports/devel/raknet/raknet-3.9.2_10,1/DependentExtensions/XML/
H A DxmlParser.h170 #define XMLSTR wchar_t * macro
175 #define XMLSTR char * macro
478 …XMLAttribute *addAttribute_WOSD(XMLSTR lpszName, XMLSTR lpszValue); …
618 XMLNode addChild_priv(int,XMLSTR,char,int);
619 XMLAttribute *addAttribute_priv(int,XMLSTR,XMLSTR);
620 XMLCSTR addText_priv(int,XMLSTR,int);
621 XMLClear *addClear_priv(int,XMLSTR,XMLCSTR,XMLCSTR,int);
647 XMLDLLENTRY XMLSTR stringDup(XMLCSTR source, int cbData=-1);
654 XMLDLLENTRY void freeXMLString(XMLSTR t); // {free(t);}
699 static XMLSTR toXMLUnSafe(XMLSTR dest,XMLCSTR source); ///< deprecated: use "toXML" instead
[all …]
H A DxmlParser.cpp248 static inline XMLSTR xstrcpy(XMLSTR c1, XMLCSTR c2) { return (XMLSTR)wcscpy(c1,c2); } in xstrcpy()
287 static inline XMLSTR xstrcpy(XMLSTR c1, XMLCSTR c2) { return (XMLSTR)strcpy(c1,c2); } in xstrcpy()
354 static inline XMLSTR xstrcpy(XMLSTR c1, XMLCSTR c2) { return (XMLSTR)wcscpy(c1,c2); } in xstrcpy()
371 static inline XMLSTR xstrcpy(XMLSTR c1, XMLCSTR c2) { return (XMLSTR)strcpy(c1,c2); } in xstrcpy()
673 XMLSTR lpszNew; in stringDup()
684 XMLSTR ToXMLStringTool::toXMLUnSafe(XMLSTR dest,XMLCSTR source) in toXMLUnSafe()
686 XMLSTR dd=dest; in toXMLUnSafe()
763 XMLSTR d; in fromXMLString()
864 return (XMLSTR)s; in fromXMLString()
1673 XMLSTR attrVal=(XMLSTR)token.pStr; in ParseXMLElement()
[all …]
/dports/graphics/dcmtk/dcmtk-DCMTK-3.6.6/ofstd/include/dcmtk/ofstd/
H A Dofxml.h185 #define XMLSTR wchar_t * macro
190 #define XMLSTR char * macro
499 …XMLAttribute *addAttribute_WOSD(XMLSTR lpszName, XMLSTR lpszValue); …
639 XMLNode addChild_priv(int,XMLSTR,char,int);
640 XMLAttribute *addAttribute_priv(int,XMLSTR,XMLSTR);
641 XMLCSTR addText_priv(int,XMLSTR,int);
642 XMLClear *addClear_priv(int,XMLSTR,XMLCSTR,XMLCSTR,int);
674 XMLDLLENTRY XMLSTR stringDup(XMLCSTR source, int cbData=-1);
681 XMLDLLENTRY void freeXMLString(XMLSTR t); // {free(t);}
730 static XMLSTR toXMLUnSafe(XMLSTR dest,XMLCSTR source); ///< deprecated: use "toXML" instead
[all …]
/dports/graphics/dcmtk/dcmtk-DCMTK-3.6.6/ofstd/libsrc/
H A Dofxml.cc295 static inline XMLSTR xstrcpy(XMLSTR c1, XMLCSTR c2) { return (XMLSTR)wcscpy(c1,c2); } in xstrcpy()
334 …static inline XMLSTR xstrcpy(XMLSTR c1, XMLCSTR c2) { return OFconst_cast(XMLSTR, strcpy(c1,c2)); } in xstrcpy()
403 static inline XMLSTR xstrcpy(XMLSTR c1, XMLCSTR c2) { return (XMLSTR)wcscpy(c1,c2); } in xstrcpy()
420 …static inline XMLSTR xstrcpy(XMLSTR c1, XMLCSTR c2) { return OFconst_cast(XMLSTR, strcpy(c1,c2)); } in xstrcpy()
775 XMLSTR lpszNew; in stringDup()
786 XMLSTR ToXMLStringTool::toXMLUnSafe(XMLSTR dest,XMLCSTR source) in toXMLUnSafe()
788 XMLSTR dd=dest; in toXMLUnSafe()
897 XMLSTR d; in fromXMLString()
1818 XMLSTR attrVal=OFconst_cast(XMLSTR, token.pStr); in ParseXMLElement()
2807 XMLAttribute *XMLNode::addAttribute_WOSD(XMLSTR lpszName, XMLSTR lpszValuev) in addAttribute_WOSD()
[all …]
/dports/graphics/animorph/animorph-0.3/include/animorph/
H A DxmlParser.h90 #define XMLSTR wchar_t * macro
97 #define XMLSTR char * macro
244XMLSTR createXMLString(int nFormat=1, int *pnSize=NULL); // create XML string starting fro…
423 static int CreateXMLStringR(XMLNodeData *pEntry, XMLSTR lpszMarker, int nFormat);
446 XMLSTR stringDup(XMLCSTR source, int cbData=0);
458 XMLSTR toXMLString(XMLCSTR source);
459 XMLSTR toXMLStringFast(XMLSTR *destBuffer,int *destSz, XMLCSTR source);
462 XMLSTR toXMLString(XMLSTR dest,XMLCSTR source);
489 XMLSTR encode(unsigned char *inByteBuf, unsigned int inByteLen, char formatted=0);
/dports/graphics/animorph/animorph-0.3/src/
H A DxmlParser.cpp324 XMLSTR _tcsstr(XMLCSTR c1, XMLCSTR c2) { return (XMLSTR)wcsstr(c1,c2); } in _tcsstr()
325 XMLSTR _tcscpy(XMLSTR c1, XMLCSTR c2) { return (XMLSTR)wcscpy(c1,c2); } in _tcscpy()
341 XMLSTR _tcscpy(XMLSTR c1, XMLCSTR c2) { return (XMLSTR)strcpy(c1,c2); } in _tcscpy()
458 XMLSTR lpszNew; in stringDup()
524 XMLSTR toXMLString(XMLSTR dest,XMLCSTR source) in toXMLString()
526 XMLSTR dd=dest; in toXMLString()
582 XMLSTR dest=(XMLSTR)malloc((lengthXMLString(source)+1)*sizeof(XMLCHAR)); in toXMLString()
586 XMLSTR toXMLStringFast(XMLSTR *dest,int *destSz, XMLCSTR source) in toXMLStringFast()
606 XMLSTR d; in fromXMLString()
704 return (XMLSTR)s; in fromXMLString()
[all …]

12