OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CellBroadcastDatabaseService
(Results
1 - 4
of
4
) sorted by null
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastListActivity.java
79
CellBroadcastDatabaseService
.setActiveListActivity(this);
94
CellBroadcastDatabaseService
.setActiveListActivity(null);
98
/** Callback from
CellBroadcastDatabaseService
after content changes. */
241
CellBroadcastDatabaseService
.class);
242
dbWriteIntent.setAction(
CellBroadcastDatabaseService
.ACTION_DELETE_BROADCAST);
243
dbWriteIntent.putExtra(
CellBroadcastDatabaseService
.DATABASE_ROW_ID_EXTRA, mRowId);
248
CellBroadcastDatabaseService
.class);
249
dbWriteIntent.setAction(
CellBroadcastDatabaseService
.ACTION_DELETE_ALL_BROADCASTS);
CellBroadcastAlertDialog.java
162
Intent intent = new Intent(context,
CellBroadcastDatabaseService
.class);
163
intent.setAction(
CellBroadcastDatabaseService
.ACTION_MARK_BROADCAST_READ);
164
intent.putExtra(
CellBroadcastDatabaseService
.DATABASE_DELIVERY_TIME_EXTRA, mDeliveryTime);
CellBroadcastDatabaseService.java
29
public class
CellBroadcastDatabaseService
extends IntentService {
30
private static final String TAG = "
CellBroadcastDatabaseService
";
57
public
CellBroadcastDatabaseService
() {
CellBroadcastAlertService.java
130
Intent dbWriteIntent = new Intent(this,
CellBroadcastDatabaseService
.class);
131
dbWriteIntent.setAction(
CellBroadcastDatabaseService
.ACTION_INSERT_NEW_BROADCAST);
Completed in 92 milliseconds