HomeSort by relevance Sort by last modified time
    Searched defs:rth (Results 1 - 19 of 19) 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 49 struct rtnl_handle rth; variable in typeref:struct:rtnl_handle
273 if (rtnl_open(&rth, 0) < 0) {
297 rtnl_close(&rth);
375 if (rtnl_open(&rth, 0) < 0) {
387 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
136 if (rtnl_open(&rth, 0) < 0) {
163 rtnl_close(&rth);
301 if (rtnl_open(&rth, 0) < 0)
310 rtnl_close(&rth);
xfrm.h 74 struct rtnl_handle *rth; member in struct:xfrm_buffer
xfrm_policy.c 246 struct rtnl_handle rth; local
389 if (rtnl_open_byproto(&rth, 0, NETLINK_XFRM) < 0)
395 if (rtnl_talk(&rth, &req.n, NULL, 0) < 0)
398 rtnl_close(&rth);
559 struct rtnl_handle rth; local
652 if (rtnl_open_byproto(&rth, 0, NETLINK_XFRM) < 0)
672 if (rtnl_talk(&rth, &req.n, res_nlbuf, res_size) < 0)
675 rtnl_close(&rth);
711 struct rtnl_handle *rth = xb->rth; local
772 struct rtnl_handle rth; local
1008 struct rtnl_handle rth; local
1076 struct rtnl_handle rth; local
1105 struct rtnl_handle rth; local
    [all...]
xfrm_state.c 271 struct rtnl_handle rth; local
684 if (rtnl_open_byproto(&rth, 0, NETLINK_XFRM) < 0)
690 if (rtnl_talk(&rth, &req.n, NULL, 0) < 0)
693 rtnl_close(&rth);
700 struct rtnl_handle rth; local
820 if (rtnl_open_byproto(&rth, 0, NETLINK_XFRM) < 0)
827 if (rtnl_talk(&rth, &req.n, res_n, sizeof(res_buf)) < 0)
835 rtnl_close(&rth);
957 struct rtnl_handle rth; local
1010 if (rtnl_open_byproto(&rth, 0, NETLINK_XFRM) < 0
1048 struct rtnl_handle *rth = xb->rth; local
1098 struct rtnl_handle rth; local
1283 struct rtnl_handle rth; local
1311 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);
196 if (rtnl_open(&rth, 0) < 0)
202 rtnl_close(&rth);
  /external/iproute2/genl/
ctrl.c 44 struct rtnl_handle rth; local
63 if (rtnl_open_byproto(&rth, 0, NETLINK_GENERIC) < 0) {
70 if (rtnl_talk(&rth, nlh, nlh, sizeof(req)) < 0) {
111 rtnl_close(&rth);
293 struct rtnl_handle rth; local
313 if (rtnl_open_byproto(&rth, 0, NETLINK_GENERIC) < 0) {
344 if (rtnl_talk(&rth, nlh, nlh, sizeof(req)) < 0) {
358 nlh->nlmsg_seq = rth.dump = ++rth.seq;
360 if (rtnl_send(&rth, nlh, nlh->nlmsg_len) < 0)
377 struct rtnl_handle rth; local
    [all...]
  /external/iproute2/misc/
arpd.c 62 struct rtnl_handle rth; variable in typeref:struct:rtnl_handle
287 return rtnl_send(&rth, &req, req.n.nlmsg_len) <= 0;
432 if (rtnl_wilddump_request(&rth, AF_INET, RTM_GETNEIGH) < 0) {
458 status = recvmsg(rth.fd, &msg, MSG_DONTWAIT);
782 if (rtnl_open(&rth, RTMGRP_NEIGH) < 0) {
786 pset[1].fd = rth.fd;
ifstat.c 150 struct rtnl_handle rth; local
152 if (rtnl_open(&rth, 0) < 0)
155 if (rtnl_wilddump_request(&rth, AF_INET, RTM_GETLINK) < 0) {
160 if (rtnl_dump_filter(&rth, get_nlmsg, NULL) < 0) {
165 rtnl_close(&rth);
ss.c 1391 struct rtnl_handle rth; local
1392 if (rtnl_open(&rth, 0) < 0)
1395 ll_init_map(&rth);
1396 rtnl_close(&rth);
2249 struct rtnl_handle *rth; member in struct:inet_diag_arg
2257 struct rtnl_handle *rth = diag_arg->rth; local
2297 struct rtnl_handle rth, rth2; local
2774 struct rtnl_handle rth; local
3357 struct rtnl_handle rth; local
    [all...]
  /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 327 milliseconds