Lines Matching refs:statbuf
933 static int zend_get_stream_timestamp(const char *filename, zend_stat_t *statbuf) in zend_get_stream_timestamp() argument
948 statbuf->st_mtime = 1; in zend_get_stream_timestamp()
965 *statbuf = stream_statbuf.sb; in zend_get_stream_timestamp()
1016 zend_stat_t statbuf = {0}; in zend_get_file_handle_timestamp() local
1044 if (zend_fstat(fileno(file_handle->handle.fp), &statbuf) == -1) { in zend_get_file_handle_timestamp()
1045 if (zend_get_stream_timestamp(ZSTR_VAL(file_handle->filename), &statbuf) != SUCCESS) { in zend_get_file_handle_timestamp()
1055 if (zend_get_stream_timestamp(file_path, &statbuf) == SUCCESS) { in zend_get_file_handle_timestamp()
1059 if (VCWD_STAT(file_path, &statbuf) != -1) { in zend_get_file_handle_timestamp()
1064 if (zend_get_stream_timestamp(ZSTR_VAL(file_handle->filename), &statbuf) != SUCCESS) { in zend_get_file_handle_timestamp()
1092 statbuf = sb.sb; in zend_get_file_handle_timestamp()
1101 *size = statbuf.st_size; in zend_get_file_handle_timestamp()
1103 return statbuf.st_mtime; in zend_get_file_handle_timestamp()