HomeSort by relevance Sort by last modified time
    Searched defs:rth (Results 1 - 20 of 20) sorted by null

  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemTextLiteral.java 206 SerializationHandler rth = transformer.getResultTreeHandler(); local
210 rth.processingInstruction(javax.xml.transform.Result.PI_DISABLE_OUTPUT_ESCAPING, "");
213 rth.characters(m_ch, 0, m_ch.length);
217 rth.processingInstruction(javax.xml.transform.Result.PI_ENABLE_OUTPUT_ESCAPING, "");
ElemValueOf.java 216 SerializationHandler rth = transformer.getResultTreeHandler(); local
228 rth.processingInstruction(
235 expr.executeCharsToContentHandler(xctxt, rth);
240 rth.processingInstruction(
ElemApplyTemplates.java 223 final SerializationHandler rth = transformer.getSerializationHandler(); local
224 // ContentHandler chandler = rth.getContentHandler();
294 // if(rth.m_elemIsPending || rth.m_docPending)
295 // rth.flushPending(true);
299 dtm.dispatchCharactersEvents(child, rth, false);
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
ClonerToResultTree.java 133 SerializationHandler rth,
143 dtm.dispatchCharactersEvents(node, rth, false);
157 // rth.startElement(ns, localName, dtm.getNodeNameX(node), null);
160 rth.startElement(ns, localName, dtm.getNodeNameX(node));
167 SerializerUtils.addAttributes(rth, node);
168 SerializerUtils.processNSDecls(rth, node, nodeType, dtm);
173 rth.startCDATA();
174 dtm.dispatchCharactersEvents(node, rth, false);
175 rth.endCDATA();
178 SerializerUtils.addAttribute(rth, node)
    [all...]
TransformerImpl.java 1817 SerializationHandler rth = m_serializationHandler; local
    [all...]
  /external/iproute2/tc/
tc_monitor.c 74 struct rtnl_handle rth; local
107 if (rtnl_open(&rth, groups) < 0)
110 ll_init_map(&rth);
112 if (rtnl_listen(&rth, accept_tcmsg, (void *)stdout) < 0) {
113 rtnl_close(&rth);
117 rtnl_close(&rth);
tc.c 48 struct rtnl_handle rth; variable in typeref:struct:rtnl_handle
269 if (rtnl_open(&rth, 0) < 0) {
293 rtnl_close(&rth);
371 if (rtnl_open(&rth, 0) < 0) {
383 rtnl_close(&rth);
  /external/iproute2/ip/
rtmon.c 76 struct rtnl_handle rth; local
162 if (rtnl_open(&rth, groups) < 0)
165 if (rtnl_wilddump_request(&rth, AF_UNSPEC, RTM_GETLINK) < 0) {
172 if (rtnl_dump_filter(&rth, dump_msg2, fp) < 0) {
179 if (rtnl_listen(&rth, dump_msg, (void *)fp) < 0)
ip.c 43 struct rtnl_handle rth = { .fd = -1 }; variable in typeref:struct:rtnl_handle
141 if (rtnl_open(&rth, 0) < 0) {
168 rtnl_close(&rth);
311 if (rtnl_open(&rth, 0) < 0)
320 rtnl_close(&rth);
xfrm.h 70 struct rtnl_handle *rth; member in struct:xfrm_buffer
xfrm_policy.c 246 struct rtnl_handle rth; local
383 if (rtnl_open_byproto(&rth, 0, NETLINK_XFRM) < 0)
389 if (rtnl_talk(&rth, &req.n, NULL, 0) < 0)
392 rtnl_close(&rth);
556 struct rtnl_handle rth; local
645 if (rtnl_open_byproto(&rth, 0, NETLINK_XFRM) < 0)
665 if (rtnl_talk(&rth, &req.n, res_nlbuf, res_size) < 0)
668 rtnl_close(&rth);
702 struct rtnl_handle *rth = xb->rth; local
774 struct rtnl_handle rth; local
1015 struct rtnl_handle rth; local
1081 struct rtnl_handle rth; local
1108 struct rtnl_handle rth; local
    [all...]
xfrm_state.c 289 struct rtnl_handle rth; local
723 if (rtnl_open_byproto(&rth, 0, NETLINK_XFRM) < 0)
729 if (rtnl_talk(&rth, &req.n, NULL, 0) < 0)
732 rtnl_close(&rth);
739 struct rtnl_handle rth; local
854 if (rtnl_open_byproto(&rth, 0, NETLINK_XFRM) < 0)
861 if (rtnl_talk(&rth, &req.n, res_n, sizeof(res_buf)) < 0)
869 rtnl_close(&rth);
991 struct rtnl_handle rth; local
1042 if (rtnl_open_byproto(&rth, 0, NETLINK_XFRM) < 0
1078 struct rtnl_handle *rth = xb->rth; local
1140 struct rtnl_handle rth; local
1325 struct rtnl_handle rth; local
1352 struct rtnl_handle rth; local
    [all...]
  /external/iproute2/bridge/
bridge.c 19 struct rtnl_handle rth = { .fd = -1 }; variable in typeref:struct:rtnl_handle
93 if (rtnl_open(&rth, 0) < 0) {
118 rtnl_close(&rth);
198 if (rtnl_open(&rth, 0) < 0)
204 rtnl_close(&rth);
  /external/iproute2/genl/
ctrl.c 44 struct rtnl_handle rth; local
59 if (rtnl_open_byproto(&rth, 0, NETLINK_GENERIC) < 0) {
66 if (rtnl_talk(&rth, nlh, nlh, sizeof(req)) < 0) {
106 rtnl_close(&rth);
288 struct rtnl_handle rth; local
303 if (rtnl_open_byproto(&rth, 0, NETLINK_GENERIC) < 0) {
334 if (rtnl_talk(&rth, nlh, nlh, sizeof(req)) < 0) {
348 nlh->nlmsg_seq = rth.dump = ++rth.seq;
350 if (rtnl_send(&rth, nlh, nlh->nlmsg_len) < 0)
367 struct rtnl_handle rth; local
    [all...]
  /external/iproute2/misc/
arpd.c 59 struct rtnl_handle rth; variable in typeref:struct:rtnl_handle
281 return rtnl_send(&rth, &req, req.n.nlmsg_len) <= 0;
427 if (rtnl_wilddump_request(&rth, AF_INET, RTM_GETNEIGH) < 0) {
451 status = recvmsg(rth.fd, &msg, MSG_DONTWAIT);
778 if (rtnl_open(&rth, RTMGRP_NEIGH) < 0) {
782 pset[1].fd = rth.fd;
ifstat.c 198 struct rtnl_handle rth; local
201 if (rtnl_open(&rth, 0) < 0)
205 ll_init_map(&rth);
207 if (rtnl_wilddump_stats_req_filter(&rth, AF_UNSPEC, RTM_GETSTATS,
213 if (rtnl_dump_filter(&rth, get_nlmsg_extended, NULL) < 0) {
218 if (rtnl_wilddump_request(&rth, AF_INET, RTM_GETLINK) < 0) {
223 if (rtnl_dump_filter(&rth, get_nlmsg, NULL) < 0) {
229 rtnl_close(&rth);
ss.c 1477 struct rtnl_handle rth; local
1479 if (rtnl_open(&rth, 0) < 0)
1482 ll_init_map(&rth);
1483 rtnl_close(&rth);
2597 struct rtnl_handle *rth; member in struct:inet_diag_arg
2604 struct rtnl_handle *rth = diag_arg->rth; local
2662 struct rtnl_handle rth, rth2; local
3106 struct rtnl_handle rth; local
3722 struct rtnl_handle rth; local
    [all...]
  /external/annotation-tools/asmx/test/lib/
xalan-2.6.0.jar 
  /prebuilts/tools/common/m2/repository/xalan/xalan/2.6.0/
xalan-2.6.0.jar 
  /prebuilts/tools/common/m2/repository/xalan/xalan/2.7.1/
xalan-2.7.1.jar 

Completed in 368 milliseconds