OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mBroadcastDb
(Results
1 - 2
of
2
) sorted by null
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastDatabaseService.java
52
private SQLiteDatabase
mBroadcastDb
;
65
if (
mBroadcastDb
== null) {
68
mBroadcastDb
= helper.getWritableDatabase();
76
if (
mBroadcastDb
!= null) {
77
mBroadcastDb
.close();
78
mBroadcastDb
= null;
100
long rowId =
mBroadcastDb
.insert(CellBroadcastDatabase.TABLE_NAME, null, cv);
113
int rowCount =
mBroadcastDb
.delete(CellBroadcastDatabase.TABLE_NAME,
120
mBroadcastDb
.delete(CellBroadcastDatabase.TABLE_NAME, null, null);
133
rowCount =
mBroadcastDb
.update(CellBroadcastDatabase.TABLE_NAME, cv
[
all
...]
CellBroadcastListActivity.java
54
private SQLiteDatabase
mBroadcastDb
;
66
if (
mBroadcastDb
== null) {
69
mBroadcastDb
= helper.getReadableDatabase();
73
mAdapterCursor = CellBroadcastDatabase.getCursor(
mBroadcastDb
);
90
if (
mBroadcastDb
!= null) {
91
mBroadcastDb
.close();
92
mBroadcastDb
= null;
Completed in 15 milliseconds