OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SHOW_NEW_ALERT_ACTION
(Results
1 - 2
of
2
) sorted by null
/packages/apps/CellBroadcastReceiver/tests/unit/src/com/android/cellbroadcastreceiver/
CellBroadcastAlertServiceTest.java
34
import static com.android.cellbroadcastreceiver.CellBroadcastAlertService.
SHOW_NEW_ALERT_ACTION
;
83
assertEquals(
SHOW_NEW_ALERT_ACTION
, mServiceIntentToVerify.getAction());
98
intent.setAction(
SHOW_NEW_ALERT_ACTION
);
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastAlertService.java
62
static final String
SHOW_NEW_ALERT_ACTION
= "cellbroadcastreceiver.SHOW_NEW_ALERT";
141
} else if (
SHOW_NEW_ALERT_ACTION
.equals(action)) {
237
final Intent alertIntent = new Intent(
SHOW_NEW_ALERT_ACTION
);
260
Log.e(TAG, "received
SHOW_NEW_ALERT_ACTION
with no extras!");
267
Log.e(TAG, "received
SHOW_NEW_ALERT_ACTION
with no message extra");
Completed in 113 milliseconds