| 363 | } |
| 364 | |
| 365 | json::object AdbControlUnitMgr::get_info() const |
| 366 | { |
| 367 | json::object info; |
| 368 | info["type"] = "adb"; |
| 369 | info["adb_path"] = path_to_utf8_string(adb_path_); |
| 370 | info["adb_serial"] = adb_serial_; |
| 371 | info["screencap_methods"] = static_cast<int64_t>(screencap_methods_); |
| 372 | info["input_methods"] = static_cast<int64_t>(input_methods_); |
| 373 | info["agent_path"] = path_to_utf8_string(agent_path_); |
| 374 | info["config"] = config_; |
| 375 | return info; |
| 376 | } |
| 377 | |
| 378 | MAA_CTRL_UNIT_NS_END |
nothing calls this directly
no outgoing calls
no test coverage detected