Lines Matching refs:finfo
221 ctx->finfo.st_uid = 0; in php_apache_sapi_get_stat()
222 ctx->finfo.st_gid = 0; in php_apache_sapi_get_stat()
224 ctx->finfo.st_uid = ctx->r->finfo.user; in php_apache_sapi_get_stat()
225 ctx->finfo.st_gid = ctx->r->finfo.group; in php_apache_sapi_get_stat()
227 ctx->finfo.st_dev = ctx->r->finfo.device; in php_apache_sapi_get_stat()
228 ctx->finfo.st_ino = ctx->r->finfo.inode; in php_apache_sapi_get_stat()
229 ctx->finfo.st_atime = apr_time_sec(ctx->r->finfo.atime); in php_apache_sapi_get_stat()
230 ctx->finfo.st_mtime = apr_time_sec(ctx->r->finfo.mtime); in php_apache_sapi_get_stat()
231 ctx->finfo.st_ctime = apr_time_sec(ctx->r->finfo.ctime); in php_apache_sapi_get_stat()
232 ctx->finfo.st_size = ctx->r->finfo.size; in php_apache_sapi_get_stat()
233 ctx->finfo.st_nlink = ctx->r->finfo.nlink; in php_apache_sapi_get_stat()
235 return &ctx->finfo; in php_apache_sapi_get_stat()
616 if (!AP2(xbithack) || strcmp(r->handler, "text/html") || !(r->finfo.protection & APR_UEXECUTE)) { in php_handler()
636 if (r->finfo.filetype == 0) { in php_handler()
641 if (r->finfo.filetype == APR_DIR) { in php_handler()
695 ap_update_mtime(r, r->finfo.mtime); in php_handler()