Home
last modified time | relevance | path

Searched refs:gid_t (Results 1 – 25 of 40) sorted by relevance

12

/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/common/
A Dsetresgid.c18 _syscall3(int, setresgid, gid_t, rgid, gid_t, egid, gid_t, sgid)
27 int setresgid(gid_t rgid, gid_t egid, gid_t sgid)
29 if (((rgid + 1) > (gid_t) ((__kernel_gid_t) - 1U))
30 || ((egid + 1) > (gid_t) ((__kernel_gid_t) - 1U))
31 || ((sgid + 1) > (gid_t) ((__kernel_gid_t) - 1U))) {
A Dgetresgid.c17 _syscall3(int, getresgid, gid_t *, rgid, gid_t *, egid, gid_t *, sgid)
24 int getresgid(gid_t * rgid, gid_t * egid, gid_t * sgid)
31 *rgid = (gid_t) k_rgid;
32 *egid = (gid_t) k_egid;
33 *sgid = (gid_t) k_sgid;
A Dsetregid.c21 _syscall2(int, setregid, gid_t, rgid, gid_t, egid)
29 int setregid(gid_t rgid, gid_t egid)
31 if (((rgid + 1) > (gid_t) ((__kernel_gid_t) - 1U))
32 || ((egid + 1) > (gid_t) ((__kernel_gid_t) - 1U))) {
A Dsetgid.c20 _syscall1(int, setgid, gid_t, gid)
27 int setgid(gid_t gid)
29 if (gid == (gid_t) ~ 0 || gid != (gid_t) ((__kernel_gid_t) gid)) {
A Dchown.c16 int chown(const char *path, uid_t owner, gid_t group) in chown()
29 _syscall3(int, chown, const char *, path, uid_t, owner, gid_t, group)
37 int chown(const char *path, uid_t owner, gid_t group)
40 || ((group + 1) > (gid_t) ((__kernel_gid_t) - 1U))) {
A Dlchown.c16 int lchown(const char *path, uid_t owner, gid_t group) in lchown()
29 _syscall3(int, lchown, const char *, path, uid_t, owner, gid_t, group)
37 int lchown(const char *path, uid_t owner, gid_t group)
40 || ((group + 1) > (gid_t) ((__kernel_gid_t) - 1U))) {
A Dsetgroups.c18 _syscall2(int, setgroups, size_t, size, const gid_t *, list)
21 _syscall2(int, setgroups, size_t, size, const gid_t *, list)
33 int setgroups(size_t size, const gid_t *groups)
51 if (groups[i] != (gid_t) ((__kernel_gid_t) groups[i])) {
A Dsetfsgid.c20 _syscall1(int, setfsgid, gid_t, gid)
27 int setfsgid(gid_t gid)
29 if (gid != (gid_t) ((__kernel_gid_t) gid)) {
A Dfchown.c20 _syscall3(int, fchown, int, fd, uid_t, owner, gid_t, group)
28 int fchown(int fd, uid_t owner, gid_t group)
31 || ((group + 1) > (gid_t) ((__kernel_gid_t) - 1U))) {
A Dgetgroups.c16 _syscall2(int, getgroups, int, size, gid_t *, list)
19 _syscall2(int, getgroups, int, size, gid_t *, list)
31 int getgroups(int size, gid_t groups[])
A Dsetegid.c20 int setegid(gid_t gid) in setegid()
24 if (gid == (gid_t) ~0) in setegid()
A Dgetegid.c19 _syscall_noerr0(gid_t, getegid)
A Dfchownat.c13 _syscall5(int, fchownat, int, fd, const char *, file, uid_t, owner, gid_t, group, int, flag)
A Dgetgid.c22 _syscall_noerr0(gid_t, getgid)
/l4re-core-master/uclibc/lib/contrib/uclibc/libpthread/linuxthreads/
A Dpthread_setresgid.c22 int pthread_setresgid_np (gid_t rgid, gid_t egid, gid_t sgid);
24 pthread_setresgid_np (gid_t rgid, gid_t egid, gid_t sgid) in pthread_setresgid_np()
A Dpthread_setregid.c22 int pthread_setregid_np (gid_t rgid, gid_t egid);
24 pthread_setregid_np (gid_t rgid, gid_t egid) in pthread_setregid_np()
A Dpthread_setegid.c22 int pthread_setegid_np (gid_t gid);
24 pthread_setegid_np (gid_t gid) in pthread_setegid_np()
A Dpthread_setgid.c22 int pthread_setgid_np (gid_t gid);
24 pthread_setgid_np (gid_t gid) in pthread_setgid_np()
/l4re-core-master/uclibc/lib/contrib/uclibc/test/pwd_grp/
A Dgetgroups.c22 static void print_group(gid_t gid) in print_group()
38 static int xgetgroups(gid_t gid, int *n_groups, gid_t ** groups) in xgetgroups()
42 gid_t *g; in xgetgroups()
48 g = (gid_t *) malloc(max_n_groups * sizeof(gid_t) + 1); in xgetgroups()
82 gid_t *groups; in main()
85 if (xgetgroups((pwd ? pwd->pw_gid : (gid_t) - 1), in main()
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/inet/rpc/
A Dauthunix_prot.c55 && (sizeof (gid_t) == sizeof (short int) in xdr_authunix_parms()
59 & (p->aup_len), NGRPS, sizeof (gid_t), in xdr_authunix_parms()
60 (sizeof (gid_t) == sizeof (short int) in xdr_authunix_parms()
A Dauth_unix.c90 authunix_create (char *machname, uid_t uid, gid_t gid, int len, in authunix_create()
91 gid_t *aup_gids) in authunix_create()
161 gid_t gid; in libc_hidden_def()
163 gid_t *gids = NULL; in libc_hidden_def()
167 gids = (gid_t*)malloc(sizeof(*gids) * max_nr_groups); in libc_hidden_def()
259 aup.aup_gids = (gid_t *) NULL; in authunix_refresh()
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/pwd_grp/
A Dpwd_grp.c49 extern gid_t* __getgrouplist_internal(const char *user, gid_t gid, int *ngroups) attribute_hidden;
266 #define DO_GETXXKEY_R_KEYTYPE gid_t in libc_hidden_def()
290 struct group *getgrgid(gid_t gid) in getgrgid()
650 gid_t attribute_hidden *__getgrouplist_internal(const char *user, gid_t gid, int *ngroups) in __getgrouplist_internal()
653 gid_t *group_list; in __getgrouplist_internal()
704 int getgrouplist(const char *user, gid_t gid, gid_t *groups, int *ngroups) in getgrouplist()
707 gid_t *group_list = __getgrouplist_internal(user, gid, ngroups); in getgrouplist()
738 int initgroups(const char *user, gid_t gid) in initgroups()
742 gid_t *group_list = __getgrouplist_internal(user, gid, &num_groups); in initgroups()
931 *((gid_t *) p) = t; in __parsepwent()
[all …]
/l4re-core-master/uclibc/lib/contrib/uclibc/include/rpc/
A Dauth_des.h92 uid_t * __uid, gid_t * __gid,
93 short *__grouplen, gid_t * __groups) __THROW;
A Dauth.h198 extern int netname2user (const char *, uid_t *, gid_t *, int *, gid_t *)
/l4re-core-master/uclibc/lib/contrib/uclibc/ldso/include/
A Ddl-syscall.h128 static __always_inline _syscall0(gid_t, _dl_getgid) in _syscall2()
134 static __always_inline _syscall0(gid_t, _dl_getegid) in _syscall2()
140 static __always_inline _syscall0(gid_t, _dl_getpid) in _syscall2()

Completed in 35 milliseconds

12