Home | History | Annotate | Download | only in carrier

Lines Matching refs:subId

94      * @param subId SMS subscription ID of the SIM
99 int subId, @NonNull ResultCallback<Boolean> callback) {
111 * @param subId SMS subscription ID of the SIM
116 @NonNull String text, int subId, @NonNull String destAddress,
129 * @param subId SMS subscription ID of the SIM
134 public void onSendDataSms(@NonNull byte[] data, int subId,
148 * @param subId SMS subscription ID of the SIM
153 int subId, @NonNull String destAddress,
167 * @param subId SMS subscription ID of the SIM
172 public void onSendMms(@NonNull Uri pduUri, int subId,
185 * @param subId SMS subscription ID of the SIM
191 public void onDownloadMms(@NonNull Uri contentUri, int subId, @NonNull Uri location,
350 int subId, final ICarrierMessagingCallback callback) {
351 onFilterSms(pdu, format, destPort, subId, new ResultCallback<Boolean>() {
360 public void sendTextSms(String text, int subId, String destAddress,
362 onSendTextSms(text, subId, destAddress, new ResultCallback<SendSmsResult>() {
371 public void sendDataSms(byte[] data, int subId, String destAddress, int destPort,
373 onSendDataSms(data, subId, destAddress, destPort, new ResultCallback<SendSmsResult>() {
382 public void sendMultipartTextSms(List<String> parts, int subId, String destAddress,
384 onSendMultipartTextSms(parts, subId, destAddress,
396 public void sendMms(Uri pduUri, int subId, Uri location,
398 onSendMms(pduUri, subId, location, new ResultCallback<SendMmsResult>() {
407 public void downloadMms(Uri pduUri, int subId, Uri location,
409 onDownloadMms(pduUri, subId, location, new ResultCallback<Integer>() {