| /plugin/xfortune/ |
| D | helper.php | 105 $fd = fopen($file, 'r'); 106 if (!$fd) return "ERROR: reading cookie file $file failed"; 109 fseek($fd, $rnd); 114 $seek = ftell($fd); 115 $line = fgets($fd, 1024); 130 if (feof($fd)) { 136 fseek($fd, 0); 147 fseek($fd, 0); 161 fclose($fd);
|
| /plugin/stopforumspam/ |
| D | SpamLogger.php | 22 $fd = $this->OpenLogFile(); 25 fputcsv($fd, array( 41 $fd = fopen($filename, "a"); 46 $fd = fopen($filename, "w"); 47 fputcsv($fd, array( 57 return $fd;
|
| /plugin/html2pdf/html2pdf/html2ps/fpdf/font/makefont/ |
| D | makefont.php | 139 $fd="array('Ascent'=>".$asc; 142 $fd.=",'Descent'=>".$desc; 150 $fd.=",'CapHeight'=>".$ch; 161 $fd.=",'Flags'=>".$flags; 167 $fd.=",'FontBBox'=>'[".$fbb[0].' '.$fbb[1].' '.$fbb[2].' '.$fbb[3]."]'"; 170 $fd.=",'ItalicAngle'=>".$ia; 178 $fd.=",'StemV'=>".$stemv; 181 $fd.=",'MissingWidth'=>".$fm['MissingWidth']; 182 $fd.=')'; 183 return $fd; [all …]
|
| /plugin/jukebox/id3/ |
| D | module.audio-video.flv.php | 41 function getid3_flv(&$fd, &$ThisFileInfo, $ReturnAllTagData=false) { argument 42 fseek($fd, $ThisFileInfo['avdataoffset'], SEEK_SET); 45 $FLVheader = fread($fd, 5); 62 $FrameSizeDataLength = getid3_lib::BigEndian2Int(fread($fd, 4)); 65 fseek($fd, $FrameSizeDataLength - $FLVheaderFrameLength, SEEK_CUR); 69 while ((ftell($fd) + 1) < $ThisFileInfo['avdataend']) { 76 $ThisTagHeader = fread($fd, 16); 83 $NextOffset = ftell($fd) - 1 + $DataLength; 99 $FLVvideoHeader = fread($fd, 11); 164 fseek($fd, -1, SEEK_CUR); [all …]
|
| D | module.audio.mp3.php | 29 function getid3_mp3(&$fd, &$ThisFileInfo) { argument 31 if (!$this->getOnlyMPEGaudioInfo($fd, $ThisFileInfo, $ThisFileInfo['avdataoffset'])) { 34 $this->getOnlyMPEGaudioInfoBruteForce($fd, $ThisFileInfo); 93 fseek($fd, $PossibleLAMEversionStringOffset); 94 $PossiblyLongerLAMEversion_Data = fread($fd, $PossiblyLongerLAMEversion_FrameLength); 401 …function decodeMPEGaudioHeader($fd, $offset, &$ThisFileInfo, $recursivesearch=true, $ScanAsCBR=fal… argument 424 fseek($fd, $offset, SEEK_SET); 426 $headerstring = fread($fd, 226); // LAME header at offset 36 + 190 bytes of Xing/LAME data 878 … if (getid3_mp3::RecursiveFrameScanning($fd, $ThisFileInfo, $offset, $nextframetestoffset, true)) { 918 $framebytelength = getid3_mp3::FreeFormatFrameLength($fd, $offset, $ThisFileInfo, true); [all …]
|
| D | module.tag.id3v1.php | 20 function getid3_id3v1(&$fd, &$ThisFileInfo) { argument 22 fseek($fd, -256, SEEK_END); 23 $preid3v1 = fread($fd, 128); 24 $id3v1tag = fread($fd, 128);
|
| D | module.tag.id3v2.php | 21 function getid3_id3v2(&$fd, &$ThisFileInfo, $StartingOffset=0) { argument 51 fseek($fd, $StartingOffset, SEEK_SET); 52 $header = fread($fd, 10); 131 $framedata = fread($fd, $sizeofframes); // read all frames from file into $framedata variable 400 $footer = fread($fd, 10);
|
| /plugin/html2pdf/html2pdf/html2ps/ |
| D | pdf.fpdf.makefont.php | 187 $fd="array('Ascent'=>".$asc; 191 $fd.=",'Descent'=>".$desc; 201 $fd.=",'CapHeight'=>".$ch; 221 $fd.=",'Flags'=>".$flags; 230 $fd.=",'FontBBox'=>'[".$fbb[0].' '.$fbb[1].' '.$fbb[2].' '.$fbb[3]."]'"; 234 $fd.=",'ItalicAngle'=>".$ia; 244 $fd.=",'StemV'=>".$stemv; 248 $fd.=",'MissingWidth'=>".$fm['MissingWidth']; 250 $fd.=')'; 252 return $fd; [all …]
|
| /plugin/stopforumspam/_test/ |
| D | LoggerTest.php | 44 $fd = fopen($logfile, "r"); 45 $line = fgetcsv($fd); 46 $line = fgetcsv($fd);
|
| /plugin/dw2pdf/vendor/mpdf/mpdf/data/ |
| D | out.php | 50 $fd = fopen($path . $tempfilename, 'rb'); variable 51 fpassthru($fd); 52 fclose($fd);
|
| /plugin/mantis/lib/ |
| D | nusoapmime.php | 154 if ($fd = fopen($att['filename'], 'rb')) { 155 $data = fread($fd, filesize($att['filename'])); 156 fclose($fd); 395 if ($fd = fopen($att['filename'], 'rb')) { 396 $data = fread($fd, filesize($att['filename'])); 397 fclose($fd);
|
| /plugin/userimportextended/ |
| D | admin.php | 192 $fd = fopen($_FILES['import']['tmp_name'],'r'); 193 if ($fd) { 194 while($csv = fgets($fd)){ 394 $fd = fopen('php://output','w'); 396 fputs($fd, $fail['orig']); 398 fclose($fd);
|
| /plugin/jplayer/vendor/james-heinrich/getid3/demos/ |
| D | demo.mp3header.php | 1583 function getMP3headerFilepointer(&$fd, &$ThisFileInfo) { argument 1585 getOnlyMPEGaudioInfo($fd, $ThisFileInfo, $ThisFileInfo['avdataoffset']); 1659 function decodeMPEGaudioHeader($fd, $offset, &$ThisFileInfo, $recursivesearch=true, $ScanAsCBR=fals… argument 1682 fseek($fd, $offset, SEEK_SET); 1683 …$headerstring = fread($fd, 1441); // worse-case max length = 32kHz @ 320kbps layer 3 = 1441 bytes/… 2066 if (RecursiveFrameScanning($fd, $ThisFileInfo, $offset, $nextframetestoffset, true)) { 2091 $framebytelength = FreeFormatFrameLength($fd, $offset, $ThisFileInfo, true); 2127 if (!RecursiveFrameScanning($fd, $ThisFileInfo, $offset, $nextframetestoffset, $ScanAsCBR)) { 2239 function RecursiveFrameScanning(&$fd, &$ThisFileInfo, &$offset, &$nextframetestoffset, $ScanAsCBR) { argument 2248 if (decodeMPEGaudioHeader($fd, $nextframetestoffset, $nextframetestarray, false)) { [all …]
|
| /plugin/refnotes/ |
| D | admin.php | 172 foreach ($fieldData as $id => $fd) { 173 $class = 'refnotes_config_' . $fd['class']; 174 $field[] = new $class($id, $fd);
|
| /plugin/photogallery/phpThumb/ |
| D | phpthumb.gif.php | 73 $fd = $gif->getBmp($bgColor); 74 if (strlen($fd) <= 0) { 81 @fwrite($fh, $fd, strlen($fd)); 95 $fd = $gif->getPng($bgColor); 96 if (strlen($fd) <= 0) { 103 @fwrite($fh, $fd, strlen($fd));
|
| /plugin/llm/llm.js/wasm/ |
| D | llamacpp-cpu.js | 1 …fd"),kA.mount({mount(){var g=kA.createNode(A,"fd",16895,73);return g.node_ops={lookup(A,g){var I=+…
|
| /plugin/syntaxhighlighter4/ |
| D | CHANGELOG.md | 18 * Upgrade SyntaxHighlighter to commit syntaxhighlighter/syntaxhighlighter@37724fd
|
| /plugin/elasticsearch/vendor/ezimuel/ringphp/src/Client/ |
| D | CurlFactory.php | 267 $options[CURLOPT_READFUNCTION] = function ($ch, $fd, $length) use ($body) { 279 $options[CURLOPT_READFUNCTION] = function ($ch, $fd, $length) use ($body, &$buf) {
|
| /plugin/asciidocjs/node_modules/@asciidoctor/opal-runtime/src/ |
| D | nodejs.js | 37 count = __fs__.readSync(this.fd, buf, 0, 65536, null); 450 $proto.eof = $proto.binary_flag = $proto.path = $proto.fd = nil; 618 var $yield = $$initialize.$$p || nil, self = this, encoding_option_rx = nil, fd = nil; 632 fd = executeIOAction(function(){return __fs__.openSync(path, flags)}); 633 …self, $find_super(self, 'initialize', $$initialize, false, true), 'initialize', [fd, flags], null); 669 return executeIOAction(function(){return __fs__.writeSync(self.fd, string)}) 675 return executeIOAction(function(){return __fs__.fsyncSync(self.fd)}) 683 executeIOAction(function(){return __fs__.closeSync(self.fd)}); 853 $def(self, '$initialize', function $$initialize(fd, flags) { argument 859 return self.$initialize_before_node_io(fd, flags);
|
| /plugin/diagramsnet/lib/img/lib/active_directory/ |
| D | mac_client.svg | 1 …="-132.298" y2="205.298" xlink:href="#G"><stop offset="0" stop-color="#0777fd"/><stop offset="1" s…
|
| D | input_output_filter.svg | 1 …="70.252" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#0576fd"/><stop offset="1" s…
|
| /plugin/combo/vendor/carica/phpcss/ |
| H A D | README.md | 47 $fd = FluentDOM::QueryCss($xml); 48 $fd
|
| /plugin/diagramsnet/lib/ |
| D | yarn.lock | 376 fd-slicer@~1.1.0: 378 …resolved "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.1.0.tgz#25c7c89cb1f9077f8891bbe61d8… 960 fd-slicer "~1.1.0"
|
| /plugin/jplayer/vendor/happyworm/jplayer/lib/aurora/ |
| D | ogg.js | 2 …fd=fd_start;fd<=fd_end;fd++){if(!FS.streams[fd]){return fd}}throw new FS.ErrnoError(ERRNO_CODES.EM…
|
| /plugin/matrixnotifierwas/vendor/guzzlehttp/guzzle/src/Handler/ |
| D | CurlFactory.php | 297 $conf[\CURLOPT_READFUNCTION] = static function ($ch, $fd, $length) use ($body) {
|