Lines Matching refs:currentStat
41 var $currentStat = null; variable in File_Archive_Reader_Zip
56 $this->currentStat = null;
73 function getStat() { return $this->currentStat; }
145 $this->currentStat = array(
156 $this->currentStat['size'] = $this->currentStat[7];
157 $this->currentStat['mtime'] = $this->currentStat[9];
167 'stat' => $this->currentStat,
206 if ($this->offset >= $this->currentStat[7]) {
211 $actualLength = min($length, $this->currentStat[7]-$this->offset);
213 $actualLength = $this->currentStat[7]-$this->offset;
231 $this->offset = $this->currentStat[7];
233 $this->offset = min($this->offset + $length, $this->currentStat[7]);
375 $stat = $this->currentStat;