Searched refs:groups (Results 1 - 15 of 15) sorted by relevance

/seL4-camkes-master/projects/musllibc/src/misc/
H A Dinitgroups.c7 gid_t groups[NGROUPS_MAX]; local
9 if (getgrouplist(user, gid, groups, &count) < 0) return -1;
10 return setgroups(count, groups);
/seL4-camkes-master/kernel/tools/hardware/outputs/
H A Dc_header.py113 ''' Given a device tree and a set of rules, returns a tuple (groups, offsets).
120 groups = []
125 if reg in groups:
126 other = groups[groups.index(reg)]
129 groups.append(reg)
132 for group in groups:
135 return (groups, offsets)
H A Dyaml.py19 groups = []
22 groups += rule.get_regions(dev)
24 return groups
/seL4-camkes-master/projects/musllibc/src/passwd/
H A Dgetgrouplist.c12 int getgrouplist(const char *user, gid_t gid, gid_t *groups, int *ngroups) argument
27 if (nlim >= 1) *groups++ = gid;
57 if (++n <= nlim) *groups++ = gr.gr_gid;
67 if(++n <= nlim) *groups++ = nscdbuf[i];
/seL4-camkes-master/projects/camkes-tool/camkes/parser/
H A Dstage5.py39 Postcondition of this transformation. Afterwards, no groups should remain
52 # Remove the groups which should have all been resolved.
53 [item.instances.extend(g.instances) for g in item.groups]
54 item.groups = []
H A Dstage3.py282 groups=composition_defn.groups, exports=composition_defn.exports,
287 groups=composition_defn.groups, exports=composition_defn.exports,
294 groups=[x for x in args if isinstance(x, Group)],
/seL4-camkes-master/projects/seL4_libs/libsel4test/tools/
H A Dextract_results.py85 if not matches or len(matches.groups()) != 1:
/seL4-camkes-master/projects/picotcp/docs/user_manual/
H A Dchap_api_mld.tex4 This module allows the user to join and leave ipv6 multicast groups. The module is based on the MLD version 2 protocol and it's backwards compatible with version 1.
H A Dchap_api_igmp.tex4 This module allows the user to join and leave ipv4 multicast groups. The module is based on the IGMP version 3 protocol and it's backwards compatible with version 2. Version 1 is not supported.
/seL4-camkes-master/projects/camkes-tool/camkes/parser/tests/
H A Dteststage4.py281 self.assertLen(comp.groups, 1)
282 g = comp.groups[0]
328 There's a slight quirk with reference resolution involving groups
329 where, though you may have interleaved instances, groups and
332 instances and groups, but instances and groups cannot reference
368 self.assertLen(comp.groups, 1)
369 g = comp.groups[0]
H A Dteststage5.py64 self.assertLen(comp.groups, 0)
/seL4-camkes-master/projects/camkes-tool/camkes/templates/
H A Dmacros.py509 # NB: the stage5 parser moves group information from composition.groups
523 groups = set(get_canonical_label(end.instance.name)
525 if len(groups) == 1:
526 group_labels[conn.name] = list(groups)[0]
/seL4-camkes-master/projects/camkes-tool/camkes/ast/
H A Dobjects.py226 @ast_property("groups", lambda g: isinstance(g, (list, tuple)) and
233 # `groups`, so both of the latter need to be seen by scoping resolution
235 child_fields = ('instances', 'groups', 'connections', 'exports')
238 groups=None, exports=None, location=None):
243 self.groups = list(groups or [])
250 [self.adopt(g) for g in self.groups]
292 self.groups = tuple(self.groups)
/seL4-camkes-master/projects/picotcp/modules/
H A Dpico_igmp.c78 /* IGMP groups */
117 uint16_t groups; variable
743 report->groups = short_be(1);
/seL4-camkes-master/projects/lwip/src/netif/ppp/
H A Dauth.c491 if (groups[i] == g->gr_gid) {

Completed in 140 milliseconds