| 37 | } |
| 38 | |
| 39 | bool wifi::commandhelper::rfkill_unblock_all() { |
| 40 | get_logger()->info("rfkill_unblock_all"); |
| 41 | std::vector<std::string> args{"unblock", "all"}; |
| 42 | bool success = OHDUtil::run_command("rfkill", args); |
| 43 | return success; |
| 44 | } |
| 45 | |
| 46 | bool wifi::commandhelper::ip_link_set_card_state(const std::string &device, |
| 47 | bool up) { |
nothing calls this directly
no test coverage detected