Searched refs:hdlr (Results 1 - 4 of 4) sorted by relevance
/third_party/python/Lib/test/ |
H A D | test_imaplib.py | 591 def make_server(self, addr, hdlr): 601 server = MyServer(addr, hdlr) 633 def reaped_server(self, hdlr): 634 server, thread = self.make_server((socket_helper.HOST, 0), hdlr) 641 def reaped_pair(self, hdlr): 642 with self.reaped_server(hdlr) as server:
|
/third_party/python/Lib/logging/ |
H A D | __init__.py | 1646 def addHandler(self, hdlr): 1652 if not (hdlr in self.handlers): 1653 self.handlers.append(hdlr) 1657 def removeHandler(self, hdlr): 1663 if hdlr in self.handlers: 1664 self.handlers.remove(hdlr) 1703 for hdlr in c.handlers: 1705 if record.levelno >= hdlr.level: 1706 hdlr.handle(record)
|
H A D | config.py | 925 def __init__(self, rcvr, hdlr, port, verify): 928 self.hdlr = hdlr 934 server = self.rcvr(port=self.port, handler=self.hdlr,
|
/third_party/ffmpeg/libavformat/ |
H A D | movenc.c | 123 { "empty_hdlr_name", "write zero-length name string in hdlr atoms within mdia and minf atoms", offsetof(MOVMuxContext, empty_hdlr_name), AV_OPT_TYPE_BOOL, {.i64 = 0}, 0, 1, AV_OPT_FLAG_ENCODING_PARAM}, 3033 const char *hdlr, *descr = NULL, *hdlr_type = NULL; in mov_write_hdlr_tag() local 3037 hdlr = "dhlr"; in mov_write_hdlr_tag() 3042 hdlr = (track->mode == MODE_MOV) ? "mhlr" : "\0\0\0\0"; in mov_write_hdlr_tag() 3089 // hdlr.name is used by some players to identify the content title in mov_write_hdlr_tag() 3103 ffio_wfourcc(pb, "hdlr"); in mov_write_hdlr_tag() 3105 avio_write(pb, hdlr, 4); /* handler */ in mov_write_hdlr_tag() 3329 if (track->mode == MODE_MOV) /* ISO 14496-12 8.4.3.1 specifies hdlr only within mdia or meta boxes */ in mov_write_minf_tag() 4013 ffio_wfourcc(pb, "hdlr"); 4442 ffio_wfourcc(pb, "hdlr"); [all...] |
Completed in 15 milliseconds