OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:voicemail_status
(Results
1 - 10
of
10
) sorted by null
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
CallLogMigrationTest.java
60
assertTrue(CallLogDatabaseHelper.tableExists(sourceDb, "
voicemail_status
"));
75
CallLogDatabaseHelper.Tables.
VOICEMAIL_STATUS
, null));
82
assertFalse(CallLogDatabaseHelper.tableExists(sourceDb, "
voicemail_status
"));
ContactsDatabaseHelperUpgradeTest.java
126
TableStructure voicemailStatus = new TableStructure(mDb, "
voicemail_status
");
502
new TableListEntry("
voicemail_status
", VOICEMAIL_STATUS_COLUMNS, false),
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
CallLogDatabaseHelper.java
59
String
VOICEMAIL_STATUS
= "
voicemail_status
";
78
String VOICEMAIL_STATUS_LEGACY = "
voicemail_status
";
100
// The CALLS and
VOICEMAIL_STATUS
table used to be in the contacts2.db. So we need to
157
db.execSQL("CREATE TABLE " + Tables.
VOICEMAIL_STATUS
+ " (" +
241
db.execSQL("ALTER TABLE " + Tables.
VOICEMAIL_STATUS
+ " ADD " + Status.SOURCE_TYPE +
297
calllog.insertOrThrow(Tables.
VOICEMAIL_STATUS
, null, cv);
VoicemailContentProvider.java
45
* voicemail content ('calls') table and '
voicemail_status
' table. This class performs all common
69
mVoicemailStatusTable = new VoicemailStatusTable(Tables.
VOICEMAIL_STATUS
, context,
DbModifierWithNotification.java
91
mBaseUri = mTableName.equals(Tables.
VOICEMAIL_STATUS
) ?
ContactsDatabaseHelper.java
[
all
...]
/packages/providers/ContactsProvider/tests/assets/calllogmigration/
contacts2.db
8
CREATE TABLE sqlite_stat1(tbl,idx,stat)?--?atablevoicemail_statusvoicemail_statusCREATE TABLE
voicemail_status
(_id INTEGER PRIMARY KEY AUTOINCREMENT,source_package TEXT UNIQUE NOT NULL,phone_account_component_name TEXT,phone_account_id TEXT,settings_uri TEXT,voicemail_access_uri TEXT,configuration_state INTEGER,data_channel_state INTEGER,notification_channel_state INTEGER, quota_occupied INTEGER DEFAULT -1, quota_total INTEGER DEFAULT -1)?S- indexsqlite_autoindex_voicemail_status_1voicemail_status P++Ytablesqlite_sequencesqlite_sequenceCREATE TABLE sqlite_sequence(name,seq)?:?StablecallscallsCREATE TABLE calls (_id INTEGER PRIMARY KEY AUTOINCREMENT,number TEXT,presentation INTEGER NOT NULL DEFAULT 1,post_dial_digits TEXT NOT NULL DEFAULT '',date INTEGER,duration INTEGER,data_usage INTEGER,type INTEGER,features INTEGER NOT NULL DEFAULT 0,subscription_component_name TEXT,subscription_id TEXT,phone_account_address TEXT,phone_account_hidden INTEGER NOT NULL DEFAULT 0,sub_id INTEGER DEFAULT -1,new INTEGER,name TEXT,numbertype INTEGER,numberlabel TEXT,countryiso TEXT,voicemail_uri TEXT,is_read INTEGER,geocoded_location TEXT,lookup_uri TEXT,matched_number TEXT,normalized_number TEXT,photo_id INTEGER NOT NULL DEFAULT 0,photo_uri TEXT,formatted_number TEXT,add_for_all_users INTEGER NOT NULL DEFAULT 1,_data TEXT,has_content INTEGER,mime_type TEXT,source_data TEXT,source_package TEXT,transcription TEXT,state INTEGER,dirty INTEGER NOT NULL DEFAULT 0,deleted INTEGER NOT NULL DEFAULT 0, last_modified INTEGER DEFAULT 0)n!!?'tablepropertiespropertiesCREATE TABLE properties (property_key TEXT PRIMARY KEY, property_value TEXT )3G! indexsqlite_autoindex_properties_1properties W--ctableandroid_metadataandroid_metadataCREATE TABLE android_metadata (locale TEXT) ? ? en_US ?????Y> g5call_log_last_synced123456f7directoryScanComplete16d)Wknown_accountsmakoto.android.1@gmail.comcom.google %search_index1)aggregation_v25localeen-US#icu_version56.1#7#database_time_created46826626075
22
|?&?UScontent://com.android.voicemail/voicemail/7?source_package=com.google.android.apps.googlevoiceCalifornianull+15502651111+1 550-265-1111/data/user/0/com.android.providers.contacts/app_voicemail-data/voicemail3audio/mpeg123com.google.android.apps.googlevoiceQ?&?0?\* % ?I! % + ? !S +55584542222Q?%?abc?{-name--label-UScontent://com.android.voicemail/voicemail/5?source_package=com.google.android.apps.googlevoiceCalifornianull+15554542222+1 555-454-2222/data/user/0/com.android.providers.contacts/app_voicemail-data/voicemail1audio/mpegabccom.google.android.apps.googlevoiceabcQ?&???O) # ?#' !#% ) 15554542222Q?%/4com.android.phone/com.android.services.telephony.TelephonyConnectionService8901260250039?USCaliforniahttp://abc/456+155545422221 555-454-2222Q?%?N ? ?? calls-
voicemail_status
B ?B (…)
[
all
...]
/packages/services/Telephony/src/com/android/phone/vvm/omtp/
SimChangeReceiver.java
43
* change the status in the
voicemail_status
table.
/packages/apps/Dialer/src/com/android/dialer/voicemail/
VoicemailStatusHelperImpl.java
48
/** Projection on the
voicemail_status
table used by this class. */
/packages/providers/ContactsProvider/tests/assets/upgradeTest/
contacts2_1108.sql
46
CREATE TABLE
voicemail_status
(_id INTEGER PRIMARY KEY AUTOINCREMENT,source_package TEXT UNIQUE NOT NULL,phone_account_component_name TEXT,phone_account_id TEXT,settings_uri TEXT,voicemail_access_uri TEXT,configuration_state INTEGER,data_channel_state INTEGER,notification_channel_state INTEGER);
table
47
INSERT INTO "
voicemail_status
" VALUES(1,'com.android.phone','com.android.phone/com.android.services.telephony.TelephonyConnectionService','8901260421762832248',NULL,NULL,0,0,0);
79
INSERT INTO "sqlite_stat1" VALUES('
voicemail_status
',NULL,'5');
113
INSERT INTO "sqlite_sequence" VALUES('
voicemail_status
',1);
[
all
...]
Completed in 309 milliseconds