/system/netd/server/ |
D | TrafficController.cpp | 812 void dumpBpfMap(const std::string& mapName, DumpWriter& dw, const std::string& header) { in dumpBpfMap() argument 813 dw.blankline(); in dumpBpfMap() 814 dw.println("%s:", mapName.c_str()); in dumpBpfMap() 816 dw.println(header); in dumpBpfMap() 822 void TrafficController::dump(DumpWriter& dw, bool verbose) { in dump() argument 824 ScopedIndent indentTop(dw); in dump() 825 dw.println("TrafficController"); in dump() 827 ScopedIndent indentPreBpfModule(dw); in dump() 829 dw.blankline(); in dump() 830 dw.println("mCookieTagMap status: %s", in dump() [all …]
|
D | TcpSocketMonitor.cpp | 78 static void tcpInfoPrint(DumpWriter &dw, Fwmark mark, const struct inet_diag_msg *sockinfo, in tcpInfoPrint() argument 85 dw.println( in tcpInfoPrint() 104 void TcpSocketMonitor::dump(DumpWriter& dw) { in dump() argument 107 dw.println("TcpSocketMonitor"); in dump() 108 ScopedIndent tcpSocketMonitorDetails(dw); in dump() 112 dw.println("running=%d, suspended=%d, last poll %lld ms ago", in dump() 116 dw.blankline(); in dump() 117 dw.println("Network stats:"); in dump() 122 dw.println("netId=%d sent=%d lost=%d rttMs=%gms sentAckDiff=%dms", in dump() 132 dw.blankline(); in dump() [all …]
|
D | NetworkController.cpp | 724 void NetworkController::dump(DumpWriter& dw) { in dump() argument 727 dw.incIndent(); in dump() 728 dw.println("NetworkController"); in dump() 730 dw.incIndent(); in dump() 731 dw.println("Default network: %u", mDefaultNetId); in dump() 733 dw.blankline(); in dump() 734 dw.println("Networks:"); in dump() 735 dw.incIndent(); in dump() 738 dw.println(network->toString()); in dump() 740 dw.incIndent(); in dump() [all …]
|
D | ClatdController.cpp | 579 void ClatdController::dumpEgress(DumpWriter& dw) { in dumpEgress() argument 582 ScopedIndent bpfIndent(dw); in dumpEgress() 583 dw.println("BPF egress map: iif(iface) v4Addr -> v6Addr nat64Prefix oif(iface)"); in dumpEgress() 585 ScopedIndent bpfDetailIndent(dw); in dumpEgress() 586 const auto printClatMap = [&dw](const ClatEgress4Key& key, const ClatEgress4Value& value, in dumpEgress() 600 dw.println("%u(%s) %s -> %s %s/96 %u(%s) %s", key.iif, iifStr, local4Str, local6Str, in dumpEgress() 606 dw.println("Error printing BPF map: %s", res.error().message().c_str()); in dumpEgress() 610 void ClatdController::dumpIngress(DumpWriter& dw) { in dumpIngress() argument 613 ScopedIndent bpfIndent(dw); in dumpIngress() 614 dw.println("BPF ingress map: iif(iface) nat64Prefix v6Addr -> v4Addr oif(iface)"); in dumpIngress() [all …]
|
D | ClatdController.h | 53 void dump(netdutils::DumpWriter& dw) EXCLUDES(mutex); 83 void dumpEgress(netdutils::DumpWriter& dw) REQUIRES(mutex); 84 void dumpIngress(netdutils::DumpWriter& dw) REQUIRES(mutex); 85 void dumpTrackers(netdutils::DumpWriter& dw) REQUIRES(mutex);
|
D | NetdNativeService.cpp | 204 DumpWriter dw(fd); in dump() local 207 dw.blankline(); in dump() 208 gCtls->tcpSocketMonitor.dump(dw); in dump() 209 dw.blankline(); in dump() 214 dw.blankline(); in dump() 215 gCtls->trafficCtrl.dump(dw, true); in dump() 216 dw.blankline(); in dump() 220 process::dump(dw); in dump() 221 dw.blankline(); in dump() 222 gCtls->netCtrl.dump(dw); in dump() [all …]
|
D | TetherController.cpp | 930 void TetherController::dumpIfaces(DumpWriter& dw) { in dumpIfaces() argument 931 dw.println("Interface pairs:"); in dumpIfaces() 933 ScopedIndent ifaceIndent(dw); in dumpIfaces() 935 dw.println("%s -> %s %s", it.first.c_str(), it.second.iface.c_str(), in dumpIfaces() 940 void TetherController::dump(DumpWriter& dw) { in dump() argument 943 ScopedIndent tetherControllerIndent(dw); in dump() 944 dw.println("TetherController"); in dump() 945 dw.incIndent(); in dump() 947 dw.println("Forwarding requests: " + Join(mForwardingRequests, ' ')); in dump() 949 dw.println(StringPrintf("DNS: netId %d servers [%s]", mDnsNetId, in dump() [all …]
|
D | Process.h | 54 void dump(netdutils::DumpWriter& dw);
|
D | Process.cpp | 124 void dump(DumpWriter& dw) { in dump() argument 139 dw.println(out.str()); in dump()
|
D | TetherController.h | 153 void dump(netdutils::DumpWriter& dw); 154 void dumpIfaces(netdutils::DumpWriter& dw);
|
D | TcpSocketMonitor.h | 80 void dump(netdutils::DumpWriter& dw);
|
D | NetworkController.h | 149 void dump(netdutils::DumpWriter& dw);
|
D | TrafficController.h | 100 void dump(netdutils::DumpWriter& dw, bool verbose) EXCLUDES(mMutex);
|
D | XfrmController.cpp | 1725 void XfrmController::dump(DumpWriter& dw) { in dump() argument 1726 ScopedIndent indentForXfrmController(dw); in dump() 1727 dw.println("XfrmController"); in dump() 1729 ScopedIndent indentForXfrmISupport(dw); in dump() 1730 dw.println("XFRM-I support: %d", mIsXfrmIntfSupported); in dump()
|
D | XfrmController.h | 278 void dump(netdutils::DumpWriter& dw);
|
/system/netd/libnetdutils/include/netdutils/ |
D | DumpWriter.h | 53 explicit ScopedIndent(DumpWriter& dw) : mDw(dw) { mDw.incIndent(); } in ScopedIndent() argument
|
/system/memory/libmeminfo/testdata1/ |
D | smaps | 2853 VmFlags: rd mr mw me dw 2873 VmFlags: rd ex mr mw me dw 2893 VmFlags: rd mr mw me dw ac 56077 VmFlags: rd mr mw me dw 56097 VmFlags: rd ex mr mw me dw 56117 VmFlags: rd wr mr mw me dw ac 56137 VmFlags: rd mr mw me dw ac
|