Searched refs:sendSmsIntent (Results 1 – 2 of 2) sorted by relevance
171 Intent sendSmsIntent = new Intent(SmsManagerTestService.SEND_SMS); in sendOutgoingSmsService() local172 sendSmsIntent.putExtra(SmsManagerTestService.EXTRA_SEND_TEXT, "Text"); in sendOutgoingSmsService()173 sendSmsIntent.putExtra(SmsManagerTestService.EXTRA_SEND_NUMBER, phoneNumber); in sendOutgoingSmsService()174 sendSmsIntent.putExtra(SmsManagerTestService.EXTRA_SEND_INTENT, in sendOutgoingSmsService()176 sendSmsIntent.setComponent(new ComponentName(this, SmsManagerTestService.class)); in sendOutgoingSmsService()177 startService(sendSmsIntent); in sendOutgoingSmsService()
142 sendSmsIntent(intent, userHandle); in processIntent()172 sendSmsIntent(intent, userHandle); in processIntent()286 private void sendSmsIntent(Intent intent, UserHandle userHandle) { in sendSmsIntent() method in TelecomBroadcastIntentProcessor