OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SmsEnvelope
(Results
1 - 8
of
8
) sorted by null
/packages/apps/CellBroadcastReceiver/tests/src/com/android/cellbroadcastreceiver/tests/
SendCdmaCmasMessages.java
32
import com.android.internal.telephony.cdma.sms.
SmsEnvelope
;
66
SmsEnvelope
.SERVICE_CATEGORY_CMAS_PRESIDENTIAL_LEVEL_ALERT, messageId, "en",
78
SmsEnvelope
.SERVICE_CATEGORY_CMAS_EXTREME_THREAT, messageId, "en",
90
SmsEnvelope
.SERVICE_CATEGORY_CMAS_SEVERE_THREAT, messageId, "en",
102
SmsEnvelope
.SERVICE_CATEGORY_CMAS_CHILD_ABDUCTION_EMERGENCY, messageId, "en",
114
SmsEnvelope
.SERVICE_CATEGORY_CMAS_TEST_MESSAGE, messageId, "en",
156
case
SmsEnvelope
.SERVICE_CATEGORY_CMAS_PRESIDENTIAL_LEVEL_ALERT:
159
case
SmsEnvelope
.SERVICE_CATEGORY_CMAS_EXTREME_THREAT:
162
case
SmsEnvelope
.SERVICE_CATEGORY_CMAS_SEVERE_THREAT:
165
case
SmsEnvelope
.SERVICE_CATEGORY_CMAS_CHILD_ABDUCTION_EMERGENCY
[
all
...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/sms/
SmsEnvelope.java
22
public final class
SmsEnvelope
{
125
public
SmsEnvelope
() {
BearerData.java
[
all
...]
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastReceiver.java
37
import com.android.internal.telephony.cdma.sms.
SmsEnvelope
;
132
SmsEnvelope
.SERVICE_CATEGORY_CMAS_EXTREME_THREAT, false);
134
SmsEnvelope
.SERVICE_CATEGORY_CMAS_SEVERE_THREAT, false);
136
SmsEnvelope
.SERVICE_CATEGORY_CMAS_CHILD_ABDUCTION_EMERGENCY, false);
138
SmsEnvelope
.SERVICE_CATEGORY_CMAS_TEST_MESSAGE, false);
151
case
SmsEnvelope
.SERVICE_CATEGORY_CMAS_EXTREME_THREAT:
157
case
SmsEnvelope
.SERVICE_CATEGORY_CMAS_SEVERE_THREAT:
163
case
SmsEnvelope
.SERVICE_CATEGORY_CMAS_CHILD_ABDUCTION_EMERGENCY:
168
case
SmsEnvelope
.SERVICE_CATEGORY_CMAS_TEST_MESSAGE:
CellBroadcastConfigService.java
32
import com.android.internal.telephony.cdma.sms.
SmsEnvelope
;
94
manager.enableCellBroadcast(
SmsEnvelope
.SERVICE_CATEGORY_CMAS_PRESIDENTIAL_LEVEL_ALERT);
195
cmasExtremeStart =
SmsEnvelope
.SERVICE_CATEGORY_CMAS_EXTREME_THREAT;
197
cmasSevereStart =
SmsEnvelope
.SERVICE_CATEGORY_CMAS_SEVERE_THREAT;
199
cmasAmber =
SmsEnvelope
.SERVICE_CATEGORY_CMAS_CHILD_ABDUCTION_EMERGENCY;
200
cmasTestStart =
SmsEnvelope
.SERVICE_CATEGORY_CMAS_TEST_MESSAGE;
202
cmasPresident =
SmsEnvelope
.SERVICE_CATEGORY_CMAS_PRESIDENTIAL_LEVEL_ALERT;
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/cdma/
CdmaSmsCbTest.java
29
import com.android.internal.telephony.cdma.sms.
SmsEnvelope
;
59
p.writeInt(
SmsEnvelope
.TELESERVICE_NOT_SET);
420
doTestCmasBroadcast(
SmsEnvelope
.SERVICE_CATEGORY_CMAS_PRESIDENTIAL_LEVEL_ALERT,
425
doTestCmasBroadcast(
SmsEnvelope
.SERVICE_CATEGORY_CMAS_EXTREME_THREAT,
430
doTestCmasBroadcast(
SmsEnvelope
.SERVICE_CATEGORY_CMAS_SEVERE_THREAT,
435
doTestCmasBroadcast(
SmsEnvelope
.SERVICE_CATEGORY_CMAS_CHILD_ABDUCTION_EMERGENCY,
440
doTestCmasBroadcast(
SmsEnvelope
.SERVICE_CATEGORY_CMAS_TEST_MESSAGE,
445
SmsMessage msg = createCmasSmsMessage(
SmsEnvelope
.SERVICE_CATEGORY_CMAS_EXTREME_THREAT,
453
assertEquals(
SmsEnvelope
.SERVICE_CATEGORY_CMAS_EXTREME_THREAT,
473
SmsMessage msg = createCmasSmsMessage(
SmsEnvelope
.SERVICE_CATEGORY_CMAS_EXTREME_THREAT
[
all
...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
SmsMessage.java
36
import com.android.internal.telephony.cdma.sms.
SmsEnvelope
;
97
private
SmsEnvelope
mEnvelope;
126
SmsEnvelope
env = new
SmsEnvelope
();
138
env.messageType =
SmsEnvelope
.MESSAGE_TYPE_BROADCAST;
141
if (
SmsEnvelope
.TELESERVICE_NOT_SET == env.teleService) {
143
env.messageType =
SmsEnvelope
.MESSAGE_TYPE_ACKNOWLEDGE;
145
env.messageType =
SmsEnvelope
.MESSAGE_TYPE_POINT_TO_POINT;
464
* {@link com.android.internal.telephony.cdma.sms.
SmsEnvelope
#TELESERVICE_NOT_SET},
465
* {@link com.android.internal.telephony.cdma.sms.
SmsEnvelope
#TELESERVICE_WMT}
[
all
...]
CdmaSMSDispatcher.java
53
import com.android.internal.telephony.cdma.sms.
SmsEnvelope
;
152
if (
SmsEnvelope
.MESSAGE_TYPE_BROADCAST == sms.getMessageType()) {
172
if ((
SmsEnvelope
.TELESERVICE_VMN == teleService) ||
173
(
SmsEnvelope
.TELESERVICE_MWI == teleService)) {
185
} else if (((
SmsEnvelope
.TELESERVICE_WMT == teleService) ||
186
(
SmsEnvelope
.TELESERVICE_WEMT == teleService)) &&
190
} else if (
SmsEnvelope
.TELESERVICE_SCPT == teleService) {
212
if (
SmsEnvelope
.TELESERVICE_WAP == teleService) {
220
if ((
SmsEnvelope
.TELESERVICE_WMT != teleService) &&
221
(
SmsEnvelope
.TELESERVICE_WEMT != teleService) &
[
all
...]
Completed in 1259 milliseconds