Lines Matching defs:statbufp
519 int rawmode, int rawperm, Stat_t *statbufp)
583 savetype, writing, 0, NULL, statbufp);
990 int writing, bool was_fdopen, const char *type, Stat_t *statbufp)
1153 if (statbufp)
1154 *statbufp = statbuf;
2941 /* Do the permissions in *statbufp allow some operation? */
2944 Perl_cando(pTHX_ Mode_t mode, bool effective, const Stat_t *statbufp)
2975 return cBOOL(mode & statbufp->st_mode);
2984 if (statbufp->st_mode & 0111 || S_ISDIR(statbufp->st_mode))
2991 if (statbufp->st_uid == (effective ? PerlProc_geteuid() : PerlProc_getuid()) ) {
2992 if (statbufp->st_mode & mode)
2995 else if (ingroup(statbufp->st_gid,effective)) {
2996 if (statbufp->st_mode & mode >> 3)
2999 else if (statbufp->st_mode & mode >> 6)