OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:RAW_CONTACTS
(Results
1 - 2
of
2
) sorted by null
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactsDatabaseHelper.java
113
public static final String
RAW_CONTACTS
= "
raw_contacts
";
141
RAW_CONTACTS
,
161
+ "JOIN
raw_contacts
ON (data.raw_contact_id =
raw_contacts
._id)";
165
+ "JOIN
raw_contacts
ON (data.raw_contact_id =
raw_contacts
._id)";
168
public static final String RAW_CONTACTS_JOIN_SETTINGS_DATA_GROUPS = "
raw_contacts
"
170
+ "
raw_contacts
.account_name = settings.account_name AND "
171
+ "
raw_contacts
.account_type = settings.account_type AND
[
all
...]
ContactsProvider2.java
247
"UPDATE " + Tables.
RAW_CONTACTS
+ " SET " + RawContacts.TIMES_CONTACTED + "=" +
284
private static final int
RAW_CONTACTS
= 2002;
426
+ " FROM " + Tables.
RAW_CONTACTS
+ " WHERE " + RawContacts._ID + "=?";
430
+ "JOIN
raw_contacts
ON (data.raw_contact_id =
raw_contacts
._id) "
431
+ "JOIN contacts ON (
raw_contacts
.contact_id = contacts._id)";
451
String TABLE = Tables.
RAW_CONTACTS
;
472
+ " FROM " + Tables.
RAW_CONTACTS
484
"UPDATE " + Tables.
RAW_CONTACTS
+
490
"UPDATE " + Tables.
RAW_CONTACTS
[
all
...]
Completed in 27 milliseconds