Lines Matching refs:handle
37 protected $handle = null; variable in Swift_File
65 $this->handle = null;
99 if ($this->handle === null)
101 if (!$this->handle = fopen($this->path, "rb"))
115 return feof($this->handle);
140 $ret = fgets($this->handle);
173 $ret = fread($this->handle, $bytes);
196 fclose($this->handle);
197 $this->handle = null;
205 fseek($this->handle, 0);
213 if ($this->handle !== null) $this->close();