/third_party/libxml2/ |
D | SAX.c | 42 initxmlDefaultSAXHandler(xmlSAXHandlerV1 *hdlr, int warning) in initxmlDefaultSAXHandler() argument 45 if(hdlr->initialized == 1) in initxmlDefaultSAXHandler() 48 hdlr->internalSubset = xmlSAX2InternalSubset; in initxmlDefaultSAXHandler() 49 hdlr->externalSubset = xmlSAX2ExternalSubset; in initxmlDefaultSAXHandler() 50 hdlr->isStandalone = xmlSAX2IsStandalone; in initxmlDefaultSAXHandler() 51 hdlr->hasInternalSubset = xmlSAX2HasInternalSubset; in initxmlDefaultSAXHandler() 52 hdlr->hasExternalSubset = xmlSAX2HasExternalSubset; in initxmlDefaultSAXHandler() 53 hdlr->resolveEntity = xmlSAX2ResolveEntity; in initxmlDefaultSAXHandler() 54 hdlr->getEntity = xmlSAX2GetEntity; in initxmlDefaultSAXHandler() 55 hdlr->getParameterEntity = xmlSAX2GetParameterEntity; in initxmlDefaultSAXHandler() [all …]
|
D | SAX2.c | 2841 xmlSAXVersion(xmlSAXHandler *hdlr, int version) in xmlSAXVersion() argument 2843 if (hdlr == NULL) return(-1); in xmlSAXVersion() 2845 hdlr->startElement = NULL; in xmlSAXVersion() 2846 hdlr->endElement = NULL; in xmlSAXVersion() 2847 hdlr->startElementNs = xmlSAX2StartElementNs; in xmlSAXVersion() 2848 hdlr->endElementNs = xmlSAX2EndElementNs; in xmlSAXVersion() 2849 hdlr->serror = NULL; in xmlSAXVersion() 2850 hdlr->initialized = XML_SAX2_MAGIC; in xmlSAXVersion() 2853 hdlr->startElement = xmlSAX2StartElement; in xmlSAXVersion() 2854 hdlr->endElement = xmlSAX2EndElement; in xmlSAXVersion() [all …]
|
D | parser.c | 13579 xmlCharEncodingHandlerPtr hdlr; in xmlParseInNodeContext() local 13585 hdlr = xmlFindCharEncodingHandler((const char *) doc->encoding); in xmlParseInNodeContext() 13586 if (hdlr != NULL) { in xmlParseInNodeContext() 13587 xmlSwitchToEncoding(ctxt, hdlr); in xmlParseInNodeContext() 14971 xmlCharEncodingHandlerPtr hdlr; in xmlCtxtResetPush() local 14977 hdlr = xmlFindCharEncodingHandler(encoding); in xmlCtxtResetPush() 14978 if (hdlr != NULL) { in xmlCtxtResetPush() 14979 xmlSwitchToEncoding(ctxt, hdlr); in xmlCtxtResetPush() 15170 xmlCharEncodingHandlerPtr hdlr; in xmlDoRead() local 15172 hdlr = xmlFindCharEncodingHandler(encoding); in xmlDoRead() [all …]
|
D | xmlreader.c | 5372 xmlCharEncodingHandlerPtr hdlr; in xmlTextReaderSetup() local 5374 hdlr = xmlFindCharEncodingHandler(encoding); in xmlTextReaderSetup() 5375 if (hdlr != NULL) in xmlTextReaderSetup() 5376 xmlSwitchToEncoding(reader->ctxt, hdlr); in xmlTextReaderSetup()
|
D | HTMLparser.c | 6889 xmlCharEncodingHandlerPtr hdlr; in htmlDoRead() local 6891 hdlr = xmlFindCharEncodingHandler(encoding); in htmlDoRead() 6892 if (hdlr != NULL) { in htmlDoRead() 6893 xmlSwitchToEncoding(ctxt, hdlr); in htmlDoRead()
|
D | testapi.c | 4621 xmlSAXHandler * hdlr; /* the SAX handler */ in test_xmlSAX2InitDefaultSAXHandler() local 4629 hdlr = gen_xmlSAXHandler_ptr(n_hdlr, 0); in test_xmlSAX2InitDefaultSAXHandler() 4632 xmlSAX2InitDefaultSAXHandler(hdlr, warning); in test_xmlSAX2InitDefaultSAXHandler() 4634 des_xmlSAXHandler_ptr(n_hdlr, hdlr, 0); in test_xmlSAX2InitDefaultSAXHandler() 4659 xmlSAXHandler * hdlr; /* the SAX handler */ in test_xmlSAX2InitDocbDefaultSAXHandler() local 4664 hdlr = gen_xmlSAXHandler_ptr(n_hdlr, 0); in test_xmlSAX2InitDocbDefaultSAXHandler() 4666 xmlSAX2InitDocbDefaultSAXHandler(hdlr); in test_xmlSAX2InitDocbDefaultSAXHandler() 4668 des_xmlSAXHandler_ptr(n_hdlr, hdlr, 0); in test_xmlSAX2InitDocbDefaultSAXHandler() 4691 xmlSAXHandler * hdlr; /* the SAX handler */ in test_xmlSAX2InitHtmlDefaultSAXHandler() local 4696 hdlr = gen_xmlSAXHandler_ptr(n_hdlr, 0); in test_xmlSAX2InitHtmlDefaultSAXHandler() [all …]
|
/third_party/libxml2/include/libxml/ |
D | SAX2.h | 156 xmlSAXVersion (xmlSAXHandler *hdlr, 159 xmlSAX2InitDefaultSAXHandler (xmlSAXHandler *hdlr, 163 xmlSAX2InitHtmlDefaultSAXHandler(xmlSAXHandler *hdlr); 169 xmlSAX2InitDocbDefaultSAXHandler(xmlSAXHandler *hdlr);
|
D | SAX.h | 155 initxmlDefaultSAXHandler (xmlSAXHandlerV1 *hdlr, 159 inithtmlDefaultSAXHandler (xmlSAXHandlerV1 *hdlr); 163 initdocbDefaultSAXHandler (xmlSAXHandlerV1 *hdlr);
|
/third_party/gstreamer/gstplugins_good/gst/isomp4/ |
D | atoms.c | 983 atom_hdlr_init (AtomHDLR * hdlr, AtomsContext * context) in atom_hdlr_init() argument 987 atom_full_init (&hdlr->header, FOURCC_hdlr, 0, 0, 0, flags); in atom_hdlr_init() 989 hdlr->component_type = 0; in atom_hdlr_init() 990 hdlr->handler_type = 0; in atom_hdlr_init() 991 hdlr->manufacturer = 0; in atom_hdlr_init() 992 hdlr->flags = 0; in atom_hdlr_init() 993 hdlr->flags_mask = 0; in atom_hdlr_init() 994 hdlr->name = g_strdup (""); in atom_hdlr_init() 997 hdlr->flavor = context->flavor; in atom_hdlr_init() 1003 AtomHDLR *hdlr = g_new0 (AtomHDLR, 1); in atom_hdlr_new() local [all …]
|
D | atoms.h | 616 AtomHDLR *hdlr; member 649 AtomHDLR hdlr; member 680 AtomHDLR hdlr; member
|
D | qtdemux.c | 10961 GNode *hdlr; in qtdemux_parse_trak() local 11103 if (!(hdlr = qtdemux_tree_get_child_by_type (mdia, FOURCC_hdlr))) in qtdemux_parse_trak() 11107 GST_FOURCC_ARGS (QT_FOURCC ((guint8 *) hdlr->data + 12))); in qtdemux_parse_trak() 11109 len = QT_UINT32 ((guint8 *) hdlr->data); in qtdemux_parse_trak() 11111 stream->subtype = QT_FOURCC ((guint8 *) hdlr->data + 16); in qtdemux_parse_trak()
|
D | gstqtmux.c | 3287 if (qpad->trak->mdia.hdlr.handler_type != FOURCC_clcp) in gst_qt_mux_start_file()
|
/third_party/libxml2/os400/ |
D | rpgsupport.h | 37 XMLPUBFUN void __set_docbDefaultSAXHandler(xmlSAXHandlerV1 hdlr); 42 XMLPUBFUN void __set_htmlDefaultSAXHandler(xmlSAXHandlerV1 hdlr);
|
/third_party/libxml2/os400/libxmlrpg/ |
D | SAX2.rpgle | 224 d hdlr likeds(xmlSAXHandler) 230 d hdlr likeds(xmlSAXHandler) 237 d hdlr likeds(xmlSAXHandler) 247 d hdlr likeds(xmlSAXHandler)
|
D | SAX.rpgle | 195 d hdlr likeds(xmlSAXHandlerV1) 201 d hdlr likeds(xmlSAXHandlerV1) 207 d hdlr likeds(xmlSAXHandlerV1)
|
/third_party/gstreamer/gstplugins_bad/gst-libs/gst/isoff/ |
D | gstisoff.c | 593 gst_isoff_hdlr_box_parse (GstHdlrBox * hdlr, GstByteReader * reader) in gst_isoff_hdlr_box_parse() argument 595 memset (hdlr, 0, sizeof (*hdlr)); in gst_isoff_hdlr_box_parse() 608 if (!gst_byte_reader_get_uint32_le (reader, &hdlr->handler_type)) in gst_isoff_hdlr_box_parse() 643 if (!gst_isoff_hdlr_box_parse (&mdia->hdlr, &sub_reader)) in gst_isoff_mdia_box_parse()
|
D | gstisoff.h | 217 GstHdlrBox hdlr; member
|
/third_party/python/Lib/logging/ |
D | __init__.py | 1636 def addHandler(self, hdlr): argument 1642 if not (hdlr in self.handlers): 1643 self.handlers.append(hdlr) 1647 def removeHandler(self, hdlr): argument 1653 if hdlr in self.handlers: 1654 self.handlers.remove(hdlr) 1693 for hdlr in c.handlers: 1695 if record.levelno >= hdlr.level: 1696 hdlr.handle(record)
|
D | config.py | 912 def __init__(self, rcvr, hdlr, port, verify): argument 915 self.hdlr = hdlr 921 server = self.rcvr(port=self.port, handler=self.hdlr,
|
/third_party/python/Lib/test/ |
D | test_imaplib.py | 588 def make_server(self, addr, hdlr): argument 598 server = MyServer(addr, hdlr) 630 def reaped_server(self, hdlr): argument 631 server, thread = self.make_server((socket_helper.HOST, 0), hdlr) 638 def reaped_pair(self, hdlr): argument 639 with self.reaped_server(hdlr) as server:
|
/third_party/gstreamer/gstplugins_bad/tests/check/libs/ |
D | isoff.c | 333 fail_unless (trak->mdia.hdlr.handler_type, GST_ISOFF_FOURCC_SOUN); in GST_START_TEST()
|
/third_party/python/Doc/library/ |
D | logging.rst | 314 .. method:: Logger.addHandler(hdlr) 316 Adds the specified handler *hdlr* to this logger. 319 .. method:: Logger.removeHandler(hdlr) 321 Removes the specified handler *hdlr* from this logger.
|
/third_party/ffmpeg/libavformat/ |
D | movenc.c | 2798 const char *hdlr, *descr = NULL, *hdlr_type = NULL; in mov_write_hdlr_tag() local 2801 hdlr = "dhlr"; in mov_write_hdlr_tag() 2806 hdlr = (track->mode == MODE_MOV) ? "mhlr" : "\0\0\0\0"; in mov_write_hdlr_tag() 2858 avio_write(pb, hdlr, 4); /* handler */ in mov_write_hdlr_tag()
|
/third_party/chromium/patch/ |
D | 0001-cve.patch | 96789 @@ -2908,6 +2928,9 @@ xmlSAX2InitDefaultSAXHandler(xmlSAXHandler *hdlr, int warning) 96799 @@ -2966,6 +2989,9 @@ xmlSAX2InitHtmlDefaultSAXHandler(xmlSAXHandler *hdlr) 96818 - * @hdlr: the SAX handler 96823 -xmlSAX2InitDocbDefaultSAXHandler(xmlSAXHandler *hdlr) 96825 - if ((hdlr == NULL) || (hdlr->initialized != 0)) 96828 - hdlr->internalSubset = xmlSAX2InternalSubset; 96829 - hdlr->externalSubset = NULL; 96830 - hdlr->isStandalone = xmlSAX2IsStandalone; 96831 - hdlr->hasInternalSubset = xmlSAX2HasInternalSubset; 96832 - hdlr->hasExternalSubset = xmlSAX2HasExternalSubset; [all …]
|
/third_party/gstreamer/gstplugins_good/ |
D | ChangeLog | 21338 isomp4: Make 'hdlr' atom dump more flexible 87698 qtmux: prevent leaking hdlr name 87755 …qtmux: Set the mdia hdlr name field to what quicktime uses. Fix writing it since it's not null-ter…
|