Lines Matching refs:PJDLOG_VERIFY
159 PJDLOG_VERIFY(chdir("/") == 0); in sandbox()
192 PJDLOG_VERIFY(getresuid(&ruid, &euid, &suid) == 0); in sandbox()
193 PJDLOG_VERIFY(suid == pw->pw_uid); in sandbox()
198 PJDLOG_VERIFY(ruid == pw->pw_uid); in sandbox()
199 PJDLOG_VERIFY(euid == pw->pw_uid); in sandbox()
201 PJDLOG_VERIFY(getresgid(&rgid, &egid, &sgid) == 0); in sandbox()
202 PJDLOG_VERIFY(sgid == pw->pw_gid); in sandbox()
207 PJDLOG_VERIFY(rgid == pw->pw_gid); in sandbox()
208 PJDLOG_VERIFY(egid == pw->pw_gid); in sandbox()
209 PJDLOG_VERIFY(getgroups(0, NULL) == ngroups); in sandbox()
216 PJDLOG_VERIFY(getgroups(ngroups, ggroups) == ngroups); in sandbox()
219 PJDLOG_VERIFY(bcmp(groups, ggroups, sizeof(groups[0]) * ngroups) == 0); in sandbox()