| /freebsd-14.2/contrib/expat/xmlwf/ |
| H A D | xmlwf.c | 193 p = atts; in startElement() 199 while (*atts) { in startElement() 203 atts++; in startElement() 249 p = atts; in startElementNS() 255 while (*atts) { in startElementNS() 256 name = *atts++; in startElementNS() 269 atts++; in startElementNS() 506 UNUSED_P(atts); in defaultStartElement() 535 UNUSED_P(atts); in nopStartElement() 602 if (*atts) { in metaStartElement() [all …]
|
| /freebsd-14.2/contrib/expat/examples/ |
| H A D | outline.c | 55 startElement(void *userData, const XML_Char *name, const XML_Char **atts) { in startElement() argument 64 for (i = 0; atts[i]; i += 2) { in startElement() 65 printf(" %" XML_FMT_STR "='%" XML_FMT_STR "'", atts[i], atts[i + 1]); in startElement()
|
| H A D | elements.c | 58 startElement(void *userData, const XML_Char *name, const XML_Char **atts) { in startElement() argument 61 (void)atts; in startElement()
|
| /freebsd-14.2/contrib/expat/tests/ |
| H A D | handlers.c | 76 UNUSED_P(atts); in start_element_event_handler() 155 atts += 2; in counting_start_element_handler() 169 UNUSED_P(atts); in start_element_suspender() 227 atts += 2; in overwrite_start_checker() 245 UNUSED_P(atts); in start_element_fail() 264 UNUSED_P(atts); in start_element_issue_240() 1707 UNUSED_P(atts); in record_element_start_handler() 1915 if ((atts != NULL) && (atts[0] != NULL)) { in accumulate_start_element() 1921 atts += 2; in accumulate_start_element() 1944 if (atts == NULL) in accumulate_attribute() [all …]
|
| H A D | handlers.h | 68 const XML_Char **atts); 102 const XML_Char **atts); 108 const XML_Char **atts); 114 const XML_Char **atts); 120 const XML_Char **atts); 125 const XML_Char **atts); 138 const XML_Char **atts); 502 const XML_Char **atts); 583 const XML_Char **atts); 589 const XML_Char **atts);
|
| H A D | dummy.c | 163 const XML_Char **atts) { in dummy_start_element() argument 166 UNUSED_P(atts); in dummy_start_element()
|
| H A D | dummy.h | 110 const XML_Char **atts);
|
| H A D | basic_tests.c | 873 const XML_Char **atts) { in check_attr_contains_normalized_whitespace() argument 877 for (i = 0; atts[i] != NULL; i += 2) { in check_attr_contains_normalized_whitespace() 878 const XML_Char *attrname = atts[i]; in check_attr_contains_normalized_whitespace() 879 const XML_Char *value = atts[i + 1]; in check_attr_contains_normalized_whitespace()
|
| /freebsd-14.2/contrib/expat/fuzz/ |
| H A D | xml_parse_fuzzer.c | 39 start(void *userData, const XML_Char *name, const XML_Char **atts) { in start() argument 42 (void)atts; in start()
|
| H A D | xml_parsebuffer_fuzzer.c | 40 start(void *userData, const XML_Char *name, const XML_Char **atts) { in start() argument 43 (void)atts; in start()
|
| H A D | xml_lpm_fuzzer.cpp | 229 const XML_Char **atts) { in StartElementHandler() argument 232 for (size_t i = 0; atts[i] != NULL; ++i) { in StartElementHandler() 233 TouchString(atts[i]); in StartElementHandler()
|
| /freebsd-14.2/contrib/expat/lib/ |
| H A D | xmltok.h | 180 ATTRIBUTE *atts); 261 #define XmlGetAttributes(enc, ptr, attsMax, atts) \ argument 262 (((enc)->getAtts)(enc, ptr, attsMax, atts))
|
| H A D | xmltok_impl.c | 1510 ATTRIBUTE *atts) { in PREFIX() 1521 atts[nAtts].name = ptr; \ in PREFIX() 1543 atts[nAtts].valuePtr = ptr + MINBPC(enc); in PREFIX() 1549 atts[nAtts].valueEnd = ptr; in PREFIX() 1556 atts[nAtts].valuePtr = ptr + MINBPC(enc); in PREFIX() 1562 atts[nAtts].valueEnd = ptr; in PREFIX() 1568 atts[nAtts].normalized = 0; in PREFIX() 1573 else if (state == inValue && nAtts < attsMax && atts[nAtts].normalized in PREFIX() 1574 && (ptr == atts[nAtts].valuePtr in PREFIX() 1578 atts[nAtts].normalized = 0; in PREFIX() [all …]
|
| H A D | expat.h | 294 const XML_Char **atts);
|
| /freebsd-14.2/contrib/unbound/smallapp/ |
| H A D | unbound-anchor.c | 1287 find_att(const XML_Char **atts, const XML_Char* name) in find_att() argument 1290 for(i=0; atts[i]; i+=2) { in find_att() 1291 if(strcasecmp(atts[i], name) == 0) in find_att() 1292 return atts[i+1]; in find_att() 1370 handle_keydigest(struct xml_data* data, const XML_Char **atts) in handle_keydigest() argument 1373 if(find_att(atts, "validFrom")) { in handle_keydigest() 1374 time_t from = xml_convertdate(find_att(atts, "validFrom")); in handle_keydigest() 1382 if(find_att(atts, "validUntil")) { in handle_keydigest() 1439 for(i=0; atts[i]; i+=2) { in xml_startelem() 1440 printf(" %s='%s'\n", atts[i], atts[i+1]); in xml_startelem() [all …]
|
| /freebsd-14.2/contrib/libarchive/libarchive/ |
| H A D | archive_read_support_format_xar.c | 3228 struct xmlattr_list *list, const XML_Char **atts) in expat_xmlattr_setup() argument 3235 if (atts == NULL) in expat_xmlattr_setup() 3237 while (atts[0] != NULL && atts[1] != NULL) { in expat_xmlattr_setup() 3239 name = strdup(atts[0]); in expat_xmlattr_setup() 3240 value = strdup(atts[1]); in expat_xmlattr_setup() 3253 atts += 2; in expat_xmlattr_setup() 3259 expat_start_cb(void *userData, const XML_Char *name, const XML_Char **atts) in expat_start_cb() argument 3269 r = expat_xmlattr_setup(a, &list, atts); in expat_start_cb()
|
| /freebsd-14.2/tools/regression/geom/MdLoad/ |
| H A D | MdLoad.c | 94 startElement(void *userData, const char *name, const char **atts __unused) in startElement()
|