| 40 | { |
| 41 | static bool adbKillServer = false; |
| 42 | bool toolExists(const rdcstr &path) |
| 43 | { |
| 44 | if(path.empty()) |
| 45 | return false; |
| 46 | return FileIO::exists(path) || FileIO::exists(path + ".exe"); |
| 47 | } |
| 48 | rdcstr getToolInSDK(ToolDir subdir, const rdcstr &jdkroot, const rdcstr &sdkroot, |
| 49 | const rdcstr &toolname) |
| 50 | { |
no test coverage detected