Home
last modified time | relevance | path

Searched refs:CarrierMessagingService (Results 1 – 17 of 17) sorted by relevance

/aosp12/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
H A DCarrierServicesSmsFilterTest.java37 import android.service.carrier.CarrierMessagingService;
101 CarrierMessagingService.RECEIVE_OPTIONS_DROP, mICarrierAppMessagingService, in testFilter_carrierAppPresent_handled()
106 .onFilterComplete(eq(CarrierMessagingService.RECEIVE_OPTIONS_DROP)); in testFilter_carrierAppPresent_handled()
114 CarrierMessagingService.RECEIVE_OPTIONS_DROP, mISystemCarrierMessagingService, in testFilter_systemAppPresent_handled()
120 .onFilterComplete(eq(CarrierMessagingService.RECEIVE_OPTIONS_DROP)); in testFilter_systemAppPresent_handled()
129 CarrierMessagingService.RECEIVE_OPTIONS_DEFAULT, mICarrierAppMessagingService, in testFilter_bothCarrierAndSystemAppPresent_carrierAppDecides()
132 CarrierMessagingService.RECEIVE_OPTIONS_DROP, mISystemCarrierMessagingService, in testFilter_bothCarrierAndSystemAppPresent_carrierAppDecides()
138 .onFilterComplete(eq(CarrierMessagingService.RECEIVE_OPTIONS_DEFAULT)); in testFilter_bothCarrierAndSystemAppPresent_carrierAppDecides()
152 .onFilterComplete(eq(CarrierMessagingService.RECEIVE_OPTIONS_DEFAULT)); in testFilterSmsShouldNotTimeout_whenOnFilterCompleteCalled()
172 CarrierMessagingService.SERVICE_INTERFACE, in mockCarrierApp()
[all …]
/aosp12/frameworks/base/core/java/android/service/carrier/
H A DCarrierMessagingServiceWrapper.java88 Intent intent = new Intent(CarrierMessagingService.SERVICE_INTERFACE); in bindToCarrierMessagingService()
173 @CarrierMessagingService.SendRequest int sendSmsFlag, in sendTextSms()
202 int destPort, @CarrierMessagingService.SendRequest int sendSmsFlag, in sendDataSms()
232 @CarrierMessagingService.SendRequest int sendSmsFlag, in sendMultipartTextSms()
332 @CarrierMessagingService.FilterCompleteResult int result) { in onReceiveSmsComplete()
345 default void onSendSmsComplete(@CarrierMessagingService.SendResult in onSendSmsComplete()
358 default void onSendMultipartSmsComplete(@CarrierMessagingService.SendResult in onSendMultipartSmsComplete()
372 default void onSendMmsComplete(@CarrierMessagingService.SendResult in onSendMmsComplete()
383 default void onDownloadMmsComplete(@CarrierMessagingService.DownloadResult in onDownloadMmsComplete()
H A DCarrierMessagingService.java48 public abstract class CarrierMessagingService extends Service { class
/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DCarrierServicesSmsFilter.java26 import android.service.carrier.CarrierMessagingService;
116 new Intent(CarrierMessagingService.SERVICE_INTERFACE)); in filter()
150 new Intent(CarrierMessagingService.SERVICE_INTERFACE)); in getCarrierAppPackageForFiltering()
163 getSystemAppForIntent(new Intent(CarrierMessagingService.SERVICE_INTERFACE)); in getCarrierAppPackageForFiltering()
258 CarrierMessagingService.RECEIVE_OPTIONS_DEFAULT); in filterSms()
278 CarrierMessagingService.RECEIVE_OPTIONS_DEFAULT); in onServiceReady()
351 mFilterResult = CarrierMessagingService.RECEIVE_OPTIONS_DEFAULT; in FilterAggregator()
419 callback.onReceiveSmsComplete(CarrierMessagingService.RECEIVE_OPTIONS_DEFAULT); in handleFilterCallbacksTimeout()
H A DSMSDispatcher.java54 import android.service.carrier.CarrierMessagingService;
386 onSendComplete(CarrierMessagingService.SEND_STATUS_RETRY_ON_CARRIER_NETWORK); in sendSmsByCarrierApp()
404 public abstract void onSendComplete(@CarrierMessagingService.SendResult int result); in onSendComplete()
618 case CarrierMessagingService.SEND_STATUS_OK: in processSendSmsResponse()
627 case CarrierMessagingService.SEND_STATUS_ERROR: in processSendSmsResponse()
634 case CarrierMessagingService.SEND_STATUS_RETRY_ON_CARRIER_NETWORK: in processSendSmsResponse()
684 ? CarrierMessagingService.SEND_FLAG_REQUEST_DELIVERY_STATUS in onServiceReady()
782 case CarrierMessagingService.SEND_STATUS_OK: in processSendMultipartSmsResponse()
803 case CarrierMessagingService.SEND_STATUS_ERROR: in processSendMultipartSmsResponse()
825 case CarrierMessagingService.SEND_STATUS_RETRY_ON_CARRIER_NETWORK: in processSendMultipartSmsResponse()
[all …]
H A DSmsPermissions.java26 import android.service.carrier.CarrierMessagingService;
87 mPhone, new Intent(CarrierMessagingService.SERVICE_INTERFACE)); in enforceCallerIsImsAppOrCarrierApp()
H A DInboundSmsHandler.java27 import static android.service.carrier.CarrierMessagingService.RECEIVE_OPTIONS_SKIP_NOTIFY_WHEN_CRED…
66 import android.service.carrier.CarrierMessagingService;
1840 (result & CarrierMessagingService.RECEIVE_OPTIONS_DROP) != 0; in onFilterComplete()
/aosp12/packages/services/Mms/src/com/android/mms/service/
H A DMmsRequest.java27 import android.service.carrier.CarrierMessagingService;
403 == CarrierMessagingService.SEND_STATUS_RETRY_ON_CARRIER_NETWORK in maybeFallbackToRegularDelivery()
405 == CarrierMessagingService.DOWNLOAD_STATUS_RETRY_ON_CARRIER_NETWORK) { in maybeFallbackToRegularDelivery()
420 case CarrierMessagingService.SEND_STATUS_OK: in toSmsManagerResult()
422 case CarrierMessagingService.SEND_STATUS_RETRY_ON_CARRIER_NETWORK: in toSmsManagerResult()
H A DDownloadRequest.java35 import android.service.carrier.CarrierMessagingService;
305 CarrierMessagingService.DOWNLOAD_STATUS_RETRY_ON_CARRIER_NETWORK); in downloadMms()
319 CarrierMessagingService.DOWNLOAD_STATUS_RETRY_ON_CARRIER_NETWORK); in onServiceReady()
H A DSendRequest.java30 import android.service.carrier.CarrierMessagingService;
426 CarrierMessagingService.SEND_STATUS_RETRY_ON_CARRIER_NETWORK, in sendMms()
444 CarrierMessagingService.SEND_STATUS_RETRY_ON_CARRIER_NETWORK, in onServiceReady()
H A DMmsService.java43 import android.service.carrier.CarrierMessagingService;
177 Intent intent = new Intent(CarrierMessagingService.SERVICE_INTERFACE); in getCarrierMessagingServicePackageIfExists()
/aosp12/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
H A DGsmSmsDispatcherTest.java53 import android.service.carrier.CarrierMessagingService;
328 CarrierMessagingService.SERVICE_INTERFACE, in mockCarrierApp()
385 mockCarrierAppStubResults(CarrierMessagingService.SEND_STATUS_OK, in testSendSmsByCarrierApp()
459 mockCarrierAppStubResults(CarrierMessagingService.SEND_STATUS_OK, in testSendMultipartSmsByCarrierApp()
/aosp12/frameworks/base/services/core/java/com/android/server/
H A DMmsServiceBroker.java40 import android.service.carrier.CarrierMessagingService;
346 CarrierMessagingService.SERVICE_INTERFACE, in sendMessage()
366 CarrierMessagingService.SERVICE_INTERFACE, in downloadMessage()
/aosp12/frameworks/base/core/api/
H A Dcurrent.txt38132 public abstract class CarrierMessagingService extends android.app.Service {
38133 ctor public CarrierMessagingService();
38139 …@NonNull android.service.carrier.CarrierMessagingService.ResultCallback<android.service.carrier.Ca…
38144 …@NonNull android.service.carrier.CarrierMessagingService.ResultCallback<android.service.carrier.Ca…
38158 public static interface CarrierMessagingService.ResultCallback<T> {
38162 public static final class CarrierMessagingService.SendMmsResult {
38163 ctor public CarrierMessagingService.SendMmsResult(int, @Nullable byte[]);
38168 public static final class CarrierMessagingService.SendMultipartSmsResult {
38169 ctor public CarrierMessagingService.SendMultipartSmsResult(int, @Nullable int[]);
38174 public static final class CarrierMessagingService.SendSmsResult {
[all …]
/aosp12/frameworks/base/tools/aapt2/integration-tests/CommandTests/
H A Dandroid-28.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/net/ javax/ ...
/aosp12/frameworks/opt/setupwizard/tools/docs/
H A Dandroid-22.txt26912 public abstract class CarrierMessagingService extends android.app.Service {
26913 ctor public CarrierMessagingService();
26917 …ng, int, android.service.carrier.CarrierMessagingService.ResultCallback<android.service.carrier.Ca…
26918 …net.Uri, android.service.carrier.CarrierMessagingService.ResultCallback<android.service.carrier.Ca…
26930 public static abstract interface CarrierMessagingService.ResultCallback {
26934 public static final class CarrierMessagingService.SendMmsResult {
26935 ctor public CarrierMessagingService.SendMmsResult(int, byte[]);
26940 public static final class CarrierMessagingService.SendMultipartSmsResult {
26941 ctor public CarrierMessagingService.SendMultipartSmsResult(int, int[]);
26946 public static final class CarrierMessagingService.SendSmsResult {
[all …]
/aosp12/frameworks/base/boot/hiddenapi/
H A Dhiddenapi-max-target-o.txt52377 Landroid/service/carrier/CarrierMessagingService$ICarrierMessagingWrapper;->downloadMms(Landroid/ne…
52379 Landroid/service/carrier/CarrierMessagingService$ICarrierMessagingWrapper;->sendDataSms([BILjava/la…
52380 Landroid/service/carrier/CarrierMessagingService$ICarrierMessagingWrapper;->sendMms(Landroid/net/Ur…
52382 Landroid/service/carrier/CarrierMessagingService$ICarrierMessagingWrapper;->sendTextSms(Ljava/lang/…
52383 Landroid/service/carrier/CarrierMessagingService$SendMmsResult;->mSendConfPdu:[B
52384 Landroid/service/carrier/CarrierMessagingService$SendMmsResult;->mSendStatus:I
52385 Landroid/service/carrier/CarrierMessagingService$SendMultipartSmsResult;->mMessageRefs:[I
52386 Landroid/service/carrier/CarrierMessagingService$SendMultipartSmsResult;->mSendStatus:I
52387 Landroid/service/carrier/CarrierMessagingService$SendSmsResult;->mMessageRef:I
52388 Landroid/service/carrier/CarrierMessagingService$SendSmsResult;->mSendStatus:I
[all …]