Home | History | Annotate | Download | only in mms

Lines Matching defs:host

169                         // Request a global route for the host to connect
283 * Request the route to the APN (either proxy host or the MMSC host)
288 * @throws MmsHttpException for unknown host or route failure
292 String host = apn.getMmsProxy();
293 if (TextUtils.isEmpty(host)) {
295 host = uri.getHost();
298 // Request route to all resolved host addresses
300 for (final InetAddress addr : InetAddress.getAllByName(host)) {
313 Log.w(MmsService.TAG, "Unknown host " + host);
314 throw new MmsHttpException(0/*statusCode*/, "Unknown host");