Lines Matching refs:_fp

44     var $_fp = null;  variable in JpegMeta
63 $this->_fp = null;
972 $this->_fp = null;
986 $this->_fp = @fopen($this->_fileName, 'rb');
987 if ($this->_fp) {
995 $this->_fp = null;
1000 $c1 = ord(fgetc($this->_fp));
1001 $c2 = ord(fgetc($this->_fp));
1018 $c = ord(fgetc($this->_fp));
1019 while (!feof($this->_fp) && ($c != 0xFF)) {
1021 $c = ord(fgetc($this->_fp));
1025 $marker = ord(fgetc($this->_fp));
1026 } while (!feof($this->_fp) && ($marker == 0xFF));
1028 if (feof($this->_fp)) {
1035 $length = ord(fgetc($this->_fp)) * 256 + ord(fgetc($this->_fp));
1036 if (feof($this->_fp)) {
1070 $this->_markers[$count]['data'] = fread($this->_fp, $length);
1075 $result = @fseek($this->_fp, $length, SEEK_CUR);
1079 fgetc($this->_fp);
1086 if ($this->_fp) {
1087 fclose($this->_fp);
1088 $this->_fp = null;
1137 $this->_fp = @fopen($this->_fileName, 'r');
1138 if ($this->_fp) {
1146 $this->_fp = null;
1153 fclose($this->_fp);
1154 $this->_fp = null;
1159 $c1 = ord(fgetc($this->_fp));
1160 $c2 = ord(fgetc($this->_fp));
1177 $c = ord(fgetc($this->_fp));
1178 while (!feof($this->_fp) && ($c != 0xFF)) {
1180 $c = ord(fgetc($this->_fp));
1184 $marker = ord(fgetc($this->_fp));
1185 } while (!feof($this->_fp) && ($marker == 0xFF));
1187 if (feof($this->_fp)) {
1196 $length = ord(fgetc($this->_fp)) * 256 + ord(fgetc($this->_fp));
1197 if (feof($this->_fp)) {
1249 if ($this->_fp) {
1250 fclose($this->_fp);
1251 $this->_fp = null;
1287 $result = @fseek($this->_fp, $origLength, SEEK_CUR);
1291 fgetc($this->_fp);
1297 while (!feof($this->_fp)) {
1298 $data = fread($this->_fp, 1024 * 16);
1302 $data = @fread($this->_fp, $length);