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

  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastReceiverApp.java 20 import android.telephony.CellBroadcastMessage;
42 private static final ArrayList<CellBroadcastMessage> sNewMessageList =
43 new ArrayList<CellBroadcastMessage>(4);
46 private static CellBroadcastMessage sLatestAreaInfo;
49 static ArrayList<CellBroadcastMessage> addNewMessageToList(CellBroadcastMessage message) {
60 static void setLatestAreaInfo(CellBroadcastMessage areaInfo) {
65 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;
46 CellBroadcastMessage getMessage() {
63 public void bind(CellBroadcastMessage message) {
77 private static CharSequence formatMessage(CellBroadcastMessage message) {
CellBroadcastAlertDialog.java 24 import android.telephony.CellBroadcastMessage;
77 i.putParcelableArrayListExtra(CellBroadcastMessage.SMS_CB_MESSAGE_EXTRA, mMessageList);
CellBroadcastAlertFullScreen.java 32 import android.telephony.CellBroadcastMessage;
65 ArrayList<CellBroadcastMessage> mMessageList;
224 CellBroadcastMessage getLatestMessage() {
234 private CellBroadcastMessage removeLatestMessage() {
273 CellBroadcastMessage.SMS_CB_MESSAGE_EXTRA);
278 CellBroadcastMessage.SMS_CB_MESSAGE_EXTRA);
293 CellBroadcastMessage message = getLatestMessage();
306 * @param intent The new intent containing one or more {@link CellBroadcastMessage}s.
310 ArrayList<CellBroadcastMessage> newMessageList = intent.getParcelableArrayListExtra(
311 CellBroadcastMessage.SMS_CB_MESSAGE_EXTRA)
    [all...]
CellBroadcastAlertService.java 32 import android.telephony.CellBroadcastMessage;
141 final CellBroadcastMessage cbm = new CellBroadcastMessage(message);
202 CellBroadcastMessage cbm = (CellBroadcastMessage) extras.get("message");
230 private boolean isMessageEnabledByUser(CellBroadcastMessage message) {
278 private void openEmergencyAlertNotification(CellBroadcastMessage message) {
338 ArrayList<CellBroadcastMessage> messageList = new ArrayList<CellBroadcastMessage>(1);
351 private void addToNotificationBar(CellBroadcastMessage message)
    [all...]
CellBroadcastListActivity.java 34 import android.telephony.CellBroadcastMessage;
162 private void showDialogAndMarkRead(CellBroadcastMessage cbm) {
165 ArrayList<CellBroadcastMessage> messageList = new ArrayList<CellBroadcastMessage>(1);
167 i.putParcelableArrayListExtra(CellBroadcastMessage.SMS_CB_MESSAGE_EXTRA, messageList);
171 private void showBroadcastDetails(CellBroadcastMessage cbm) {
203 showBroadcastDetails(CellBroadcastMessage.createFromCursor(cursor));
CellBroadcastResources.java 21 import android.telephony.CellBroadcastMessage;
41 public static CharSequence getMessageDetails(Context context, CellBroadcastMessage cbm) {
239 public static int getDialogTitleResource(CellBroadcastMessage cbm) {
CellBroadcastContentProvider.java 31 import android.telephony.CellBroadcastMessage;
189 boolean insertNewBroadcast(CellBroadcastMessage message) {
202 // The CellBroadcastMessage will be passed with the intent, so the message will be
CellBroadcastReceiver.java 29 import android.telephony.CellBroadcastMessage;
102 CellBroadcastMessage message = CellBroadcastReceiverApp.getLatestAreaInfo();
CellBroadcastConfigService.java 26 import android.telephony.CellBroadcastMessage;
108 static boolean isEmergencyAlertMessage(CellBroadcastMessage message) {
  /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) {
108 public static final Parcelable.Creator<CellBroadcastMessage> CREATOR
109 = new Parcelable.Creator<CellBroadcastMessage>() {
111 public CellBroadcastMessage createFromParcel(Parcel in) {
112 return new CellBroadcastMessage(in);
116 public CellBroadcastMessage[] newArray(int size)
    [all...]
  /packages/apps/Settings/src/com/android/settings/deviceinfo/
Status.java 39 import android.telephony.CellBroadcastMessage;
228 CellBroadcastMessage cbMessage = (CellBroadcastMessage) extras.get("message");

Completed in 1208 milliseconds