Home
last modified time | relevance | path

Searched refs:fd (Results 1 – 25 of 61) sorted by relevance

123

/plugin/xfortune/
Dhelper.php105 $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/
DSpamLogger.php22 $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/
Dmakefont.php139 $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/
Dmodule.audio-video.flv.php41 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 …]
Dmodule.audio.mp3.php29 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 …]
Dmodule.tag.id3v1.php20 function getid3_id3v1(&$fd, &$ThisFileInfo) { argument
22 fseek($fd, -256, SEEK_END);
23 $preid3v1 = fread($fd, 128);
24 $id3v1tag = fread($fd, 128);
Dmodule.tag.id3v2.php21 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/
Dpdf.fpdf.makefont.php187 $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/
DLoggerTest.php44 $fd = fopen($logfile, "r");
45 $line = fgetcsv($fd);
46 $line = fgetcsv($fd);
/plugin/dw2pdf/vendor/mpdf/mpdf/data/
Dout.php50 $fd = fopen($path . $tempfilename, 'rb'); variable
51 fpassthru($fd);
52 fclose($fd);
/plugin/mantis/lib/
Dnusoapmime.php154 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/
Dadmin.php192 $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/
Ddemo.mp3header.php1583 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/
Dadmin.php172 foreach ($fieldData as $id => $fd) {
173 $class = 'refnotes_config_' . $fd['class'];
174 $field[] = new $class($id, $fd);
/plugin/photogallery/phpThumb/
Dphpthumb.gif.php73 $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/
Dllamacpp-cpu.js1fd"),kA.mount({mount(){var g=kA.createNode(A,"fd",16895,73);return g.node_ops={lookup(A,g){var I=+…
/plugin/syntaxhighlighter4/
DCHANGELOG.md18 * Upgrade SyntaxHighlighter to commit syntaxhighlighter/syntaxhighlighter@37724fd
/plugin/elasticsearch/vendor/ezimuel/ringphp/src/Client/
DCurlFactory.php267 $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/
Dnodejs.js37 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/
Dmac_client.svg1 …="-132.298" y2="205.298" xlink:href="#G"><stop offset="0" stop-color="#0777fd"/><stop offset="1" s…
Dinput_output_filter.svg1 …="70.252" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#0576fd"/><stop offset="1" s…
/plugin/combo/vendor/carica/phpcss/
H A DREADME.md47 $fd = FluentDOM::QueryCss($xml);
48 $fd
/plugin/diagramsnet/lib/
Dyarn.lock376 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/
Dogg.js2fd=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/
DCurlFactory.php297 $conf[\CURLOPT_READFUNCTION] = static function ($ch, $fd, $length) use ($body) {

123