Lines Matching defs:memory
24 protected $memory = '';
107 * for memory efficiency.
257 * If $file is empty, the tar file will be created in memory
266 $this->memory = '';
434 * Returns the created in-memory archive data
448 return gzencode($this->memory, $this->complevel);
451 return bzcompress($this->memory);
453 return $this->memory;
457 * Save the created in-memory archive data
459 * Note: It more memory effective to specify the filename in the create() function and
497 * Write to the open filepointer or memory
506 $this->memory .= $data;