Searched refs:euid (Results 1 - 9 of 9) sorted by relevance

/openjdk10/jdk/src/java.base/share/classes/jdk/internal/misc/
H A DVM.java320 long euid = geteuid();
323 return uid != euid || gid != egid;
/openjdk10/hotspot/src/os/aix/vm/
H A DattachListener_aix.cpp389 uid_t euid = geteuid(); local
392 if (cred_info.euid != euid || cred_info.egid != egid) {
H A DperfMemory_aix.cpp223 uid_t euid = geteuid(); local
224 if ((euid != 0) && (statp->st_uid != euid)) {
834 // will be owned by euid::egid, which may not be the same as uid::gid.
/openjdk10/hotspot/src/os/bsd/vm/
H A DattachListener_bsd.cpp351 uid_t euid = geteuid(); local
354 if (puid != euid || pgid != egid) {
H A DperfMemory_bsd.cpp223 uid_t euid = geteuid(); local
224 if ((euid != 0) && (statp->st_uid != euid)) {
745 // will be owned by euid::egid, which may not be the same as uid::gid.
/openjdk10/hotspot/src/os/linux/vm/
H A DattachListener_linux.cpp348 uid_t euid = geteuid(); local
351 if (cred_info.uid != euid || cred_info.gid != egid) {
H A DperfMemory_linux.cpp223 uid_t euid = geteuid(); local
224 if ((euid != 0) && (statp->st_uid != euid)) {
755 // will be owned by euid::egid, which may not be the same as uid::gid.
/openjdk10/hotspot/src/os/solaris/vm/
H A DattachListener_solaris.cpp211 // get our euid/eguid (probably could cache these)
212 uid_t euid = geteuid(); local
215 // get euid/egid from ucred_free
220 if (ucred_euid == euid && ucred_egid == egid) {
H A DperfMemory_solaris.cpp226 uid_t euid = geteuid(); local
227 if ((euid != 0) && (statp->st_uid != euid)) {
793 // will be owned by euid::egid, which may not be the same as uid::gid.

Completed in 196 milliseconds