HomeSort by relevance Sort by last modified time
    Searched refs:Groups (Results 1 - 25 of 77) sorted by null

1 2 3 4

  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Ip4Dxe/
Ip4Igmp.c 69 Status = Mnp->Groups (Mnp, TRUE, &Group->Mac);
75 InsertHeadList (&IgmpCtrl->Groups, &Group->Link);
105 NET_LIST_FOR_EACH (Entry, &IgmpCtrl->Groups) {
118 Count the number of IP4 multicast groups that are mapped to the
141 NET_LIST_FOR_EACH (Entry, &IgmpCtrl->Groups) {
318 Status = Mnp->Groups (Mnp, TRUE, &Group->Mac);
324 InsertHeadList (&IgmpCtrl->Groups, &Group->Link);
381 Status = Mnp->Groups (Mnp, FALSE, &Group->Mac);
466 NET_LIST_FOR_EACH (Entry, &IgmpCtrl->Groups) {
533 NET_LIST_FOR_EACH (Entry, &IgmpCtrl->Groups) {
    [all...]
Ip4Igmp.h 59 LIST_ENTRY Groups;
158 @return NULL if failed to allocate memory for the new groups,
172 both Groups and Addr, the network byte order is used by
175 @param Groups The array of group addresses to remove from.
176 @param Count The number of group addresses in the Groups.
179 @return The nubmer of group addresses in the Groups after remove.
180 It is Count if the Addr isn't in the Groups.
185 IN OUT IP4_ADDR *Groups,
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;
798 if (IpInstance->Groups != NULL) {
799 FreePool (IpInstance->Groups);
800 IpInstance->Groups = NULL;
    [all...]
Ip4Impl.h 166 IP4_ADDR *Groups; // stored in network byte order
  /cts/tests/tests/provider/src/android/provider/cts/contacts/
ContactsContract_GroupMembershipTest.java 24 import android.provider.ContactsContract.Groups;
68 .with(Groups.SOURCE_ID, "test_source_id")
69 .with(Groups.ACCOUNT_TYPE, "test_type")
70 .with(Groups.ACCOUNT_NAME, "test_name")
91 .with(Groups.ACCOUNT_TYPE, "test_type")
92 .with(Groups.ACCOUNT_NAME, "test_name")
93 .with(Groups.SOURCE_ID, "test_source_id")
94 .with(Groups.DELETED, 0)
Contacts_PeopleTest.java 32 import android.provider.Contacts.Groups;
61 Groups._ID,
62 Groups.NAME
77 // insert some lines in people table and groups table to be used in test case.
87 value.put(Groups.NAME, "test_group_0");
88 mGroupRowsAdded.add(mProvider.insert(Groups.CONTENT_URI, value));
89 value.put(Groups.NAME, "test_group_1");
90 mGroupRowsAdded.add(mProvider.insert(Groups.CONTENT_URI, value));
119 testValues.put(GroupsColumns.SYSTEM_ID, Groups.GROUP_MY_CONTACTS);
120 mProvider.insert(Groups.CONTENT_URI, testValues)
    [all...]
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...]
  /external/llvm/tools/llvm-pdbdump/
ClassDefinitionDumper.cpp 73 SymbolGroupByAccess Groups;
74 Groups.insert(std::make_pair(0, SymbolGroup()));
75 Groups.insert(std::make_pair((int)PDB_MemberAccess::Private, SymbolGroup()));
76 Groups.insert(
78 Groups.insert(std::make_pair((int)PDB_MemberAccess::Public, SymbolGroup()));
85 auto &AccessGroup = Groups.find((int)Access)->second;
104 Count += dumpAccessGroup((PDB_MemberAccess)0, Groups[0]);
106 Groups[(int)PDB_MemberAccess::Public]);
108 Groups[(int)PDB_MemberAccess::Protected]);
110 Groups[(int)PDB_MemberAccess::Private])
    [all...]
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/platform/
ContactManager.java 37 import android.provider.ContactsContract.Groups;
65 final Cursor cursor = resolver.query(Groups.CONTENT_URI, new String[] { Groups._ID },
66 Groups.ACCOUNT_NAME + "=? AND " + Groups.ACCOUNT_TYPE + "=? AND " +
67 Groups.TITLE + "=?",
82 contentValues.put(Groups.ACCOUNT_NAME, account.name);
83 contentValues.put(Groups.ACCOUNT_TYPE, account.type);
84 contentValues.put(Groups.TITLE, SAMPLE_GROUP_NAME);
85 contentValues.put(Groups.GROUP_IS_READ_ONLY, true)
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/
Ip6Mld.h 52 LIST_ENTRY Groups;
Ip6Mld.c 46 InsertTailList (&IpSb->MldCtrl.Groups, &Entry->Link);
73 NET_LIST_FOR_EACH (Entry, &IpSb->MldCtrl.Groups) {
84 Count the number of IP6 multicast groups that are mapped to the
107 NET_LIST_FOR_EACH (Entry, &MldCtrl->Groups) {
369 Status = IpSb->Mnp->Groups (IpSb->Mnp, TRUE, &Group->Mac);
520 Status = IpSb->Mnp->Groups (IpSb->Mnp, TRUE, &Group->Mac);
580 Status = IpSb->Mnp->Groups (IpSb->Mnp, FALSE, &Group->Mac);
650 // Leave the group. Leave all the groups if GroupAddress is NULL.
804 NET_LIST_FOR_EACH (Entry, &IpSb->MldCtrl.Groups) {
901 NET_LIST_FOR_EACH (Entry, &IpSb->MldCtrl.Groups) {
    [all...]
  /external/mesa3d/src/mesa/main/
debug_output.c 104 struct gl_debug_group *Groups[MAX_DEBUG_GROUP_STACK_DEPTH];
416 debug->Groups[0] = malloc(sizeof(*debug->Groups[0]));
417 if (!debug->Groups[0]) {
425 debug_namespace_init(&debug->Groups[0]->Namespaces[s][t]);
438 return (gstack > 0 && debug->Groups[gstack] == debug->Groups[gstack - 1]);
448 const struct gl_debug_group *src = debug->Groups[gstack];
476 debug->Groups[gstack] = dst;
490 struct gl_debug_group *grp = debug->Groups[gstack]
    [all...]
performance_monitor.c 29 * one for Groups, and one for Counters. These will be used as indexes into
53 ctx->PerfMonitor.Groups = NULL;
59 if (unlikely(!ctx->PerfMonitor.Groups))
86 const struct gl_perf_monitor_group *g = &ctx->PerfMonitor.Groups[i];
135 return &ctx->PerfMonitor.Groups[id];
151 GLuint *groups)
159 if (groupsSize > 0 && groups != NULL) {
163 /* We just use the index in the Groups array as the ID. */
165 groups[i] = i;
566 const struct gl_perf_monitor_group *g = &ctx->PerfMonitor.Groups[group]
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/
X86InstrFMA3Info.cpp 66 static const X86InstrFMA3Group Groups[] = {
120 assert(std::is_sorted(std::begin(Groups), std::end(Groups)) &&
155 Table = makeArrayRef(Groups);
  /external/mesa3d/src/mesa/state_tracker/
st_cb_perfmon.c 55 const struct gl_perf_monitor_group *g = &ctx->PerfMonitor.Groups[gid];
88 const struct gl_perf_monitor_group *g = &ctx->PerfMonitor.Groups[gid];
296 type = ctx->PerfMonitor.Groups[gid].Counters[cid].Type;
348 struct gl_perf_monitor_group *groups = NULL; local
356 /* Get the number of available groups. */
358 groups = CALLOC(num_groups, sizeof(*groups));
359 if (!groups)
367 struct gl_perf_monitor_group *g = &groups[perfmon->NumGroups];
438 perfmon->Groups = groups
    [all...]
  /external/ims/rcs/presencepolling/src/com/android/service/ims/presence/
ContactDbUtil.java 38 import android.provider.ContactsContract.Groups;
  /external/llvm/utils/TableGen/
OptParserEmitter.cpp 109 // Get the option groups and options.
110 const std::vector<Record*> &Groups =
117 // Generate prefix groups.
158 OS << "// Groups\n\n";
160 for (unsigned i = 0, e = Groups.size(); i != e; ++i) {
161 const Record &R = *Groups[i];
185 // The other option arguments (unused for groups).
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/TableGen/
OptParserEmitter.cpp 111 // Get the option groups and options.
112 const std::vector<Record*> &Groups =
119 // Generate prefix groups.
160 OS << "// Groups\n\n";
162 for (unsigned i = 0, e = Groups.size(); i != e; ++i) {
163 const Record &R = *Groups[i];
187 // The other option arguments (unused for groups).
201 // The option Values (unused for groups).
  /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;
  /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;

Completed in 2807 milliseconds

1 2 3 4