Lines Matching refs:RunDumpsys

360 static void RunDumpsys(const std::string& title, const std::vector<std::string>& dumpsysArgs,  in RunDumpsys()  function
363 return ds.RunDumpsys(title, dumpsysArgs, options, dumpsysTimeoutMs, out_fd); in RunDumpsys()
365 static void RunDumpsys(const std::string& title, const std::vector<std::string>& dumpsysArgs, in RunDumpsys() function
367 return ds.RunDumpsys(title, dumpsysArgs, Dumpstate::DEFAULT_DUMPSYS, 0, out_fd); in RunDumpsys()
1556 RunDumpsys("DUMPSYS NETWORK_SERVICE_LIMITED", {"wifi", "-a"}, in DumpstateLimitedOnly()
1558 RunDumpsys("DUMPSYS CONNECTIVITY REQUESTS", {"connectivity", "requests"}, in DumpstateLimitedOnly()
1565 RunDumpsys("DROPBOX SYSTEM SERVER CRASHES", {"dropbox", "-p", "system_server_crash"}); in DumpstateLimitedOnly()
1566 RunDumpsys("DROPBOX SYSTEM APP CRASHES", {"dropbox", "-p", "system_app_crash"}); in DumpstateLimitedOnly()
1594 RunDumpsys("CHECKIN BATTERYSTATS", {"batterystats", "-c"}, out_fd); in DumpCheckins()
1595 RunDumpsys("CHECKIN NETSTATS", {"netstats", "--checkin"}, out_fd); in DumpCheckins()
1596 RunDumpsys("CHECKIN PROCSTATS", {"procstats", "-c"}, out_fd); in DumpCheckins()
1597 RunDumpsys("CHECKIN USAGESTATS", {"usagestats", "-c"}, out_fd); in DumpCheckins()
1598 RunDumpsys("CHECKIN PACKAGE", {"package", "--checkin"}, out_fd); in DumpCheckins()
1619 RunDumpsys("APP ACTIVITIES", {"activity", "-v", "all"}, DUMPSYS_COMPONENTS_OPTIONS, 0, out_fd); in DumpAppInfos()
1625 RunDumpsys("APP SERVICES PLATFORM", {"activity", "service", "all-platform-non-critical"}, in DumpAppInfos()
1632 RunDumpsys("APP SERVICES NON-PLATFORM", {"activity", "service", "all-non-platform"}, in DumpAppInfos()
1639 RunDumpsys("APP PROVIDERS PLATFORM", {"activity", "provider", "all-platform"}, in DumpAppInfos()
1646 RunDumpsys("APP PROVIDERS NON-PLATFORM", {"activity", "provider", "all-non-platform"}, in DumpAppInfos()
1757 RunDumpsys("EBPF MAP STATS", {"connectivity", "trafficcontroller"}); in dumpstate()
1776 RunDumpsys("SERVICE HIGH connectivity", {"connectivity", "--dump-priority", "HIGH"}, in dumpstate()
1846 RunDumpsys("DROPBOX SYSTEM SERVER CRASHES", {"dropbox", "-p", "system_server_crash"}); in dumpstate()
1847 RunDumpsys("DROPBOX SYSTEM APP CRASHES", {"dropbox", "-p", "system_app_crash"}); in dumpstate()
1860 RunDumpsys("STATSDSTATS", {"stats", "--metadata"}); in dumpstate()
2037 RunDumpsys("NETWORK DIAGNOSTICS", {"connectivity", "--diag"}, in DumpstateRadioCommon()
2086 RunDumpsys("DUMPSYS", {"connectivity"}, CommandOptions::WithTimeout(90).Build(), in DumpstateTelephonyOnly()
2088 RunDumpsys("DUMPSYS", {"vcn_management"}, CommandOptions::WithTimeout(90).Build(), in DumpstateTelephonyOnly()
2092 RunDumpsys("DUMPSYS", {"carrier_config"}, CommandOptions::WithTimeout(90).Build(), in DumpstateTelephonyOnly()
2098 RunDumpsys("DUMPSYS", {"carrier_config", "--requesting-package", calling_package}, in DumpstateTelephonyOnly()
2101 RunDumpsys("DUMPSYS", {"wifi"}, CommandOptions::WithTimeout(90).Build(), SEC_TO_MSEC(10)); in DumpstateTelephonyOnly()
2102 RunDumpsys("DUMPSYS", {"netpolicy"}, CommandOptions::WithTimeout(90).Build(), SEC_TO_MSEC(10)); in DumpstateTelephonyOnly()
2103 RunDumpsys("DUMPSYS", {"network_management"}, CommandOptions::WithTimeout(90).Build(), in DumpstateTelephonyOnly()
2105 RunDumpsys("DUMPSYS", {"telephony.registry"}, CommandOptions::WithTimeout(90).Build(), in DumpstateTelephonyOnly()
2107 RunDumpsys("DUMPSYS", {"isub"}, CommandOptions::WithTimeout(90).Build(), in DumpstateTelephonyOnly()
2109 RunDumpsys("DUMPSYS", {"telecom"}, CommandOptions::WithTimeout(90).Build(), in DumpstateTelephonyOnly()
2113 RunDumpsys("DUMPSYS", {"netd"}, CommandOptions::WithTimeout(90).Build(), SEC_TO_MSEC(10)); in DumpstateTelephonyOnly()
2115 RunDumpsys("DUMPSYS", {"connmetrics"}, CommandOptions::WithTimeout(90).Build(), in DumpstateTelephonyOnly()
2118 RunDumpsys("BATTERYSTATS", {"batterystats"}, CommandOptions::WithTimeout(90).Build(), in DumpstateTelephonyOnly()
2122 RunDumpsys("BATTERYSTATS", {"deviceidle"}, CommandOptions::WithTimeout(90).Build(), in DumpstateTelephonyOnly()
2130 RunDumpsys("TELEPHONY SERVICES", {"activity", "service", "TelephonyDebugService"}); in DumpstateTelephonyOnly()
2140 RunDumpsys("APP SERVICES NON-PLATFORM", {"activity", "service", "all-non-platform"}, in DumpstateTelephonyOnly()
2148 RunDumpsys("CHECKIN BATTERYSTATS", {"batterystats", "-c"}); in DumpstateTelephonyOnly()
2183 RunDumpsys("DUMPSYS", {"connectivity"}, CommandOptions::WithTimeout(90).Build(), in DumpstateWifiOnly()
2185 RunDumpsys("DUMPSYS", {"wifi"}, CommandOptions::WithTimeout(90).Build(), in DumpstateWifiOnly()
4413 void Dumpstate::RunDumpsys(const std::string& title, const std::vector<std::string>& dumpsys_args, in RunDumpsys() function in Dumpstate