Lines Matching refs:currentStat
49 var $currentStat = null; variable in File_Archive_Reader_Tar
92 $length = $this->currentStat[7] - $this->leftLength;
94 $length = min($length, $this->currentStat[7] - $this->leftLength);
108 return $this->currentStat[7] - $this->leftLength;
118 $this->currentStat = null;
130 function getStat() { return $this->currentStat; }
166 $this->currentStat = array(
173 $this->currentStat['mode'] = $this->currentStat[2];
174 $this->currentStat['uid'] = $this->currentStat[4];
175 $this->currentStat['gid'] = $this->currentStat[5];
176 $this->currentStat['size'] = $this->currentStat[7];
177 $this->currentStat['mtime'] = $this->currentStat[9];
189 $this->leftLength = $this->currentStat[7];
246 $seek = 512 + $this->currentStat[7] + $this->footerLength;
251 $size = 512 + $this->currentStat[7] + $this->footerLength;
295 if ($this->seekToEnd !== null || $this->currentStat === null) {
299 $blockPos = $this->currentStat[7] - $this->leftLength + $seek;
318 $stat = $this->currentStat;