Lines Matching refs:_fp

44     var $_fp = null;
63 $this->_fp = null;
973 $this->_fp = null;
987 $this->_fp = @fopen($this->_fileName, 'rb');
988 if ($this->_fp) {
996 $this->_fp = null;
1001 $c1 = ord(fgetc($this->_fp));
1002 $c2 = ord(fgetc($this->_fp));
1019 $c = ord(fgetc($this->_fp));
1020 while (!feof($this->_fp) && ($c != 0xFF)) {
1022 $c = ord(fgetc($this->_fp));
1026 $marker = ord(fgetc($this->_fp));
1027 } while (!feof($this->_fp) && ($marker == 0xFF));
1029 if (feof($this->_fp)) {
1036 $length = ord(fgetc($this->_fp)) * 256 + ord(fgetc($this->_fp));
1037 if (feof($this->_fp)) {
1071 $this->_markers[$count]['data'] = fread($this->_fp, $length);
1076 $result = @fseek($this->_fp, $length, SEEK_CUR);
1080 fgetc($this->_fp);
1087 if ($this->_fp) {
1088 fclose($this->_fp);
1089 $this->_fp = null;
1138 $this->_fp = @fopen($this->_fileName, 'r');
1139 if ($this->_fp) {
1147 $this->_fp = null;
1154 fclose($this->_fp);
1155 $this->_fp = null;
1160 $c1 = ord(fgetc($this->_fp));
1161 $c2 = ord(fgetc($this->_fp));
1178 $c = ord(fgetc($this->_fp));
1179 while (!feof($this->_fp) && ($c != 0xFF)) {
1181 $c = ord(fgetc($this->_fp));
1185 $marker = ord(fgetc($this->_fp));
1186 } while (!feof($this->_fp) && ($marker == 0xFF));
1188 if (feof($this->_fp)) {
1197 $length = ord(fgetc($this->_fp)) * 256 + ord(fgetc($this->_fp));
1198 if (feof($this->_fp)) {
1250 if ($this->_fp) {
1251 fclose($this->_fp);
1252 $this->_fp = null;
1288 $result = @fseek($this->_fp, $origLength, SEEK_CUR);
1292 fgetc($this->_fp);
1298 while (!feof($this->_fp)) {
1299 $data = fread($this->_fp, 1024 * 16);
1303 $data = @fread($this->_fp, $length);