Home
last modified time | relevance | path

Searched refs:sentIntent (Results 1 – 2 of 2) sorted by relevance

/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowSmsManager.java40 PendingIntent sentIntent, in sendDataMessage() argument
46 …ataMessageParams(destinationAddress, scAddress, destinationPort, data, sentIntent, deliveryIntent); in sendDataMessage()
54 PendingIntent sentIntent, in sendTextMessage() argument
64 …lastTextSmsParams = new TextSmsParams(destinationAddress, scAddress, text, sentIntent, deliveryInt… in sendTextMessage()
132 private final PendingIntent sentIntent; field in ShadowSmsManager.DataMessageParams
135 …s, String scAddress, short destinationPort, byte[] data, PendingIntent sentIntent, PendingIntent d… in DataMessageParams() argument
140 this.sentIntent = sentIntent; in DataMessageParams()
161 return sentIntent; in getSentIntent()
173 private final PendingIntent sentIntent; field in ShadowSmsManager.TextSmsParams
176 …tring destinationAddress, String scAddress, String text, PendingIntent sentIntent, PendingIntent d… in TextSmsParams() argument
[all …]
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
DShadowSmsManagerTest.java81 final PendingIntent sentIntent = in sendDataMessage_shouldStoreLastParameters() local
86 smsManager.sendDataMessage(destAddress, scAddress, destPort, data, sentIntent, deliveryIntent); in sendDataMessage_shouldStoreLastParameters()
93 assertThat(params.getSentIntent()).isSameAs(sentIntent); in sendDataMessage_shouldStoreLastParameters()