Lines Matching refs:statbuf
935 static int zend_get_stream_timestamp(const char *filename, zend_stat_t *statbuf) in zend_get_stream_timestamp() argument
950 statbuf->st_mtime = 1; in zend_get_stream_timestamp()
967 *statbuf = stream_statbuf.sb; in zend_get_stream_timestamp()
1018 zend_stat_t statbuf = {0}; in zend_get_file_handle_timestamp() local
1046 if (zend_fstat(fileno(file_handle->handle.fp), &statbuf) == -1) { in zend_get_file_handle_timestamp()
1047 if (zend_get_stream_timestamp(ZSTR_VAL(file_handle->filename), &statbuf) != SUCCESS) { in zend_get_file_handle_timestamp()
1057 if (zend_get_stream_timestamp(file_path, &statbuf) == SUCCESS) { in zend_get_file_handle_timestamp()
1061 if (VCWD_STAT(file_path, &statbuf) != -1) { in zend_get_file_handle_timestamp()
1066 if (zend_get_stream_timestamp(ZSTR_VAL(file_handle->filename), &statbuf) != SUCCESS) { in zend_get_file_handle_timestamp()
1094 statbuf = sb.sb; in zend_get_file_handle_timestamp()
1103 *size = statbuf.st_size; in zend_get_file_handle_timestamp()
1105 return statbuf.st_mtime; in zend_get_file_handle_timestamp()