Home | History | Annotate | Download | only in service

Lines Matching defs:apn

152                         ApnSettings apn = null;
154 apn = ApnSettings.load(context, apnName, mSubId);
156 // If no APN could be found, fall back to trying without the APN name
158 // If the APN name was already null then don't need to retry
161 Log.i(MmsService.TAG, "MmsRequest: No match with APN name:"
163 apn = ApnSettings.load(context, null, mSubId);
165 Log.i(MmsService.TAG, "MmsRequest: using " + apn.toString());
166 response = doHttp(context, networkManager, apn);
174 Log.e(MmsService.TAG, "MmsRequest: APN failure", e);
275 * @param apn The APN setting
279 protected abstract byte[] doHttp(Context context, MmsNetworkManager netMgr, ApnSettings apn)