HomeSort by relevance Sort by last modified time
    Searched refs:APN (Results 1 - 24 of 24) sorted by null

  /external/swiftshader/third_party/LLVM/lib/VMCore/
BasicBlock.cpp 223 PHINode *APN = dyn_cast<PHINode>(&front());
224 if (!APN) return; // Quick exit.
238 unsigned max_idx = APN->getNumIncomingValues();
241 BasicBlock *Other = APN->getIncomingBlock(APN->getIncomingBlock(0) == Pred);
  /external/llvm/lib/IR/
BasicBlock.cpp 288 PHINode *APN = dyn_cast<PHINode>(&front());
289 if (!APN) return; // Quick exit.
303 unsigned max_idx = APN->getNumIncomingValues();
306 BasicBlock *Other = APN->getIncomingBlock(APN->getIncomingBlock(0) == Pred);
  /packages/apps/Messaging/src/com/android/messaging/sms/
ApnDatabase.java 55 private static final String APN_DATABASE_NAME = "apn.db";
57 /** table for carrier APN's */
58 public static final String APN_TABLE = "apn";
60 // APN table
68 Telephony.Carriers.APN + " TEXT," +
100 Telephony.Carriers.APN, // 10
121 Telephony.Carriers.APN,
176 // Build the table using defaults (apn info bundled with the app)
217 * Store use changes of old table into the new apn table
255 // User APN does not exist, insert into the new tabl
    [all...]
ApnsXmlProcessor.java 54 APN_ATTRIBUTE_MAP.put("apn", Telephony.Carriers.APN);
74 private static final String TAG_APN = "apn";
77 // Handler to process one apn
133 // an apn element
139 // For "apns", there could be "apn" or both "apn" and "mms_config"
225 * Process one apn
227 * @param apnValues Where we store the parsed apn
249 apnValues.put(Telephony.Carriers.AUTH_TYPE, parseInt(authType, -1, "apn authtype"))
    [all...]
BugleApnSettingsLoader.java 45 * APN loader for default SMS SIM
49 * 2. System APN table
50 * 3. Local APN table
54 * The base implementation of an APN
56 private static class BaseApn implements Apn {
58 * Create a base APN from parameters
60 * @param typesIn the APN type field
61 * @param mmscIn the APN mmsc field
62 * @param proxyIn the APN mmsproxy field
63 * @param portIn the APN mmsport fiel
370 final Apn apn = BaseApn.from("mms", mmsc, proxy, Integer.toString(port)); local
420 final ApnSettingsLoader.Apn apn = BaseApn.from( local
509 final Apn apn = DatabaseApn.from(apns, local
    [all...]
  /external/llvm/lib/Transforms/Utils/
PromoteMemoryToRegister.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
PromoteMemoryToRegister.cpp     [all...]
  /packages/providers/TelephonyProvider/tests/src/com/android/providers/telephony/
TelephonyProviderTest.java 117 // Gives permission to write to the APN table within the MockContext
159 contentValues.put(Carriers.APN, insertApn);
170 Carriers.APN,
  /packages/services/Mms/src/com/android/mms/service/
ApnSettings.java 34 * APN settings used for MMS transactions
43 // Debug text for this APN: a concatenation of interesting columns of this APN
52 Telephony.Carriers.APN,
85 * Load APN settings from system
87 * @param apnName the optional APN name to match
92 LogUtil.i(requestId, "Loading APN using name " + apnName);
99 //selection += " AND " + Telephony.Carriers.APN + "=?";
100 selection = Telephony.Carriers.APN + "=?";
119 // Read values from APN setting
    [all...]
  /packages/providers/TelephonyProvider/src/com/android/providers/telephony/
TelephonyProvider.java 94 private static final String PREF_FILE_APN = "preferred-apn";
97 private static final String PREF_FILE_FULL_APN = "preferred-full-apn";
143 CARRIERS_UNIQUE_FIELDS.add(APN);
166 APN + " TEXT DEFAULT ''," +
290 loge("Can't get version of APN database" + e + " return version=" +
414 loge("Got exception while loading APN database." + e);
447 // Get rid of user/carrier deleted entries that are not present in apn xml file.
497 // No Apn in alternate image, so load it from system image.
520 // if the user, has added a new APN, we set the authentication type
529 // Add protcol fields to the APN. The XML file does not change
    [all...]
  /device/google/marlin/marlin/
BoardConfig.mk 196 # Use prebuilt APN lib from Verizon Wireless
  /device/google/marlin/sailfish/
BoardConfig.mk 186 # Use prebuilt APN lib from Verizon Wireless
  /packages/apps/Settings/src/com/android/settings/
ApnEditor.java 127 Telephony.Carriers.APN, // 2
276 // if it's not a USER_EDITED apn, check if it's read-only
279 Log.d(TAG, "onCreate: apnTypesMatch; read-only APN");
294 * Check if passed in array of APN types indicates all APN types
295 * @param apnTypes array of APN types. "*" indicates all types.
296 * @return true if all apn types are included in the array, false otherwise
308 for (String apn : PhoneConstants.APN_TYPES) {
309 if (!apnList.contains(apn)) {
319 * Check if APN types overlap
841 String apn = checkNotSet(mApn.getText()); local
1041 String apn = checkNotSet(mApn.getText()); local
    [all...]
ApnSettings.java 153 return MetricsEvent.APN;
247 "\" AND NOT (type='ia' AND (apn=\"\" OR apn IS NULL)) AND user_visible!=0");
254 "_id", "name", "apn", "type", "mvno_type", "mvno_match_data"}, where.toString(),
275 String apn = cursor.getString(APN_INDEX); local
285 pref.setSummary(apn);
430 "Restore default APN Handler: Process Thread");
  /packages/apps/Messaging/src/android/support/v7/mms/
DefaultApnSettingsLoader.java 39 * Default implementation of APN settings loader
43 * The base implementation of an APN
45 private static class BaseApn implements Apn {
47 * Create a base APN from parameters
49 * @param typesIn the APN type field
50 * @param mmscIn the APN mmsc field
51 * @param proxyIn the APN mmsproxy field
52 * @param portIn the APN mmsport field
53 * @return an instance of base APN, or null if any of the parameter is invalid
124 * An in-memory implementation of an APN. These APNs are organized into an in-memory list
322 final Apn apn = BaseApn.from( local
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/ui/appsettings/
ApnSettingsActivity.java 103 Telephony.Carriers.APN, // 2
138 sCurrentSetMap.put(Telephony.Carriers.CURRENT, "2"); // 2 for user-selected APN,
139 // 1 for Bugle-selected APN
242 String apn = cursor.getString(APN_INDEX); local
251 pref.setSummary(apn);
256 // Turn on the radio button for the currently selected APN. If
257 // there is no selected APN, don't select an APN.
322 // current=2 means user selected APN
332 // null out the previous "current=2" APN
    [all...]
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/telephony/
TelephonyManagerFacade.java 87 Telephony.Carriers.APN, // 2
    [all...]
  /frameworks/base/telephony/java/android/telephony/
Telephony.java 50 * messages, access to the APN list, including the MMSC to use, and the service state.
254 * The MTU size of the mobile interface to which the APN connected
    [all...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/dataconnection/
DcTrackerTest.java 100 public static final String FAKE_APN1 = "FAKE APN 1";
101 public static final String FAKE_APN2 = "FAKE APN 2";
102 public static final String FAKE_APN3 = "FAKE APN 3";
167 logd("Query '" + plmn + "' APN settings");
170 Telephony.Carriers.NAME, Telephony.Carriers.APN,
191 FAKE_APN1, // apn
220 FAKE_APN2, // apn
249 FAKE_APN3, // apn
360 private void verifyDataProfile(DataProfile dp, String apn, int profileId,
363 assertEquals(apn, dp.apn)
    [all...]
  /external/clang/lib/CodeGen/
TargetInfo.cpp     [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DcTracker.java 124 /* Currently requested APN type (TODO: This should probably be a parameter not a member) */
230 /** preferred apn */
236 /** emergency apn Setting*/
250 /* Intent for the provisioning apn alarm */
255 private static final String PROVISIONING_APN_ALARM_TAG_EXTRA = "provisioning.apn.alarm.tag";
260 /* Default for the provisioning apn alarm timeout */
263 /* The provision apn alarm intent used to disable the provisioning apn */
266 /* Used to track stale provisioning apn alarms */
296 if (DBG) log("Provisioning apn alarm")
1926 ApnSetting apn = ApnSetting.fromString(apnString); local
2012 ApnSetting apn = new ApnSetting( local
2059 ApnSetting apn = makeApnSetting(cursor); local
2995 ApnSetting apn = apnContext.getApnSetting(); local
3102 ApnSetting apn = apnContext.getApnSetting(); local
3112 ApnSetting apn = apnContext.getApnSetting(); local
    [all...]
  /prebuilts/sdk/19/
android.jar 
  /prebuilts/sdk/21/
android.jar 
  /prebuilts/sdk/25/
android.jar 

Completed in 461 milliseconds