(Context context, String host)
| 315 | } |
| 316 | |
| 317 | static InetAddress getByName(Context context, String host) throws UnknownHostException { |
| 318 | return getByName(context, host, false); |
| 319 | } |
| 320 | |
| 321 | static InetAddress[] getAllByName(Context context, String host) throws UnknownHostException { |
| 322 | return getAllByName(context, host, false); |
no test coverage detected