Home
last modified time | relevance | path

Searched refs:COMPRESS_GZIP (Results 1 – 4 of 4) sorted by relevance

/plugin/elwikiupgrade/
H A DVerboseTarLib.class.php16 const COMPRESS_GZIP = 2; define in VerboseTar
41 if($this->comptype === self::COMPRESS_GZIP) {
223 if($this->comptype === self::COMPRESS_GZIP) {
329 if($this->comptype === self::COMPRESS_GZIP) {
355 if($comptype === self::COMPRESS_GZIP) return gzcompress($this->memory, $complevel);
386 if($this->comptype === self::COMPRESS_GZIP) {
406 } elseif($this->comptype === self::COMPRESS_GZIP) {
425 if($this->comptype === self::COMPRESS_GZIP) {
565 if($comptype === self::COMPRESS_GZIP && !function_exists('gzopen')) {
585 $comptype = self::COMPRESS_GZIP;
/plugin/upgrade/vendor/splitbrain/php-archive/src/
H A DTar.php63 if ($this->comptype === Archive::COMPRESS_GZIP) {
245 if ($this->comptype === Archive::COMPRESS_GZIP) {
373 if ($this->comptype === Archive::COMPRESS_GZIP) {
403 if ($this->comptype === Archive::COMPRESS_GZIP) {
441 if ($this->comptype === Archive::COMPRESS_GZIP) {
462 } elseif ($this->comptype === Archive::COMPRESS_GZIP) {
484 if ($this->comptype === Archive::COMPRESS_GZIP) {
673 if ($comptype === Archive::COMPRESS_GZIP && !function_exists('gzopen')) {
702 if(strpos($magic, "\x1f\x8b") === 0) return Archive::COMPRESS_GZIP;
708 return Archive::COMPRESS_GZIP;
[all...]
H A DArchive.php10 const COMPRESS_GZIP = 1; define in splitbrain\\PHPArchive\\Archive
/plugin/archiveupload/
H A Daction.php162 if(strpos($ext, 'gz') !== false) $compress_type = COMPRESS_GZIP;