/third_party/musl/libc-test/src/functionalext/supplement/unistd/ |
H A D | setresgid.c | 30 int result = getresgid(&crgid, &cegid, &csgid); in setresgid_0100() 46 result = getresgid(&rgid, &egid, &sgid); in setresgid_0100() 73 int result = getresgid(&crgid, &cegid, &csgid); in setresgid_0200() 89 result = getresgid(&rgid, &egid, &sgid); in setresgid_0200()
|
/third_party/ltp/testcases/kernel/syscalls/vfork/ |
H A D | vfork01.c | 143 if (getresgid(&Crgid, &Cegid, &Csgid) < 0) { in main() 144 tst_resm(TFAIL, "getresgid() fails to " in main() 305 if (getresgid(&Prgid, &Pegid, &Psgid) < 0) { in setup() 306 tst_brkm(TFAIL, cleanup, "getresgid() fails to get " in setup()
|
/third_party/ltp/testcases/kernel/syscalls/utils/ |
H A D | compat_16.h | 38 int getresgid(gid_t *rgid, gid_t *egid, gid_t *sgid); 151 LTP_CREATE_SYSCALL(getresgid, cleanup, rgid, egid, sgid); in GETRESGID()
|
/third_party/musl/src/misc/ |
H A D | getresgid.c | 5 int getresgid(gid_t *rgid, gid_t *egid, gid_t *sgid) in getresgid() function
|
/third_party/musl/libc-test/src/functionalext/supplement/misc/ |
H A D | getresgid.c | 24 * @tc.desc : Verify getresgid process success 31 int ret = getresgid(&gid_R, &gid_E, &gid_S); in getresgid_0100()
|
/third_party/musl/porting/liteos_a/user/include/ |
H A D | unistd.h | 211 int getresgid(gid_t *, gid_t *, gid_t *);
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | unistd.h | 186 int getresgid(gid_t *, gid_t *, gid_t *);
|
/third_party/musl/porting/linux/user/include/ |
H A D | unistd.h | 213 int getresgid(gid_t *, gid_t *, gid_t *);
|
/third_party/musl/porting/liteos_m/user/include/ |
H A D | unistd.h | 211 int getresgid(gid_t *, gid_t *, gid_t *);
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
H A D | unistd.h | 186 int getresgid(gid_t *, gid_t *, gid_t *);
|
/third_party/musl/porting/liteos_a/kernel/include/ |
H A D | unistd.h | 191 int getresgid(gid_t *, gid_t *, gid_t *);
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | unistd.h | 186 int getresgid(gid_t *, gid_t *, gid_t *);
|
/third_party/musl/include/ |
H A D | unistd.h | 250 int getresgid(gid_t *, gid_t *, gid_t *);
|
/third_party/ntfs-3g/libfuse-lite/ |
H A D | fusermount.c | 145 if (getresgid(&rgid, &egid, &sgid) < 0) { in restore_privs() 146 perror("priv restore: getresgid failed"); in restore_privs()
|
/third_party/python/Lib/test/ |
H A D | test_posix.py | 87 @unittest.skipUnless(hasattr(posix, 'getresgid'), 88 'test needs posix.getresgid()') 90 group_ids = posix.getresgid() 115 current_group_ids = posix.getresgid() 124 current_group_ids = posix.getresgid()
|
/third_party/ltp/lib/ |
H A D | safe_macros.c | 409 rval = getresgid(rgid, egid, sgid); in safe_getresgid() 413 "getresgid(%p, %p, %p) failed", rgid, egid, sgid); in safe_getresgid() 416 "Invalid getresgid(%p, %p, %p) return value %d", rgid, in safe_getresgid()
|
/third_party/rust/crates/nix/test/ |
H A D | test_unistd.rs | 711 let resgids = getresgid().unwrap(); in test_getresgid()
|
/third_party/rust/crates/nix/src/ |
H A D | unistd.rs | 2866 /// ([see getresgid(2)](http://man7.org/linux/man-pages/man2/getresgid.2.html)) 2874 pub fn getresgid() -> Result<ResGid> { in getresgid() functions 2878 let res = unsafe { libc::getresgid(&mut rgid, &mut egid, &mut sgid) }; in getresgid()
|
/third_party/rust/crates/libc/src/unix/bsd/freebsdlike/ |
H A D | mod.rs | 1514 pub fn getresgid(rgid: *mut ::gid_t, egid: *mut ::gid_t, sgid: *mut ::gid_t) -> ::c_int; in getresgid() functions
|
/third_party/rust/crates/libc/src/unix/bsd/netbsdlike/openbsd/ |
H A D | mod.rs | 1777 pub fn getresgid(rgid: *mut ::gid_t, egid: *mut ::gid_t, sgid: *mut ::gid_t) -> ::c_int; in getresgid() functions
|
/third_party/rust/crates/libc/src/unix/linux_like/ |
H A D | mod.rs | 1765 pub fn getresgid(rgid: *mut ::gid_t, egid: *mut ::gid_t, sgid: *mut ::gid_t) -> ::c_int; in getresgid() functions
|
/third_party/rust/crates/libc/src/fuchsia/ |
H A D | mod.rs | 3921 pub fn getresgid(rgid: *mut ::gid_t, egid: *mut ::gid_t, sgid: *mut ::gid_t) -> ::c_int; in getresgid() functions
|
/third_party/python/Modules/ |
H A D | posixmodule.c | 12875 os.getresgid 12885 if (getresgid(&rgid, &egid, &sgid) < 0) in os_getresgid_impl()
|