Home
last modified time | relevance | path

Searched refs:currentStat (Results 1 – 3 of 3) sorted by relevance

/plugin/zip/pear/File/Archive/Reader/
H A DTar.php49 var $currentStat = null; variable in File_Archive_Reader_Tar
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];
[all …]
H A DZip.php41 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]) {
213 $actualLength = $this->currentStat[7]-$this->offset;
231 $this->offset = $this->currentStat[7];
[all …]
/plugin/zip/pear/File/Archive/Writer/
H A DMemoryArchive.php57 var $currentStat = null; variable in File_Archive_Writer_MemoryArchive
99 $this->currentStat = $stat;
134 $this->currentStat,