Searched refs:euid (Results 101 - 120 of 120) sorted by relevance

12345

/macosx-10.10/ruby-106/ruby/test/ruby/
H A Dtest_process.rb1279 assert_kind_of(Integer, Process.euid)
1283 assert_nothing_raised(TypeError) {Process.euid += 0}
1289 assert_nothing_raised(TypeError) {Process.euid = user}
/macosx-10.10/objc4-646/runtime/
H A Dobjc-os.h897 extern int secure_open(const char *filename, int flags, uid_t euid);
/macosx-10.10/xnu-2782.1.97/bsd/sys/
H A Dkauth.h291 extern kauth_cred_t kauth_cred_setresuid(kauth_cred_t cred, uid_t ruid, uid_t euid, uid_t svuid, uid_t gmuid);
/macosx-10.10/tcsh-65/tcsh/
H A Dsh.c287 euid = geteuid();
993 if (!batch && (uid != euid || gid != egid)) {
H A Dsh.exp.c141 else if (euid == statb.st_uid)
H A Dsh.h625 EXTERN uid_t uid, euid; /* Invokers real and effective */ variable
/macosx-10.10/OpenSSH-189/openssh/
H A Dchannels.c1912 uid_t euid; local
1933 if (getpeereid(newsock, &euid, &egid) < 0) {
1939 if ((euid != 0) && (getuid() != euid)) {
1940 error("multiplex uid mismatch: peer euid %u != uid %u",
1941 (u_int)euid, (u_int)getuid());
/macosx-10.10/xnu-2782.1.97/bsd/kern/
H A Dkern_credential.c3825 * euid The new effective UID
3849 kauth_cred_setresuid(kauth_cred_t cred, uid_t ruid, uid_t euid, uid_t svuid, uid_t gmuid) argument
3861 if ((euid == KAUTH_UID_NONE || pcred->cr_uid == euid) &&
3874 if (euid != KAUTH_UID_NONE) {
3875 temp_pcred->cr_uid = euid;
4895 * If the cred is not opted out, make sure we are using the r/euid
/macosx-10.10/bash-94.1.2/bash-3.2/
H A Dvariables.c430 set_if_not ("PS1", current_user.euid == 0 ? "# " : primary_prompt);
839 if (current_user.euid != current_user.uid)
840 b = inttostr (current_user.euid, buff, sizeof (buff));
/macosx-10.10/ppp-786.1.1/Controller/
H A Dppp_manager.c1721 uid_t euid; local
1748 euid = geteuid();
1749 if (euid != serv->uid) {
1751 // its euid to be root so as to toggle between root and user to access
/macosx-10.10/zsh-61/zsh/Src/
H A Dhist.c2569 uid_t euid = geteuid(); local
2573 && euid
2575 && sb.st_uid != euid) {
/macosx-10.10/xnu-2782.1.97/tools/tests/xnu_quick_test/
H A Dtests.c903 uid_t euid,ruid; local
982 * Note: This test expects that the effective uid (euid) is set to root.
991 euid = geteuid();
1036 setreuid(ruid, euid);
1771 /* change real uid and effective uid to current euid */
1782 /* change effective uid to current euid - really a NOP */
1789 printf( "seteuid call failed to set the original euid \n" );
5911 uid_t euid,ruid; local
6039 * Note: This test expects that the effective uid (euid) is set to root.
6048 euid
[all...]
/macosx-10.10/ruby-106/ruby/
H A Druby.c1805 rb_uid_t euid = geteuid(); local
1809 if (uid != euid) opt->setids |= 1;
H A Dfile.c1083 rb_uid_t euid; local
1088 euid = geteuid();
1090 if (euid == 0) {
1103 if (st.st_uid == euid) /* owner */
/macosx-10.10/postfix-255/postfix/src/util/
H A Dsys_defs.h1485 extern int seteuid(uid_t euid);
/macosx-10.10/Security-57031.1.35/Security/authd/
H A Dserver.c273 audit_token_to_au32(*token, &info->auid, &info->euid,
/macosx-10.10/dcerpc-61/dcerpc/ncklib/
H A Dcomsoc_smb.c2296 uid_t *euid ATTRIBUTE_UNUSED,
/macosx-10.10/emacs-93/emacs/src/
H A Deditfns.c1330 EMACS_INT euid = geteuid ();
1331 return make_fixnum_or_float (euid);
1321 EMACS_INT euid = geteuid (); variable
/macosx-10.10/xnu-2782.1.97/bsd/nfs/
H A Dnfs_vfsops.c4738 uid_t euid = kauth_cred_getuid(vfs_context_ucred(ctx)); local
4747 uid = euid;
4768 if ((uid != euid) && ((error = vfs_context_suser(ctx))))
/macosx-10.10/IOKitUser-1050.1.21/graphics.subproj/
H A DIOGraphicsLib.c2423 uid_t euid = geteuid(); local
2426 seteuid(euid);

Completed in 289 milliseconds

12345