HomeSort by relevance Sort by last modified time
    Searched refs:carrier (Results 1 - 25 of 96) sorted by null

1 2 3 4

  /frameworks/base/core/java/android/service/carrier/
CarrierIdentifier.aidl 17 package android.service.carrier;
MessagePdu.aidl 17 package android.service.carrier;
ICarrierService.aidl 17 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 */
ICarrierMessagingCallback.aidl 17 package android.service.carrier;
20 * Callback interface definition for the Carrier Messaging Service client to get informed of the
ICarrierMessagingService.aidl 17 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.
CarrierService.java 15 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 app requests a reload wit
    [all...]
MessagePdu.java 17 package android.service.carrier;
  /cts/tests/tests/telephony/src/android/telephony/cts/
CarrierServiceTest.java 21 import android.service.carrier.CarrierIdentifier;
22 import android.service.carrier.CarrierService;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
VoiceMailConstants.java 54 boolean containsCarrier(String carrier) {
55 return CarrierVmMap.containsKey(carrier);
58 String getCarrierName(String carrier) {
59 String[] data = CarrierVmMap.get(carrier);
63 String getVoiceMailNumber(String carrier) {
64 String[] data = CarrierVmMap.get(carrier);
68 String getVoiceMailTag(String carrier) {
69 String[] data = CarrierVmMap.get(carrier);
103 data[NAME] = parser.getAttributeValue(null, "carrier");
SpnOverride.java 47 boolean containsCarrier(String carrier) {
48 return mCarrierSpnMap.containsKey(carrier);
51 String getSpn(String carrier) {
52 return mCarrierSpnMap.get(carrier);
  /external/autotest/client/site_tests/network_SwitchCarrier/
network_SwitchCarrier.py 21 carrier = self.get_carrier()
22 if not carrier:
23 print 'No carrier.'
25 if carrier != self.to_carrier:
26 self.fail('Wrong carrier: %s != %s' % (carrier, self.to_carrier))
37 if e.get_dbus_message() == "Unknown carrier name":
38 print 'Ignoring invalid carrier %s' % self.to_carrier
55 if not status or not 'carrier' in status:
58 return status['carrier']
    [all...]
  /external/autotest/client/site_tests/cellular_ServiceName/
cellular_ServiceName.py 17 # Use valid carrier info since shill looks this up in its database.
54 Test SIM with a specific carrier name that the tests below are expecting.
58 carrier = sim.SIM.Carrier()
59 carrier.mcc = TEST_3GPP_HOME_CARRIER_MCC
60 carrier.mnc = TEST_3GPP_HOME_CARRIER_MNC
61 carrier.operator_name = TEST_3GPP_HOME_CARRIER
62 carrier.operator_id = carrier.mcc + carrier.mn
    [all...]
  /external/libphonenumber/
Android.mk 18 # For the platform, compile everything except the carrier to phone number
32 $(call all-java-files-under, carrier/src)
36 carrier/src
39 $(call all-java-files-under, carrier/test) \
45 carrier/test \
  /frameworks/opt/telephony/src/java/android/telephony/
CarrierMessagingServiceManager.java 24 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
  /system/bt/stack/smp/
p_256_multprecision.cc 80 uint32_t carrier; local
83 carrier = 0;
85 temp = a[i] + carrier;
86 carrier = (temp < carrier);
88 carrier |= (temp < b[i]);
92 return carrier;
114 uint32_t carrier; local
124 carrier = multiprecision_lshift(c, a, keyLength);
125 if (carrier) {
139 uint32_t carrier = 0; local
171 uint32_t carrier; local
212 uint32_t carrier = 0; local
    [all...]
  /prebuilts/tools/common/m2/repository/io/opentracing/opentracing-impl/0.13.0/
opentracing-impl-0.13.0.jar 
  /external/autotest/client/cros/cellular/pseudomodem/
sim.py 66 class Carrier:
68 Represents a 3GPP carrier that can be stored by a SIM object.
95 def __init__(self, carrier='test'):
96 carrier = self.CARRIER_LIST.get(carrier, self.CARRIER_LIST['test'])
98 self.mcc = self.MCC_LIST[carrier[0]]
99 self.mnc = carrier[1]
100 self.operator_name = carrier[2]
107 carrier,
118 if not carrier
245 def carrier(self): member in class:SIM
    [all...]
  /external/autotest/client/site_tests/network_CDMAActivate/files/
modems.py 56 def Activate(self, carrier, return_cb, raise_cb):
64 carrier, return_cb, raise_cb)
  /external/wpa_supplicant_8/wpa_supplicant/examples/
p2p-nfc.py 161 summary("Could not get handover request carrier record from wpa_supplicant")
163 print "Handover request carrier record from wpa_supplicant: " + data.encode("hex")
233 for carrier in message.carriers:
234 print "Remote carrier type: " + carrier.type
235 if carrier.type == "application/vnd.wfa.p2p":
236 print "P2P carrier type match - send to wpa_supplicant"
237 if "OK" in wpas_report_handover(data, carrier.record, "INIT"):
296 for carrier in request.carriers:
297 print "Remote carrier type: " + carrier.typ
    [all...]
wps-nfc.py 172 for carrier in request.carriers:
173 print "Remote carrier type: " + carrier.type
174 if carrier.type == "application/vnd.wfa.wsc":
175 summary("WPS carrier type match - add WPS carrier record")
178 summary("Could not get handover select carrier record from wpa_supplicant")
180 print "Handover select carrier record from wpa_supplicant:"
183 if "OK" in wpas_report_handover(carrier.record, self.sent_carrier, "RESP"):
208 summary("Could not get handover request carrier record from wpa_supplicant"
    [all...]
  /external/r8/src/test/examplesAndroidO/trywithresources/
TryWithResources.java 185 RuntimeException carrier = new RuntimeException("carrier"); local
186 Consumer packer = carrier::addSuppressed;
187 Supplier unpacker = carrier::getSuppressed;
  /compatibility/cdd/9_security-model/
9_6_premium-sms-warning.md 5 messages are text messages sent to a service registered with a carrier that may
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
CarrierServicesSmsFilter.java 25 import android.service.carrier.CarrierMessagingService;
26 import android.service.carrier.ICarrierMessagingCallback;
27 import android.service.carrier.ICarrierMessagingService;
28 import android.service.carrier.MessagePdu;
42 * Filters incoming SMS with carrier services.
75 * @return {@code true} if the SMS was handled by carrier services.
108 log("Found carrier package.");
112 // It is possible that carrier app is not present as a CarrierPackage, but instead as a
121 logv("Unable to find carrier package: " + carrierPackages
175 * Asynchronously binds to the carrier messaging service, and filters out the message i
    [all...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
CarrierServicesSmsFilterTest.java 35 import android.service.carrier.CarrierMessagingService;
36 import android.service.carrier.ICarrierMessagingCallback;
37 import android.service.carrier.ICarrierMessagingService;
38 import android.service.carrier.MessagePdu;
54 * Tests SMS filtering by carrier services.
58 private static final String CARRIER_APP_PACKAGE_NAME = "com.android.carrier";
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
ApnSetting.java 52 public final String carrier; field in class:ApnSetting
119 public ApnSetting(int id, String numeric, String carrier, String apn,
129 this.carrier = carrier;
163 this(apn.id, apn.numeric, apn.carrier, apn.apn, apn.proxy, apn.port, apn.mmsc, apn.mmsProxy,
179 * <carrier>, <apn>, <proxy>, <port>, <user>, <password>, <server>,
184 * [ApnSettingV2] <carrier>, <apn>, <proxy>, <port>, <user>, <password>, <server>,
189 * [ApnSettingV3] <carrier>, <apn>, <proxy>, <port>, <user>, <password>, <server>,
309 .append(carrier)
447 Rlog.e(LOG_TAG, "Carrier config service is not available")
    [all...]

Completed in 684 milliseconds

1 2 3 4