HomeSort by relevance Sort by last modified time
    Searched refs:CellBroadcastMessage (Results 1 - 14 of 14) sorted by null

  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastReceiverApp.java 20 import android.telephony.CellBroadcastMessage;
32 private static final ArrayList<CellBroadcastMessage> sNewMessageList =
33 new ArrayList<CellBroadcastMessage>(4);
36 private static CellBroadcastMessage sLatestAreaInfo;
39 static ArrayList<CellBroadcastMessage> addNewMessageToList(CellBroadcastMessage message) {
50 static void setLatestAreaInfo(CellBroadcastMessage areaInfo) {
55 static CellBroadcastMessage getLatestAreaInfo() {
CellBroadcastCursorAdapter.java 21 import android.telephony.CellBroadcastMessage;
47 CellBroadcastMessage message = CellBroadcastMessage.createFromCursor(cursor);
66 CellBroadcastMessage message = CellBroadcastMessage.createFromCursor(cursor);
CellBroadcastListItem.java 22 import android.telephony.CellBroadcastMessage;
36 private CellBroadcastMessage mCbMessage;
48 CellBroadcastMessage getMessage() {
65 public void bind(CellBroadcastMessage message) {
79 private static CharSequence formatMessage(CellBroadcastMessage message) {
CellBroadcastAlertDialog.java 33 import android.telephony.CellBroadcastMessage;
64 protected ArrayList<CellBroadcastMessage> mMessageList;
253 CellBroadcastMessage.SMS_CB_MESSAGE_EXTRA);
258 CellBroadcastMessage.SMS_CB_MESSAGE_EXTRA);
272 CellBroadcastMessage message = getLatestMessage();
288 CellBroadcastMessage message = getLatestMessage();
318 CellBroadcastMessage getLatestMessage() {
329 private CellBroadcastMessage removeLatestMessage() {
345 outState.putParcelableArrayList(CellBroadcastMessage.SMS_CB_MESSAGE_EXTRA, mMessageList);
352 private void updateAlertText(CellBroadcastMessage message)
    [all...]
CellBroadcastAreaInfoReceiver.java 23 import android.telephony.CellBroadcastMessage;
39 CellBroadcastMessage message = CellBroadcastReceiverApp.getLatestAreaInfo();
CellBroadcastListActivity.java 35 import android.telephony.CellBroadcastMessage;
179 private void showDialogAndMarkRead(CellBroadcastMessage cbm) {
182 ArrayList<CellBroadcastMessage> messageList = new ArrayList<CellBroadcastMessage>(1);
184 i.putParcelableArrayListExtra(CellBroadcastMessage.SMS_CB_MESSAGE_EXTRA, messageList);
188 private void showBroadcastDetails(CellBroadcastMessage cbm) {
220 showBroadcastDetails(CellBroadcastMessage.createFromCursor(cursor));
CellBroadcastAlertService.java 42 import android.telephony.CellBroadcastMessage;
239 final CellBroadcastMessage cbm = new CellBroadcastMessage(message);
334 CellBroadcastMessage cbm = (CellBroadcastMessage) intent.getParcelableExtra(EXTRA_MESSAGE);
347 ArrayList<CellBroadcastMessage> messageList = CellBroadcastReceiverApp
360 private boolean isMessageEnabled(CellBroadcastMessage message) {
492 private void openEmergencyAlertNotification(CellBroadcastMessage message) {
591 ArrayList<CellBroadcastMessage> messageList = new ArrayList<CellBroadcastMessage>(1)
    [all...]
CellBroadcastChannelManager.java 20 import android.telephony.CellBroadcastMessage;
272 Context context, CellBroadcastMessage message) {
300 public static boolean isEmergencyMessage(Context context, CellBroadcastMessage message) {
CellBroadcastResources.java 21 import android.telephony.CellBroadcastMessage;
45 public static CharSequence getMessageDetails(Context context, CellBroadcastMessage cbm) {
243 public static int getDialogTitleResource(Context context, CellBroadcastMessage cbm) {
CellBroadcastContentProvider.java 32 import android.telephony.CellBroadcastMessage;
191 boolean insertNewBroadcast(CellBroadcastMessage message) {
204 // The CellBroadcastMessage will be passed with the intent, so the message will be
  /packages/apps/CellBroadcastReceiver/tests/unit/src/com/android/cellbroadcastreceiver/
CellBroadcastAlertServiceTest.java 30 import android.telephony.CellBroadcastMessage;
84 private static void compareCellBroadCastMessage(CellBroadcastMessage cbm1,
85 CellBroadcastMessage cbm2) {
118 CellBroadcastMessage cbmTest =
119 (CellBroadcastMessage) mServiceIntentToVerify.getExtras().get("message");
120 CellBroadcastMessage cbm = new CellBroadcastMessage(createMessage(987654321));
130 intent.putExtra("message", new CellBroadcastMessage(message));
144 ArrayList<CellBroadcastMessage> newMessageList = mActivityIntentToVerify
145 .getParcelableArrayListExtra(CellBroadcastMessage.SMS_CB_MESSAGE_EXTRA)
    [all...]
CellBroadcastAlertDialogTest.java 29 import android.telephony.CellBroadcastMessage;
64 ArrayList<CellBroadcastMessage> messageList = new ArrayList<>(1);
65 messageList.add(new CellBroadcastMessage(
70 intent.putParcelableArrayListExtra(CellBroadcastMessage.SMS_CB_MESSAGE_EXTRA,
  /frameworks/opt/telephony/src/java/android/telephony/
CellBroadcastMessage.java 35 * Use {@link #createFromCursor} to create CellBroadcastMessage objects from rows
40 public class CellBroadcastMessage implements Parcelable {
77 public CellBroadcastMessage(SmsCbMessage message) {
83 private CellBroadcastMessage(SmsCbMessage message, long deliveryTime, boolean isRead) {
89 private CellBroadcastMessage(Parcel in) {
110 public static final Parcelable.Creator<CellBroadcastMessage> CREATOR
111 = new Parcelable.Creator<CellBroadcastMessage>() {
113 public CellBroadcastMessage createFromParcel(Parcel in) {
114 return new CellBroadcastMessage(in);
118 public CellBroadcastMessage[] newArray(int size)
    [all...]
  /packages/apps/Settings/src/com/android/settings/deviceinfo/simstatus/
SimStatusDialogController.java 36 import android.telephony.CellBroadcastMessage;
120 final CellBroadcastMessage cbMessage = (CellBroadcastMessage) extras.get("message");

Completed in 309 milliseconds