Lines Matching refs:statbuf
710 static int zend_get_stream_timestamp(const char *filename, zend_stat_t *statbuf) in zend_get_stream_timestamp() argument
725 statbuf->st_mtime = 1; in zend_get_stream_timestamp()
742 *statbuf = stream_statbuf.sb; in zend_get_stream_timestamp()
793 zend_stat_t statbuf; in zend_get_file_handle_timestamp() local
821 if (zend_fstat(file_handle->handle.fd, &statbuf) == -1) { in zend_get_file_handle_timestamp()
826 if (zend_fstat(fileno(file_handle->handle.fp), &statbuf) == -1) { in zend_get_file_handle_timestamp()
827 if (zend_get_stream_timestamp(file_handle->filename, &statbuf) != SUCCESS) { in zend_get_file_handle_timestamp()
838 if (zend_get_stream_timestamp(file_path, &statbuf) == SUCCESS) { in zend_get_file_handle_timestamp()
842 if (VCWD_STAT(file_path, &statbuf) != -1) { in zend_get_file_handle_timestamp()
847 if (zend_get_stream_timestamp(file_handle->filename, &statbuf) != SUCCESS) { in zend_get_file_handle_timestamp()
875 statbuf = sb.sb; in zend_get_file_handle_timestamp()
884 *size = statbuf.st_size; in zend_get_file_handle_timestamp()
886 return statbuf.st_mtime; in zend_get_file_handle_timestamp()