Searched refs:group (Results 1 - 20 of 20) sorted by relevance

/bionic/libc/include/
H A Dgrp.h46 struct group { struct
47 char *gr_name; /* group name */
48 char *gr_passwd; /* group password */
49 gid_t gr_gid; /* group id */
50 char **gr_mem; /* group members */
54 struct group *getgrgid(gid_t);
55 struct group *getgrnam(const char *);
57 struct group *getgrent(void) __attribute__((deprecated("getgrent is meaningless on Android")));
60 int getgrgid_r(gid_t, struct group *, char *,
61 size_t, struct group **);
[all...]
/bionic/libc/bionic/
H A Dinitgroups.c35 initgroups (const char *user, gid_t group) argument
42 if (getgrouplist(user, group, groups, &numgroups) < 0) {
46 if (getgrouplist(user,group,groups,&numgroups) < 0) {
H A Dstubs.cpp54 group group_;
152 static group* android_iinfo_to_group(group_state_t* state,
156 group* gr = &state->group_;
181 static group* android_id_to_group(group_state_t* state, unsigned id) {
190 static group* android_name_to_group(group_state_t* state, const char* name) {
199 // Translate a user/group name to the corresponding user/group id.
200 // all_a1234 -> 0 * AID_USER + AID_SHARED_GID_START + 1234 (group name only)
343 // group structure (sets errno to ENOENT on failure).
344 static group* app_id_to_grou
386 getgrouplist(const char* , gid_t group, gid_t* groups, int* ngroups) argument
[all...]
/bionic/libc/tools/
H A Dgenserv.py55 service = Service( m.group(1), int(m.group(2)), m.group(3) )
56 rest = string.strip(m.group(4))
62 service.add_alias(m.group(1))
63 rest = string.strip(m.group(2))
H A Dcheck-symbols.py44 symbol = string.split(m.group(2), '@')[0]
45 if m.group(1) == 'FUNC' and functions_or_variables == 'functions':
47 elif m.group(1) == 'OBJECT' and functions_or_variables == 'variables':
H A Dgenlibgcc_compat.py108 symbol_set.add(m.group(0))
H A Dsymbols.py50 symbol = m.group(2)
H A Dgensyscalls.py550 syscalls.add(m.group(1))
/bionic/libc/kernel/uapi/linux/netfilter/
H A Dxt_NFLOG.h29 __u16 group; member in struct:xt_nflog_info
/bionic/libc/kernel/uapi/linux/netfilter_bridge/
H A Debt_nflog.h31 __u16 group; member in struct:ebt_nflog_info
/bionic/libc/kernel/uapi/linux/
H A Digmp.h29 __be32 group; member in struct:igmphdr
62 __be32 group; member in struct:igmpv3_query
H A Dnetlink.h119 __u32 group; member in struct:nl_pktinfo
H A Dkvm.h912 __u32 group; member in struct:kvm_device_attr
/bionic/libc/kernel/tools/
H A Dclean_header.py116 if m and m.group(1) != 'generic':
118 arch = m.group(1)
127 m_uapi_arch = re.match(r"asm-([\w\d_\+\.\-]+)", m_uapi.group(2))
128 if m_uapi_arch and m_uapi_arch.group(1) != 'generic':
129 arch = m_uapi_arch.group(1)
H A Dkernel.py85 header = m.group(1)
313 name = m.group(1)
314 value = m.group(2)
H A Dcpp.py106 def __init__(self, tu=None, group=None, int_data=None, ptr_data=None,
111 self._group = group
/bionic/tools/bionicbb/
H A Dtasks.py33 info[match.group(1)] = match.group(2).strip()
H A Dpresubmit.py188 commands = [match.group(1).strip() for match in
/bionic/tests/
H A Dstubs_test.cpp168 static void check_group(const group* grp, const char* group_name, gid_t gid) {
179 group* grp = getgrgid(gid);
187 group* grp = getgrnam(group_name);
/bionic/libc/tools/zoneinfo/
H A Dupdate-tzdata.py186 new_version = re.search('(tzdata.+)\\.tar\\.gz', data_filename).group(1)
236 tzdata_filenames.append(m.group(1))

Completed in 902 milliseconds