Home
last modified time | relevance | path

Searched refs:gid_t (Results 51 - 75 of 561) sorted by relevance

12345678910>>...23

/kernel/linux/patches/linux-5.10/prebuilts/usr/include/asm-mips/asm/
H A Dstat.h31 gid_t st_gid;
53 gid_t st_gid;
76 gid_t st_gid;
/third_party/musl/libc-test/src/api/
H A Dsys_sem.c36 T(gid_t) in f()
42 F(gid_t,gid) in f()
44 F(gid_t,cgid) in f()
H A Dsys_shm.c31 T(gid_t) in f()
37 F(gid_t,gid) in f()
39 F(gid_t,cgid) in f()
/kernel/linux/linux-6.6/fs/
H A Dmnt_idmapping.c138 gid_t gid; in make_vfsgid()
147 if (gid == (gid_t)-1) in make_vfsgid()
195 gid_t gid; in from_vfsgid()
201 if (gid == (gid_t)-1) in from_vfsgid()
/third_party/musl/libc-test/src/functionalext/supplement/stat/
H A Dfstatat.c43 gid_t gid = getgid(); in fstatat_0100()
70 gid_t gid = getgid(); in fstatat_0200()
99 gid_t gid = getgid(); in fstatat_0300()
122 gid_t gid = getgid(); in fstatat_time64_0100()
/third_party/musl/porting/uniproton/kernel/include/bits/
H A Dipc.h4 gid_t gid;
6 gid_t cgid;
/third_party/musl/src/unistd/
H A Dsetregid.c5 int setregid(gid_t rgid, gid_t egid) in setregid()
/third_party/musl/porting/liteos_m/kernel/include/bits/
H A Dipc.h4 gid_t gid;
6 gid_t cgid;
/third_party/musl/porting/liteos_a/kernel/include/bits/
H A Dipc.h4 gid_t gid;
6 gid_t cgid;
/third_party/musl/porting/liteos_a_newlib/kernel/include/bits/
H A Dipc.h4 gid_t gid;
6 gid_t cgid;
/third_party/musl/porting/liteos_m_iccarm/kernel/include/bits/
H A Dipc.h4 gid_t gid;
6 gid_t cgid;
/third_party/musl/arch/generic/bits/
H A Dipc.h4 gid_t gid;
6 gid_t cgid;
/third_party/musl/arch/x32/bits/
H A Dipc.h4 gid_t gid;
6 gid_t cgid;
/kernel/linux/linux-5.10/kernel/
H A Dsys.c352 long __sys_setregid(gid_t rgid, gid_t egid) in __sys_setregid()
363 if ((rgid != (gid_t) -1) && !gid_valid(krgid)) in __sys_setregid()
365 if ((egid != (gid_t) -1) && !gid_valid(kegid)) in __sys_setregid()
374 if (rgid != (gid_t) -1) { in __sys_setregid()
382 if (egid != (gid_t) -1) { in __sys_setregid()
392 if (rgid != (gid_t) -1 || in __sys_setregid()
393 (egid != (gid_t) -1 && !gid_eq(kegid, old->gid))) in __sys_setregid()
408 SYSCALL_DEFINE2(setregid, gid_t, rgid, gid_t, egi
[all...]
/kernel/linux/linux-6.6/kernel/
H A Dsys.c372 long __sys_setregid(gid_t rgid, gid_t egid) in __sys_setregid()
383 if ((rgid != (gid_t) -1) && !gid_valid(krgid)) in __sys_setregid()
385 if ((egid != (gid_t) -1) && !gid_valid(kegid)) in __sys_setregid()
394 if (rgid != (gid_t) -1) { in __sys_setregid()
402 if (egid != (gid_t) -1) { in __sys_setregid()
412 if (rgid != (gid_t) -1 || in __sys_setregid()
413 (egid != (gid_t) -1 && !gid_eq(kegid, old->gid))) in __sys_setregid()
428 SYSCALL_DEFINE2(setregid, gid_t, rgid, gid_t, egi
[all...]
/third_party/musl/arch/mips64/bits/
H A Dipc.h4 gid_t gid;
6 gid_t cgid;
/third_party/musl/arch/powerpc/bits/
H A Dipc.h4 gid_t gid;
6 gid_t cgid;
/third_party/musl/arch/powerpc64/bits/
H A Dipc.h4 gid_t gid;
6 gid_t cgid;
/third_party/rust/crates/libc/src/unix/linux_like/linux/uclibc/mips/mips64/
H A Dmod.rs23 pub st_gid: ::gid_t,
47 pub st_gid: ::gid_t,
95 pub gid: ::gid_t,
97 pub cgid: ::gid_t,
/third_party/rust/crates/libc/src/fuchsia/
H A Dx86_64.rs14 pub st_gid: ::gid_t,
35 pub st_gid: ::gid_t,
57 pub gid: ::gid_t,
59 pub cgid: ::gid_t,
/third_party/musl/src/misc/
H A Dinitgroups.c5 int initgroups(const char *user, gid_t gid) in initgroups()
7 gid_t groups[NGROUPS_MAX]; in initgroups()
/third_party/musl/libc-test/src/functionalext/supplement/unistd/
H A Dgetgroups.c27 gid_t list[NGROUPS_MAX]; in getgroups_0100()
41 gid_t list[NGROUPS_MAX]; in getgroups_0200()
/third_party/python/Modules/
H A Dposixmodule.h16 PyAPI_FUNC(PyObject *) _PyLong_FromGid(gid_t); variable
18 PyAPI_FUNC(int) _Py_Gid_Converter(PyObject *, gid_t *);
/third_party/ltp/lib/
H A Dtst_safe_macros.c77 int safe_setgroups(const char *file, const int lineno, size_t size, const gid_t *list) in safe_setgroups()
95 int safe_getgroups(const char *file, const int lineno, int size, gid_t list[]) in safe_getgroups()
150 gid_t rgid, gid_t egid) in safe_setregid()
188 gid_t rgid, gid_t egid, gid_t sgid) in safe_setresgid()
408 struct group *safe_getgrgid(const char *file, const int lineno, gid_t gid) in safe_getgrgid()
/kernel/linux/common_modules/tzdriver/tlogger/
H A Dlog_cfg_api.h27 void get_log_chown(uid_t *user, gid_t *group);
61 static inline void get_log_chown(const uid_t *user, const gid_t *group) in get_log_chown()

Completed in 10 milliseconds

12345678910>>...23