HomeSort by: relevance | last modified time | path
    Searched refs:groups (Results 1 - 25 of 288) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/mit/libuv/dist/tools/
make_dist_html.py 36 <table>{groups}</table>
41 GROUPS = r'''
43 <td>{groups[0]}</td>
44 <td>{groups[1]}</td>
45 <td>{groups[2]}</td>
46 <td>{groups[3]}</td>
85 return list(map(int, re.match('^v(\d+)\.(\d+)\.(\d+)', tag).groups()))
104 # Partition in groups of |n|.
105 def groups_for(groups, n=4):
107 groups = groups[:] + [''] * (n - 1
118 groups = [group_for(list(g)) for _, g in itertools.groupby(tags, major_minor)] variable
119 groups = groups_for(groups) variable
    [all...]
  /src/lib/libc/gen/
initgroups.c 59 gid_t *groups = groups_list; local
65 if (getgrouplist(uname, agroup, groups, &ngroups) == -1) {
67 groups = calloc((size_t)maxgroups, sizeof *groups);
68 if (groups == NULL)
70 if (getgrouplist(uname, agroup, groups, &ngroups) == -1)
73 rval = setgroups(ngroups, groups);
77 rval = setgroups(ng, groups);
79 if (groups != groups_list)
80 free(groups);
    [all...]
getgrouplist.c 58 getgrouplist(const char *uname, gid_t agroup, gid_t *groups, int *grpcnt)
63 /* groups may be NULL if just sizing when invoked with *grpcnt = 0 */
67 rv = getgroupmembership(uname, agroup, groups, *grpcnt, &groupc);
68 *grpcnt = groupc; /* set groupc to the actual # of groups */
getgroupmembership.c 69 * Add gid to the groups array (of maxgrp size) at the position
71 * past &groups[maxgrp].
75 __gr_addgid(gid_t gid, gid_t *groups, int maxgrp, int *groupc)
80 _DIAGASSERT(groups != NULL);
84 if (groups[dupc] == gid)
90 groups[*groupc] = gid;
105 gid_t *groups = va_arg(ap, gid_t *); local
116 /* groups may be NULL if just sizing when invoked with maxgrp = 0 */
120 (void) __gr_addgid(agroup, groups, maxgrp, groupc);
129 if (! __gr_addgid(grp.gr_gid, groups, maxgrp, groupc)
148 gid_t *groups = va_arg(ap, gid_t *); local
241 gid_t *groups = va_arg(ap, gid_t *); local
282 gid_t *groups; member in struct:__compatggm
323 gid_t *groups = va_arg(ap, gid_t *); local
    [all...]
  /src/external/bsd/openpam/dist/lib/libpam/
openpam_cred.h 48 gid_t groups[NGROUPS_MAX]; member in struct:pam_saved_cred
  /src/usr.bin/id/
Makefile 5 MAN= id.1 groups.1 whoami.1
6 LINKS= ${BINDIR}/id ${BINDIR}/groups
  /src/external/bsd/atf/dist/atf-c/detail/
user.c 51 static gid_t groups[NGROUPS_MAX]; local
57 ngroups = getgroups(NGROUPS_MAX, groups);
63 if (groups[i] == gid)
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.python/
py-arch-reg-groups.exp 31 # groups.
32 set groups {}
42 lappend groups $expect_out(1,string)
48 gdb_assert {[llength $groups] > 0} \
57 "python groups = list (arch.register_groups ())" \
58 "get register groups" 0
60 "python groups = map (lambda obj: obj.name, groups)" \
61 "convert groups to names" 0
64 gdb_test_multiple "python print (\"\\n\".join (groups))" \
    [all...]
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.python/
py-arch-reg-groups.exp 31 # groups.
32 set groups {}
42 lappend groups $expect_out(1,string)
48 gdb_assert {[llength $groups] > 0} \
57 "python groups = list (arch.register_groups ())" \
58 "get register groups" 0
60 "python groups = map (lambda obj: obj.name, groups)" \
61 "convert groups to names" 0
64 gdb_test_multiple "python print (\"\\n\".join (groups))" \
    [all...]
  /src/usr.bin/newgrp/
grutil.c 59 free_groups(void *groups)
64 free(groups);
69 alloc_groups(int *ngroups, gid_t **groups, int *ngroupsmax)
75 *groups = malloc(*ngroupsmax * sizeof(**groups));
76 if (*groups == NULL)
79 *ngroups = getgroups(*ngroupsmax, *groups);
81 free_groups(*groups);
88 addgid(gid_t *groups, int ngroups, int ngroupsmax, gid_t gid, int makespace)
93 for (i = 0; i < ngroups && groups[i] != gid; i++
142 gid_t *groups; local
212 gid_t *groups; local
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/test/ssl-tests/
30-supported-groups.conf 6 test-1 = 1-Pass with empty groups with TLS1.2
32 [1-Pass with empty groups with TLS1.2]
33 ssl_conf = 1-Pass with empty groups with TLS1.2-ssl
35 [1-Pass with empty groups with TLS1.2-ssl]
36 server = 1-Pass with empty groups with TLS1.2-server
37 client = 1-Pass with empty groups with TLS1.2-client
39 [1-Pass with empty groups with TLS1.2-server]
44 [1-Pass with empty groups with TLS1.2-client]
46 Groups = sect163k1
  /src/external/gpl3/gdb.old/dist/gdb/
reggroups.c 49 /* A container holding all the register groups for a particular
56 /* Add the default groups. */
68 /* Add GROUP to the list of register groups. */
84 /* The number of register groups. */
92 /* Return a reference to the list of all groups. */
95 groups () const function in struct:reggroups
101 /* The register groups. */
114 struct reggroups *groups = reggroups_data.get (gdbarch); local
115 if (groups == nullptr)
116 groups = reggroups_data.emplace (gdbarch)
125 struct reggroups *groups = get_reggroups (gdbarch); local
137 struct reggroups *groups = get_reggroups (gdbarch); local
    [all...]
  /src/external/gpl3/gdb/dist/gdb/
reggroups.c 49 /* A container holding all the register groups for a particular
56 /* Add the default groups. */
68 /* Add GROUP to the list of register groups. */
84 /* The number of register groups. */
92 /* Return a reference to the list of all groups. */
95 groups () const function in struct:reggroups
101 /* The register groups. */
114 struct reggroups *groups = reggroups_data.get (gdbarch); local
115 if (groups == nullptr)
116 groups = reggroups_data.emplace (gdbarch)
125 struct reggroups *groups = get_reggroups (gdbarch); local
137 struct reggroups *groups = get_reggroups (gdbarch); local
    [all...]
  /src/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/mediatek/
mt7622-rfb1.dts 272 groups = "emmc", "emmc_rst";
296 groups = "emmc";
318 groups = "mdc_mdio", "rgmii_via_gmac2";
325 groups = "i2c1_0";
332 groups = "i2c2_0";
339 groups = "i2s_out_mclk_bclk_ws",
355 groups = "ir_1_rx";
362 groups = "ir_1_tx";
370 groups = "par_nand";
377 groups = "pcie0_pad_perst"
    [all...]
  /src/external/bsd/libevent/dist/test/
tinytest.h 91 /** Set all tests in 'groups' matching the name 'named' to be skipped. */
92 #define tinytest_skip(groups, named) \
93 tinytest_set_flag_(groups, named, 1, TT_SKIP)
100 /** Run a set of testcases from an END_OF_GROUPS-terminated array of groups,
102 int tinytest_main(int argc, const char **argv, struct testgroup_t *groups);
  /src/external/bsd/ntp/dist/sntp/libevent/test/
tinytest.h 92 /** Set all tests in 'groups' matching the name 'named' to be skipped. */
93 #define tinytest_skip(groups, named) \
94 tinytest_set_flag_(groups, named, 1, TT_SKIP)
101 /** Run a set of testcases from an END_OF_GROUPS-terminated array of groups,
103 int tinytest_main(int argc, const char **argv, struct testgroup_t *groups);
  /src/external/gpl2/diffutils/dist/src/
ifdef.c 97 struct group groups[2]; local
99 groups[0].file = &files[0];
100 groups[0].from = beg0;
101 groups[0].upto = end0;
102 groups[1].file = &files[1];
103 groups[1].from = beg1;
104 groups[1].upto = end1;
105 format_group (outfile, format, 0, groups);
111 GROUPS specifies which lines to print.
116 struct group const *groups)
    [all...]
  /src/usr.sbin/ypserv/revnetgroup/
hash.h 46 struct grouplist *groups; member in struct:member_entry
  /src/external/bsd/tre/dist/python/
example.py 19 print m.groups()
  /src/external/gpl2/xcvs/dist/diff/
ifdef.c 98 struct group groups[2]; local
100 groups[0].file = &files[0];
101 groups[0].from = beg0;
102 groups[0].upto = end0;
103 groups[1].file = &files[1];
104 groups[1].from = beg1;
105 groups[1].upto = end1;
106 format_group (1, format, '\0', groups);
112 GROUPS specifies which lines to print.
116 format_group (doit, format, endchar, groups)
    [all...]
  /src/lib/librpcsvc/
mount.x 121 typedef struct groupnode *groups;
124 groups gr_next;
133 groups ex_groups;
  /src/sys/miscfs/umapfs/
umap_subr.c 140 gid_t groups[NGROUPS]; local
173 /* Now we must map each of the set of groups in the cr_groups
179 groups[i] = kauth_cred_group(credp, i);
180 gid = (gid_t) umap_findid(groups[i],
183 groups[i] = gid;
185 groups[i] = NULLGROUP;
188 kauth_cred_setgroups(credp, groups, ngroups, -1, UIO_SYSSPACE);
  /src/crypto/external/apache2/openssl/dist/test/
mldsa_parse.py 32 def parse_ml_dsa_key_gen(groups):
33 for grp in groups:
43 def parse_ml_dsa_sig_gen(groups):
44 for grp in groups:
77 def parse_ml_dsa_sig_ver(groups):
78 for grp in groups:
slhdsa_parse.py 38 def parse_slh_dsa_key_gen(groups):
39 for grp in groups:
50 def parse_slh_dsa_sig_gen(groups):
52 for grp in groups:
90 def parse_slh_dsa_sig_ver(groups):
91 for grp in groups:
  /src/external/apache2/llvm/dist/llvm/utils/
convert-constraint-log-to-z3.py 46 groups = content.split('---')
50 for group in groups:

Completed in 319 milliseconds

1 2 3 4 5 6 7 8 91011>>