Lines Matching defs:perms
339 apr_fileperms_t perms;
347 perms = src_finfo->protection;
351 if ((status = apr_file_perms_set(dst, perms)) != APR_SUCCESS) {
358 perms = APR_OS_DEFAULT;
372 | APR_BINARY, perms, p);
2103 apr_fileperms_t perms = resource->info->finfo.protection;
2105 long old_value = (perms & APR_UEXECUTE) != 0;
2114 perms &= ~APR_UEXECUTE;
2116 perms |= APR_UEXECUTE;
2118 if ((status = apr_file_perms_set(resource->info->pathname, perms))
2127 resource->info->finfo.protection = perms;
2146 apr_fileperms_t perms = resource->info->finfo.protection & ~APR_UEXECUTE;
2154 perms |= APR_UEXECUTE;
2156 if ((status = apr_file_perms_set(resource->info->pathname, perms))
2165 resource->info->finfo.protection = perms;