Lines Matching defs:memory
23 protected $memory = '';
102 * for memory efficiency.
227 * If $file is empty, the tar file will be created in memory
236 $this->memory = '';
390 * Returns the created in-memory archive data
404 return gzencode($this->memory, $this->complevel);
407 return bzcompress($this->memory);
409 return $this->memory;
413 * Save the created in-memory archive data
415 * Note: It more memory effective to specify the filename in the create() function and
451 * Write to the open filepointer or memory
460 $this->memory .= $data;