Home
last modified time | relevance | path

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

/plugin/elwikiupgrade/
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/myvendor/splitbrain/php-archive/src/
DTar.php67 if ($this->comptype === Archive::COMPRESS_GZIP) {
275 if ($this->comptype === Archive::COMPRESS_GZIP) {
417 if ($this->comptype === Archive::COMPRESS_GZIP) {
447 if ($this->comptype === Archive::COMPRESS_GZIP) {
485 if ($this->comptype === Archive::COMPRESS_GZIP) {
508 } elseif ($this->comptype === Archive::COMPRESS_GZIP) {
530 if ($this->comptype === Archive::COMPRESS_GZIP) {
720 if ($comptype === Archive::COMPRESS_GZIP && !function_exists('gzopen')) {
749 if(strpos($magic, "\x1f\x8b") === 0) return Archive::COMPRESS_GZIP;
755 return Archive::COMPRESS_GZIP;
DArchive.php10 const COMPRESS_GZIP = 1; define in splitbrain\\PHPArchive\\Archive
/plugin/archiveupload/
Daction.php162 if(strpos($ext, 'gz') !== false) $compress_type = COMPRESS_GZIP;