Lines Matching defs:name
22 * * Neither the name of the SimplePie Team nor the names of its contributors may be used
80 * Cache name
84 protected $name;
90 * @param string $name Unique ID for the cache
93 public function __construct($location, $name, $options = null)
116 $this->name = $this->options['prefix'] . $name;
138 $response = $this->cache->set($this->name, serialize($data));
140 $this->cache->expire($this->name, $this->options['expire']);
153 $data = $this->cache->get($this->name);
168 $data = $this->cache->get($this->name);
184 $data = $this->cache->get($this->name);
187 $return = $this->cache->set($this->name, $data);
189 return $this->cache->expire($this->name, $this->options['expire']);
204 return $this->cache->set($this->name, null);