Searched refs:carrier (Results 1 - 25 of 26) sorted by path

12

/frameworks/base/
H A DAndroid.mk218 core/java/android/service/carrier/ICarrierService.aidl \
219 core/java/android/service/carrier/ICarrierMessagingCallback.aidl \
220 core/java/android/service/carrier/ICarrierMessagingService.aidl \
555 frameworks/base/core/java/android/service/carrier/CarrierIdentifier.aidl \
556 frameworks/base/core/java/android/service/carrier/MessagePdu.aidl \
/frameworks/base/core/java/android/service/carrier/
H A DCarrierIdentifier.aidl17 package android.service.carrier;
H A DCarrierIdentifier.java17 package android.service.carrier;
H A DCarrierMessagingService.java17 package android.service.carrier;
41 * <action android:name="android.service.carrier.CarrierMessagingService" />
51 = "android.service.carrier.CarrierMessagingService";
59 * SMS/MMS sending failed. We should retry via the carrier network.
64 * SMS/MMS sending failed. We should not retry via the carrier network.
74 * MMS downloading failed. We should retry via the carrier network.
79 * MMS downloading failed. We should not retry via the carrier network.
404 * A wrapper around ICarrierMessagingService to enable the carrier messaging app to implement
H A DCarrierService.java15 package android.service.carrier;
28 * A service that exposes carrier-specific functionality to the system.
33 * binding, set android.service.carrier.LONG_LIVED_BINDING to true in the service's metadata.
42 * <action android:name="android.service.carrier.CarrierService" />
44 * <meta-data android:name="android.service.carrier.LONG_LIVED_BINDING"
51 public static final String CARRIER_SERVICE_INTERFACE = "android.service.carrier.CarrierService";
66 * Override this method to set carrier configuration.
68 * This method will be called by telephony services to get carrier-specific configuration
71 * <li>The carrier app package is updated, or</li>
72 * <li>The carrier ap
[all...]
H A DICarrierMessagingCallback.aidl17 package android.service.carrier;
H A DICarrierMessagingService.aidl17 package android.service.carrier;
20 import android.service.carrier.ICarrierMessagingCallback;
21 import android.service.carrier.MessagePdu;
25 * This service can only be implemented by a carrier privileged app.
H A DICarrierService.aidl17 package android.service.carrier;
20 import android.service.carrier.CarrierIdentifier;
23 * Service used to expose carrier-specific functionality to the system.
25 * @see android.service.carrier.CarrierService
30 /** @see android.service.carrier.CarrierService#onLoadConfig */
H A DMessagePdu.aidl17 package android.service.carrier;
H A DMessagePdu.java17 package android.service.carrier;
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
H A DDataUsageDetailView.java102 final TextView carrier = (TextView) findViewById(R.id.usage_carrier_text);
103 carrier.setText(info.carrier);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DMobileDataControllerImpl.java165 usage.carrier = mNetworkController.getMobileDataNetworkName();
H A DNetworkController.java99 public String carrier; field in class:NetworkController.MobileDataController.DataUsageInfo
/frameworks/base/services/core/java/com/android/server/
H A DMmsServiceBroker.java38 import android.service.carrier.CarrierMessagingService;
496 * @param action The intent action used to find the associated carrier app
510 // Grant permission for the carrier app.
/frameworks/opt/telephony/src/java/android/telephony/
H A DCarrierMessagingServiceManager.java24 import android.service.carrier.CarrierMessagingService;
25 import android.service.carrier.ICarrierMessagingService;
30 * Provides basic structure for platform to connect to the carrier messaging service.
51 * Binds to the carrier messaging service under package {@code carrierPackageName}. This method
55 * @param carrierPackageName the carrier package name
56 * @return true upon successfully binding to a carrier messaging service, false otherwise
69 * Unbinds the carrier messaging service. This method should be called exactly once.
80 * Implemented by subclasses to use the carrier messaging service once it is ready.
82 * @param carrierMessagingService the carrier messaing service interface
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DCarrierServiceBindHelper.java35 import android.service.carrier.CarrierService;
44 * Manages long-lived bindings to carrier services
166 // Get the package name for the carrier app
173 log("No carrier app for: " + phoneId);
177 log("Found carrier app: " + carrierPackageNames);
184 // Look up the carrier service
197 !metadata.getBoolean("android.service.carrier.LONG_LIVED_BINDING", false)) {
235 log("Unbinding from carrier app");
261 log("Connected to carrier app: " + name.flattenToString());
268 log("Disconnected from carrier ap
[all...]
H A DInboundSmsHandler.java58 import android.service.carrier.CarrierMessagingService;
59 import android.service.carrier.ICarrierMessagingCallback;
60 import android.service.carrier.ICarrierMessagingService;
61 import android.service.carrier.MessagePdu;
788 log("Found carrier package.");
800 logv("Unable to find carrier package: " + carrierPackages
1138 * Asynchronously binds to the carrier messaging service, and filters out the message if
1139 * instructed to do so by the carrier messaging service. A new instance must be used for every
1165 loge("bindService() for carrier messaging service failed");
1168 logv("bindService() for carrier messagin
[all...]
H A DPhoneBase.java147 // Used to intercept the carrier selection calls so that
197 * the carrier selection process. operatorNumeric can be ""
449 // The locale from the "ro.carrier" system property or R.array.carrier_properties.
1237 * Set the properties by matching the carrier string in
1241 String carrier = SystemProperties.get("ro.carrier");
1243 if (null == carrier || 0 == carrier.length() || "unknown".equals(carrier)) {
1251 if (carrier
[all...]
H A DSMSDispatcher.java46 import android.service.carrier.CarrierMessagingService;
47 import android.service.carrier.ICarrierMessagingCallback;
48 import android.service.carrier.ICarrierMessagingService;
333 * Use the carrier messaging service to send a data or text SMS.
348 Rlog.e(TAG, "bindService() for carrier messaging service failed");
353 Rlog.d(TAG, "bindService() for carrier messaging service succeeded");
366 * Use the carrier messaging service to send a text SMS.
398 * Use the carrier messaging service to send a data SMS.
431 * Callback for TextSmsSender and DataSmsSender from the carrier messaging service.
432 * Once the result is ready, the carrier messagin
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DApnSetting.java38 public final String carrier; field in class:ApnSetting
98 public ApnSetting(int id, String numeric, String carrier, String apn, argument
107 this.carrier = carrier;
146 * <carrier>, <apn>, <proxy>, <port>, <user>, <password>, <server>,
151 * [ApnSettingV2] <carrier>, <apn>, <proxy>, <port>, <user>, <password>, <server>,
156 * [ApnSettingV3] <carrier>, <apn>, <proxy>, <port>, <user>, <password>, <server>,
276 .append(carrier)
H A DDataConnection.java516 if (DBG) log("onConnect: carrier='" + mApnSetting.carrier
867 // doing it this way allows device or carrier to just override the types they
H A DDcTracker.java1387 * This is a combination of factors, based on carrier and RAT.
1923 // Turn off radio to save battery and avoid wasting carrier resources.
2264 if (DBG) log("createAllApnList: No APN found for carrier: " + operator);
2383 return new ApnSetting(id, dest.numeric, dest.carrier, dest.apn,
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DSIMRecords.java1489 private void setSpnFromConfig(String carrier) { argument
1490 if (mSpnOverride.containsCarrier(carrier)) {
1491 setServiceProviderName(mSpnOverride.getSpn(carrier));
H A DSpnOverride.java47 boolean containsCarrier(String carrier) { argument
48 return mCarrierSpnMap.containsKey(carrier);
51 String getSpn(String carrier) { argument
52 return mCarrierSpnMap.get(carrier);
H A DVoiceMailConstants.java54 boolean containsCarrier(String carrier) { argument
55 return CarrierVmMap.containsKey(carrier);
58 String getCarrierName(String carrier) { argument
59 String[] data = CarrierVmMap.get(carrier);
63 String getVoiceMailNumber(String carrier) { argument
64 String[] data = CarrierVmMap.get(carrier);
68 String getVoiceMailTag(String carrier) { argument
69 String[] data = CarrierVmMap.get(carrier);
103 data[NAME] = parser.getAttributeValue(null, "carrier");

Completed in 819 milliseconds

12