Lines Matching refs:action
32 /** Action to insert a new message (passed as CellBroadcastMessage extra). */
35 /** Action to delete a single broadcast (row ID passed as extra). */
38 /** Action to mark a broadcast as read by the user (by row ID or delivery time extra). */
41 /** Action to delete all broadcasts from database (no extras). */
89 String action = intent.getAction();
91 if (ACTION_INSERT_NEW_BROADCAST.equals(action)) {
106 } else if (ACTION_DELETE_BROADCAST.equals(action)) {
119 } else if (ACTION_DELETE_ALL_BROADCASTS.equals(action)) {
122 } else if (ACTION_MARK_BROADCAST_READ.equals(action)) {
145 Log.e(TAG, "ignoring unexpected Intent with action " + action);