Searched refs:sendSmsIntent (Results 1 – 2 of 2) sorted by relevance
165 Intent sendSmsIntent = new Intent(SmsManagerTestService.SEND_SMS); in sendOutgoingSmsService() local166 sendSmsIntent.putExtra(SmsManagerTestService.EXTRA_SEND_TEXT, "Text"); in sendOutgoingSmsService()167 sendSmsIntent.putExtra(SmsManagerTestService.EXTRA_SEND_NUMBER, phoneNumber); in sendOutgoingSmsService()168 sendSmsIntent.putExtra(SmsManagerTestService.EXTRA_SEND_INTENT, in sendOutgoingSmsService()170 sendSmsIntent.setComponent(new ComponentName(this, SmsManagerTestService.class)); in sendOutgoingSmsService()171 startService(sendSmsIntent); in sendOutgoingSmsService()
136 sendSmsIntent(intent, userHandle); in processIntent()166 sendSmsIntent(intent, userHandle); in processIntent()254 private void sendSmsIntent(Intent intent, UserHandle userHandle) { in sendSmsIntent() method in TelecomBroadcastIntentProcessor