/cts/tests/tests/provider/src/android/provider/cts/contacts/ |
ContactsTest.java | 35 import android.provider.Contacts.Groups; 147 * Test case for the behavior of the ContactsProvider's groups table 152 Groups._ID, Groups.NAME, Groups.NOTES, 153 Groups.SYSTEM_ID}; 169 value.put(GroupsColumns.SYSTEM_ID, Groups.GROUP_MY_CONTACTS); 171 Uri uri = mProvider.insert(Groups.CONTENT_URI, value); 172 Cursor cursor = mProvider.query(Groups.CONTENT_URI, 173 GROUPS_PROJECTION, Groups._ID + " = ?" [all...] |
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
LegacyContactsProviderTest.java | 32 import android.provider.Contacts.Groups; 656 values.put(Groups.NAME, "Galois"); 657 values.put(Groups.NOTES, "Abel"); 658 values.put(Groups.SYSTEM_ID, "12345"); 660 Uri groupUri = mResolver.insert(Groups.CONTENT_URI, values); 666 values.put(Groups.NAME, "Galois"); 667 values.put(Groups.NOTES, "Abel"); 668 values.put(Groups.SYSTEM_ID, "12345"); 670 Uri groupUri = mResolver.insert(Groups.CONTENT_URI, values); 673 values.put(Groups.NAME, "Klein") [all...] |
ContactsProvider2Test.java | 58 import android.provider.ContactsContract.Groups; [all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Ip4Dxe/ |
Ip4Impl.c | 96 Joins and leaves multicast groups.
98 The Groups() function is used to join and leave multicast group sessions. Joining
102 If JoinFlag is FALSE and GroupAddress is NULL, all joined groups will be left.
118 @retval EFI_UNSUPPORTED This EFI IPv4 Protocol implementation does not support multicast groups.
401 Ip4ModeData->GroupTable = (EFI_IPv4_ADDRESS *) IpInstance->Groups;
[all...] |
Ip4Impl.h | 164 IP4_ADDR *Groups; // stored in network byte order
|
/packages/apps/Contacts/src/com/android/contacts/list/ |
ContactsIntentResolver.java | 31 import android.provider.ContactsContract.Groups; 103 } else if (Groups.CONTENT_TYPE.equals(resolvedType)) { 142 Groups.CONTENT_TYPE.equals(intent.getType())) {
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
DataRowHandlerForGroupMembership.java | 24 import android.provider.ContactsContract.Groups; 58 "SELECT COUNT(*) FROM " + Tables.DATA + " LEFT OUTER JOIN " + Tables .GROUPS 63 + " AND " + Groups.FAVORITES + "!=0"; 230 Cursor c = db.query(Tables.GROUPS, Projections.ID, 240 groupValues.put(Groups.SOURCE_ID, sourceId); 241 long groupId = db.insert(Tables.GROUPS, null, groupValues);
|
ContactsProvider2.java | 93 import android.provider.ContactsContract.Groups; 391 public static final int GROUPS = 10000; 479 + " AND " + Groups.FAVORITES + " != 0"; 484 + " AND " + Groups.AUTO_ADD + " != 0"; 487 = new String[] {Tables.GROUPS + "." + Groups._ID}; 542 /** Sql where statement for filtering on groups. */ 552 + "(SELECT " + Tables.GROUPS + "." + Groups._ID 553 + " FROM " + Tables.GROUPS [all...] |
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Protocol/ManagedNetwork/ |
ManagedNetwork.h | 154 EFI_MANAGED_NETWORK_GROUPS Groups;
|
/device/linaro/bootloader/edk2/MdePkg/Include/Protocol/ |
ManagedNetwork.h | 59 /// active multicast groups. The startup default value is FALSE.
362 EFI_MANAGED_NETWORK_GROUPS Groups;
|
Udp6.h | 381 Joins and leaves multicast groups.
383 The Groups() function is used to join or leave one or more multicast group.
384 If the JoinFlag is FALSE and the MulticastAddress is NULL, then all currently joined groups are left.
388 or all multicast groups.
570 EFI_UDP6_GROUPS Groups;
|
Ip4.h | 166 /// Number of joined multicast groups.
353 Joins and leaves multicast groups.
355 The Groups() function is used to join and leave multicast group sessions. Joining
359 If JoinFlag is FALSE and GroupAddress is NULL, all joined groups will be left.
375 @retval EFI_UNSUPPORTED This EFI IPv4 Protocol implementation does not support multicast groups.
601 EFI_IP4_GROUPS Groups;
|
Udp4.h | 204 Joins and leaves multicast groups.
206 The Groups() function is used to enable and disable the multicast group
208 currently joined groups are left.
212 or all multicast groups.
434 EFI_UDP4_GROUPS Groups;
|
/frameworks/base/core/java/android/provider/ |
Contacts.java | 172 * A setting that is used to indicate if we should sync down all groups for the 174 * If this isn't set then we will only sync the groups whose SHOULD_SYNC column 456 Cursor groupsCursor = resolver.query(Groups.CONTENT_URI, GROUPS_PROJECTION, 457 Groups.SYSTEM_ID + "='" + Groups.GROUP_MY_CONTACTS + "'", null, null); 502 Cursor groupsCursor = resolver.query(Groups.CONTENT_URI, GROUPS_PROJECTION, 503 Groups.NAME + "=?", new String[] { groupName }, null); 539 Groups._ID, 573 new String[]{String.valueOf(person)}, Groups.DEFAULT_SORT_ORDER); 742 * Columns from the groups table [all...] |
/external/syslinux/efi32/include/efi/ |
efiudp.h | 151 EFI_UDP4_GROUPS Groups; 265 EFI_UDP6_GROUPS Groups;
|
/external/syslinux/efi64/include/efi/ |
efiudp.h | 151 EFI_UDP4_GROUPS Groups; 265 EFI_UDP6_GROUPS Groups;
|
/external/syslinux/gnu-efi/gnu-efi-3.0/inc/ |
efiudp.h | 151 EFI_UDP4_GROUPS Groups; 265 EFI_UDP6_GROUPS Groups;
|
/packages/apps/Contacts/tests/src/com/android/contacts/activities/ |
PeopleActivityTest.java | 25 import android.provider.ContactsContract.Groups; 117 .expectQuery(Groups.CONTENT_URI)
|
/packages/apps/Contacts/src/com/android/contacts/ |
ContactSaveService.java | 46 import android.provider.ContactsContract.Groups; [all...] |
/packages/apps/Contacts/tests/src/com/android/contacts/tests/allintents/ |
AllIntentsActivity.java | 38 import android.provider.ContactsContract.Groups; 258 intent.setType(Groups.CONTENT_TYPE); 578 intent.setData(ContentUris.withAppendedId(Groups.CONTENT_URI, groupId)); 586 final Cursor cursor = getContentResolver().query(Groups.CONTENT_URI, 587 new String[] { Groups._ID },
|
/packages/apps/Contacts/src/com/android/contacts/model/ |
ContactLoader.java | 36 import android.provider.ContactsContract.Groups; [all...] |
Cp2DeviceLocalAccountLocator.java | 43 // RawContacts, Groups, and Settings. This assumption simplifies the code somewhat and it 76 // Many device accounts have default groups associated with them. 77 addAccountsFromQuery(ContactsContract.Groups.CONTENT_URI, localAccounts);
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Protocol/Ip4/ |
Ip4.h | 230 EFI_IP4_GROUPS Groups;
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Protocol/Udp4/ |
Udp4.h | 202 EFI_UDP4_GROUPS Groups;
|
/packages/apps/Contacts/src/com/android/contacts/group/ |
GroupMetaData.java | 65 ContactsContract.Groups.CONTENT_URI, groupId);
|