Home
last modified time | relevance | path

Searched refs:getgid (Results 1 – 25 of 140) sorted by relevance

123456

/third_party/rust/crates/rustix/tests/process/
Did.rs14 assert_eq!(process::getgid(), process::getgid()); in test_getgid()
16 assert_eq!(process::getgid().as_raw(), libc::getgid()); in test_getgid()
17 assert_eq!(process::getgid().is_root(), libc::getgid() == 0); in test_getgid()
/third_party/musl/libc-test/src/functionalext/supplement/unistd/
Dsetregid.c27 gid_t cgid = getgid(); in setregid_0100()
37 gid_t gid = getgid(); in setregid_0100()
57 gid_t cgid = getgid(); in setregid_0200()
67 gid_t gid = getgid(); in setregid_0200()
Dgetgid.c28 gid_t gid = getgid(); in getgid_0100()
Dsetgid.c32 if (getgid() != gid) { in setgid_0100()
Dsetpgid.c33 if (getgid() != result) { in setpgid_0100()
/third_party/node/test/parallel/
Dtest-process-uid-gid.js30 assert.strictEqual(process.getgid, undefined);
68 process.getgid();
84 const oldgid = process.getgid();
94 const newgid = process.getgid();
Dtest-child-process-spawnsync-validation-errors.js76 if (process.getgid() !== 0) {
79 pass('gid', process.getgid());
Dtest-fs-promises.js224 await chown(dest, process.getuid(), process.getgid());
225 await handle.chown(process.getuid(), process.getgid());
295 await lchown(newLink, process.getuid(), process.getgid());
/third_party/musl/libc-test/src/functionalext/supplement/stat/
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/ltp/testcases/kernel/syscalls/ipc/semctl/
Dsemctl07.c54 if (arg.buf->sem_perm.gid != getgid()) { in verify_semctl()
56 arg.buf->sem_perm.gid, getgid()); in verify_semctl()
68 if (arg.buf->sem_perm.cgid != getgid()) { in verify_semctl()
70 arg.buf->sem_perm.cgid, getgid()); in verify_semctl()
/third_party/ltp/testcases/kernel/syscalls/setregid/
Dsetregid04.c53 if ((getgid() != rg) || (getegid() != eg)) { in gid_verify()
55 when, getgid(), getegid()); in gid_verify()
83 root_gid = test_groups[0] = getgid(); in setup()
Dsetregid02.c57 if ((getgid() != rg) || (getegid() != eg)) { in gid_verify()
59 when, getgid(), getegid()); in gid_verify()
100 root_gid = test_groups[1] = getgid(); in setup()
Dsetregid03.c98 if ((getgid() != rg) || (getegid() != eg)) { in gid_verify()
100 when, getgid(), getegid()); in gid_verify()
/third_party/node/deps/npm/node_modules/isexe/
Dmode.js28 options.gid : process.getgid && process.getgid()
/third_party/pulseaudio/src/daemon/
Dcaps.c54 gid = getgid(); in pa_drop_root()
71 pa_assert_se(getgid() == gid); in pa_drop_root()
/third_party/rust/crates/rustix/src/process/
Did.rs224 pub fn getgid() -> Gid { in getgid() function
225 backend::process::syscalls::getgid() in getgid()
/third_party/ltp/testcases/kernel/syscalls/acct/
Dacct02.c107 if (ACCT_MEMBER(ac_gid) != getgid()) { in verify_acct()
108 tst_res(TINFO, "ac_gid != %d (%d)", getgid(), in verify_acct()
/third_party/musl/src/unistd/
Dgetgid.c4 gid_t getgid(void) in getgid() function
/third_party/ltp/testcases/kernel/syscalls/setgid/
Dsetgid01.c26 gid = getgid(); in setup()
Dsetgid03.c23 if (getgid() != nobody->pw_gid) in run()
/third_party/node/deps/openssl/openssl/crypto/
Duid.c52 return getuid() != geteuid() || getgid() != getegid(); in OPENSSL_issetugid()
/third_party/openssl/crypto/
Duid.c52 return getuid() != geteuid() || getgid() != getegid(); in OPENSSL_issetugid()
/third_party/ltp/testcases/kernel/syscalls/mkdir/
Dmkdir04.c42 SAFE_CHOWN(TESTDIR, test_users[0], getgid()); in setup()
/third_party/ltp/testcases/kernel/syscalls/getgid/
Dgetgid03.c34 GID16_CHECK(pwent->pw_gid, getgid); in run()
/third_party/musl/libc-test/src/functionalext/supplement/unistd/unistd_gtest/
Dunistd_getid_test.cpp45 EXPECT_EQ(getgid(), getauxval(AT_GID));

123456