Home
last modified time | relevance | path

Searched refs:MAX_GROUPS (Results 1 – 6 of 6) sorted by relevance

/external/vboot_reference/cgpt/
Dcgpt_prioritize.c15 #define MAX_GROUPS 17 // 0-15, plus one "higher" macro
26 group_t group[MAX_GROUPS]; // array of groups
37 for (i=0; i<MAX_GROUPS; i++) { in NewGroupList()
49 for (i=0; i<MAX_GROUPS; i++) in FreeGroups()
62 require(i < MAX_GROUPS); in AddToGroup()
/external/slf4j/slf4j-migrator/src/main/java/org/slf4j/migrator/line/
DMultiGroupConversionRule.java41 final private static int MAX_GROUPS = 10; field in MultiGroupConversionRule
44 private String[] replacementTable = new String[MAX_GROUPS];
/external/libcap/progs/
Dcapsh.c27 #define MAX_GROUPS 100 /* max number of supplementary groups for user */ macro
414 gid_t groups[MAX_GROUPS]; in main()
423 ngroups = MAX_GROUPS; in main()
491 gid_t groups[MAX_GROUPS], gid; in main()
551 status = getgroups(MAX_GROUPS, groups); in main()
/external/toybox/toys/other/
Dbzcat.c47 #define MAX_GROUPS 6 macro
96 struct group_data groups[MAX_GROUPS]; // huffman coding tables
200 if (bd->groupCount<2 || bd->groupCount>MAX_GROUPS) return RETVAL_DATA_ERROR; in read_block_header()
/external/python/cpython3/Modules/
Dposixmodule.c5985 #define MAX_GROUPS NGROUPS_MAX in posix_getgrouplist() macro
5988 #define MAX_GROUPS 64 in posix_getgrouplist()
5999 ngroups = MAX_GROUPS; in posix_getgrouplist()
6064 #define MAX_GROUPS NGROUPS_MAX in os_getgroups_impl() macro
6067 #define MAX_GROUPS 64 in os_getgroups_impl() macro
6069 gid_t grouplist[MAX_GROUPS]; in os_getgroups_impl()
6091 } else if (n <= MAX_GROUPS) { in os_getgroups_impl()
6110 n = getgroups(MAX_GROUPS, grouplist); in os_getgroups_impl()
6652 gid_t grouplist[MAX_GROUPS]; in os_setgroups()
6659 if (len > MAX_GROUPS) { in os_setgroups()
/external/python/cpython2/Modules/
Dposixmodule.c4079 #define MAX_GROUPS NGROUPS_MAX in posix_getgroups() macro
4082 #define MAX_GROUPS 64 in posix_getgroups() macro
4084 gid_t grouplist[MAX_GROUPS]; in posix_getgroups()
4106 } else if (n <= MAX_GROUPS) { in posix_getgroups()
4125 n = getgroups(MAX_GROUPS, grouplist); in posix_getgroups()
6081 gid_t grouplist[MAX_GROUPS]; in posix_setgroups()
6088 if (len > MAX_GROUPS) { in posix_setgroups()