HomeSort by relevance Sort by last modified time
    Searched defs:apn (Results 1 - 14 of 14) sorted by null

  /frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DataProfile.java 30 //the APN to connect to
31 public final String apn; field in class:DataProfile
38 //the username for APN, or NULL
40 //the password for APN, or NULL
56 DataProfile(int profileId, String apn, String protocol, int authType,
61 this.apn = apn;
73 DataProfile(ApnSetting apn, boolean isRoaming) {
74 this(apn.profileId, apn.apn, isRoaming? apn.protocol : apn.roamingProtocol
    [all...]
ApnSetting.java 29 * This class represents a apn setting for create PDP link
37 public final String apn; field in class:ApnSetting
54 * Current status of APN
55 * true : enabled APN, false : disabled APN.
88 public ApnSetting(int id, String numeric, String carrier, String apn,
98 this.apn = apn;
135 * <carrier>, <apn>, <proxy>, <port>, <user>, <password>, <server>,
140 * [ApnSettingV2] <carrier>, <apn>, <proxy>, <port>, <user>, <password>, <server>
257 ApnSetting apn = fromString(apnString); local
    [all...]
ApnContext.java 35 * Maintain the Apn context
71 * user/app requested connection on this APN
155 ApnSetting apn = null; local
159 apn = list.get(0);
162 return apn;
165 public synchronized void removeWaitingApn(ApnSetting apn) {
167 mWaitingApns.remove(apn);
265 if ((mApnSetting != null) && (mApnSetting.apn != null)) {
266 return (mApnSetting.apn.equals(provisioningApn));
DctController.java 369 String apn = apnForNetworkRequest(requestInfo.request); local
373 dcTracker.incApnRefCount(apn);
391 String apn = apnForNetworkRequest(requestInfo.request); local
395 dcTracker.decApnRefCount(apn);
437 String apn = apnForNetworkRequest(requestInfo.request); local
443 dcTracker.decApnRefCount(apn);
556 loge("RCS APN type not yet supported");
561 loge("XCAP APN type not yet supported");
566 loge("EIMS APN type not yet supported");
569 loge("Multiple apn types specified in request - result is unspecified!")
628 String apn = apnForNetworkRequest(networkRequest); local
652 String apn = apnForNetworkRequest(networkRequest); local
    [all...]
DataConnection.java 379 * not set by the network, set it again using the mtu szie value defined in the APN
380 * database for the connected APN
382 private void checkSetMtu(ApnSetting apn, LinkProperties lp) {
385 if (apn == null || lp == null) return;
392 if (apn != null && apn.mtu != PhoneConstants.UNSET_MTU) {
393 lp.setMtu(apn.mtu);
394 if (DBG) log("MTU set by APN to: " + apn.mtu);
506 + "' APN='" + mApnSetting.ap
    [all...]
DcTracker.java 108 * Handles changes to the APN db.
143 /** Watches for changes to the APN db. */
176 // Add Emergency APN to APN setting list by default to support EPDN in sim absent cases
378 // Set the emergency APN availability status as TRUE irrespective of conditions checked in
499 // Return all active apn types
501 if (DBG) log("get all active apn types");
514 // Return active apn of specific apn type
516 if (VDBG) log( "get active apn string for type:" + apnType)
1166 ApnSetting apn = new ApnSetting( local
1212 ApnSetting apn = makeApnSetting(cursor); local
1866 ApnSetting apn = apnContext.getApnSetting(); local
1969 ApnSetting apn = apnContext.getApnSetting(); local
1979 ApnSetting apn = apnContext.getApnSetting(); local
    [all...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
ApnSettingTest.java 42 assertEquals(a1.apn, a2.apn);
89 testString = "[ApnSettingV2] Name,apn,,,,,,,,,123,45,,mms|*,IPV6,IP,true,14";
91 -1, "12345", "Name", "apn", "", "",
97 testString = "[ApnSettingV2] Name,apn, ,,,,,,,,123,45,,mms|*,IPV4V6, IP,true,14";
99 -1, "12345", "Name", "apn", "", "",
105 testString = "[ApnSettingV3] Name,apn,,,,,,,,,123,45,,mms|*,IPV6,IP,true,14,,,,,,,spn,testspn";
107 -1, "12345", "Name", "apn", "", "", "", "", "", "", "", 0, mmsTypes, "IPV4V6",
111 // Return no apn if insufficient fields given.
112 testString = "[ApnSettingV2] Name,apn,,,,,,,,,123, 45,,mms|*"
141 ApnSetting apn = new ApnSetting( local
    [all...]
  /packages/services/Mms/src/com/android/mms/service/
MmsRequest.java 152 ApnSettings apn = null; local
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)
    [all...]
  /packages/apps/Settings/src/com/android/settings/
ApnSettings.java 214 + "\" AND NOT (type='ia' AND (apn=\"\" OR apn IS NULL))";
217 "_id", "name", "apn", "type"}, where, null,
230 String apn = cursor.getString(APN_INDEX); local
238 pref.setSummary(apn);
351 "Restore default APN Handler: Process Thread");
ApnEditor.java 108 Telephony.Carriers.APN, // 2
333 // allow user to edit carrier_enabled for some APN
455 // If it's a new APN, then cancel will delete the new entry in onPause
517 String apn = checkNotSet(mApn.getText()); local
532 // If it's a new APN and a name or apn haven't been entered, then erase the entry
533 if (force && mNewApn && name.length() < 1 && apn.length() < 1) {
544 values.put(Telephony.Carriers.APN, apn);
593 String apn = checkNotSet(mApn.getText()) local
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/options/chromeos/
internet_options_handler.cc 420 std::string apn, username, password; local
421 if (!args->GetString(1, &apn) ||
429 if (apn.empty()) {
448 apn_dict->SetStringWithoutPathExpansion(shill::kApnProperty, apn);
    [all...]
  /external/qemu/telephony/
android_modem.c 216 char apn[ A_DATA_APN_SIZE ]; member in struct:__anon13903
1986 char apn[32]; local
    [all...]
  /hardware/ril/reference-ril/
reference-ril.c 538 // APN ignored for v5
1646 const char *apn; local
    [all...]
  /hardware/ril/include/telephony/
ril.h 312 char * apn; /* ignored */ member in struct:__anon21606
635 mode was up on same APN/data profile - no retry until
1363 char* apn; member in struct:__anon21693
5033 char *apn; member in struct:__anon21695
    [all...]

Completed in 310 milliseconds