Home
last modified time | relevance | path

Searched refs:out (Results 76 – 100 of 487) sorted by relevance

12345678910>>...20

/php-src/ext/dom/
H A Dxml_document.c264 if (EXPECTED(out != NULL)) { in php_new_dom_dump_node_to_str_ex()
265 status = dom_xml_serialize(ctxt, out, node, format); in php_new_dom_dump_node_to_str_ex()
266 status |= xmlOutputBufferFlush(out); in php_new_dom_dump_node_to_str_ex()
267 status |= xmlOutputBufferClose(out); in php_new_dom_dump_node_to_str_ex()
295 xmlOutputBufferPtr out = xmlOutputBufferCreateFilename(filename, handler, 0); in php_new_dom_dump_node_to_file() local
296 if (!out) { in php_new_dom_dump_node_to_file()
301 php_stream *stream = out->context; in php_new_dom_dump_node_to_file()
304 xmlSaveCtxtPtr ctxt = xmlSaveToIO(out->writecallback, NULL, stream, encoding, XML_SAVE_AS_XML); in php_new_dom_dump_node_to_file()
306 status = dom_xml_serialize(ctxt, out, node, format); in php_new_dom_dump_node_to_file()
307 status |= xmlOutputBufferFlush(out); in php_new_dom_dump_node_to_file()
[all …]
/php-src/main/
H A Doutput.c259 if (context.out.data && context.out.used) { in php_output_flush()
261 php_output_write(context.out.data, context.out.used); in php_output_flush()
814 context->out.used = 0; in php_output_context_swap()
815 context->out.free = 0; in php_output_context_swap()
816 context->out.size = 0; in php_output_context_swap()
843 if (context->out.free && context->out.data) { in php_output_context_dtor()
1000 if (context->out.data && context->out.free) { in php_output_handler_op()
1006 context->out.free = 1; in php_output_handler_op()
1063 if (context.out.data && context.out.used) { in php_output_op()
1070 sapi_module.ub_write(context.out.data, context.out.used); in php_output_op()
[all …]
/php-src/ext/standard/tests/mail/
H A Dgh8086.phpt4 sendmail_path={MAIL:gh8086.out}
9 $mail = file_get_contents('gh8086.out');
14 unlink('gh8086.out');
/php-src/ext/standard/tests/filters/
H A Dphp_user_filter_02.phpt6 function filter($in, $out, $consumed, $closing): int {}
12 …eclaration of foo::filter($in, $out, $consumed, $closing): int must be compatible with php_user_fi…
/php-src/ext/mbstring/tests/
H A Dillformed_utf_sequences.phpt57 $out = '';
68 var_dump($out);
83 $out = '';
94 var_dump($out);
96 $out = '';
107 var_dump($out);
109 $out = '';
120 var_dump($out);
124 $out = '';
136 var_dump($out);
[all …]
H A Dmb_ereg_search_setpos.phpt40 mb_ereg_search_setpos(): Argument #1 ($offset) is out of range
51 mb_ereg_search_setpos(): Argument #1 ($offset) is out of range
55 mb_ereg_search_setpos(): Argument #1 ($offset) is out of range
71 mb_ereg_search_setpos(): Argument #1 ($offset) is out of range
/php-src/ext/opcache/tests/jit/
H A Dshift_right_003.phpt13 $out = "";
15 $out .= \chr(0x80 | (($int >> $i) & 0x7f));
17 return $out . \chr($int >> $i);
/php-src/ext/phar/tests/tar/
H A Dbug70417.phpt9 exec('lsof -p ' . getmypid(), $out, $status);
13 if (!str_starts_with($out[0], 'COMMAND')) {
20 …exec('lsof -p ' . escapeshellarg(getmypid()) . ' 2> /dev/null', $out); // Note: valgrind can prod…
21 return count($out);
/php-src/Zend/tests/zend_ini/
H A Dzend_ini_parse_uquantity_overflow.phpt77 Warning: Invalid quantity "%d": value is out of range, using overflow result for backwards compatib…
83 Warning: Invalid quantity "-%d": value is out of range, using overflow result for backwards compati…
89 Warning: Invalid quantity "-%d": value is out of range, using overflow result for backwards compati…
95 Warning: Invalid quantity "-2": value is out of range, using overflow result for backwards compatib…
101 Warning: Invalid quantity "-1K": value is out of range, using overflow result for backwards compati…
107 Warning: Invalid quantity "-1 K": value is out of range, using overflow result for backwards compat…
113 Warning: Invalid quantity "%dK": value is out of range, using overflow result for backwards compati…
/php-src/ext/standard/tests/streams/
H A Dstream_multi_filters_close.phpt7 public function filter($in, $out, &$consumed, $closing): int {
11 stream_bucket_append($out, stream_bucket_new($this->stream, $bucket->data));
26 public function filter($in, $out, &$consumed, $closing): int {
30 stream_bucket_append($out, stream_bucket_new($this->stream, $bucket->data));
/php-src/ext/gd/libgd/
H A Dgd_gif_out.c88 static int gifPutWord(int w, gdIOCtx *out);
107 if (!_gdImageGifCtx(im, out)) { in gdImageGifPtr()
108 rv = gdDPExtractData(out, size); in gdImageGifPtr()
112 out->gd_free (out); in gdImageGifPtr()
118 gdIOCtx *out = gdNewFileCtx (outFile); in gdImageGif() local
119 gdImageGifCtx (im, out); in gdImageGif()
120 out->gd_free (out); in gdImageGif()
125 _gdImageGifCtx(im, out); in gdImageGifCtx()
780 static int gifPutWord(int w, gdIOCtx *out) argument
783 gdPutC(w & 0xFF, out);
[all …]
H A Dgd_avif.c206 out->data = reader->rodata.data; in readFromCtx()
207 out->size = charsRead; in readFromCtx()
599 gdIOCtx *out = gdNewFileCtx(outFile); in gdImageAvifEx() local
601 if (out != NULL) { in gdImageAvifEx()
602 gdImageAvifCtx(im, out, quality, speed); in gdImageAvifEx()
603 out->gd_free(out); in gdImageAvifEx()
615 gdIOCtx *out = gdNewDynamicCtx(NEW_DYNAMIC_CTX_SIZE, NULL); in gdImageAvifPtrEx() local
617 if (out == NULL) { in gdImageAvifPtrEx()
621 gdImageAvifCtx(im, out, quality, speed); in gdImageAvifPtrEx()
622 rv = gdDPExtractData(out, size); in gdImageAvifPtrEx()
[all …]
H A Dgdtestft.c37 FILE *out; in main()
94 out = fopen ("test/fttest.png", "wb"); in main()
95 if (!out) in main()
100 gdImagePng (im, out); in main()
101 fclose (out); in main()
H A Dwebpng.c23 FILE *out; in main() local
248 out = stdout; in main()
256 out = fopen (outFn, "wb"); in main()
258 if (!out) in main()
267 gdImagePng (im, out); in main()
271 fclose (out); in main()
H A Dgddemo.c11 FILE *out; in main() local
108 out = fopen ("demoout.png", "wb"); in main()
110 gdImagePng (im_out, out); in main()
111 fclose (out); in main()
/php-src/ext/xsl/tests/
H A Dxslt007.phpt11 $doc = $proc->transformToUri($dom, "file://".__DIR__."/out.xml");
12 print file_get_contents(__DIR__."/out.xml");
13 unlink(__DIR__."/out.xml");
/php-src/ext/soap/tests/bugs/
H A Dbug70211.phpt16 $out = "";
18 $out .= chr($ptr & 0xff);
21 return $out;
/php-src/Zend/tests/
H A Dbug24635.phpt20 out($this->Comment); // this line doesn't crash PHP
21 out("\n<!-- End Section: " . $this->Comment . "-->"); // this line
24 function out($code) { return; }
H A Dbug27598.phpt5 list($out[0]) = array(1);
6 var_dump($out);
/php-src/ext/opcache/jit/ir/dynasm/
H A Ddasm_ppc.lua75 out:write("\n")
154 out:write("\n")
161 out:write("enum {\n")
200 out:write("\n")
1761 wline(function(out) writeactions(out, name) end) function
1768 wline(function(out) writeglobals(out, prefix) end) function
1775 wline(function(out) writeglobalnames(out, name) end) function
1782 wline(function(out) writeexternnames(out, name) end) function
1869 out:write("\n")
1886 dumpactions(out)
[all …]
/php-src/ext/standard/tests/general_functions/
H A Dproc_open-mb1.phpt28 $out = "";
31 $out .= fread($pipes[1], 1024);
36 echo $out;
H A Dproc_open-mb0.phpt31 $out = "";
34 $out .= fread($pipes[1], 1024);
39 echo $out;
/php-src/ext/pgsql/tests/inc/
H A Dskipif.inc36 $out = pg_escape_bytea($conn, "\xFF");
37 if (strpos($out, '377') !== false) {
45 $out = pg_escape_bytea($conn, "\xFF");
46 if (strpos($out, '377') === false) {
/php-src/ext/fileinfo/libmagic/
H A Dbuffer.c74 goto out; in buffer_fill()
84 goto out; in buffer_fill()
92 goto out; in buffer_fill()
96 out: in buffer_fill()
/php-src/ext/dba/libcdb/
H A Duint32.h32 void uint32_pack(char *out, uint32 in);
33 void uint32_unpack(const char *in, uint32 *out);

Completed in 55 milliseconds

12345678910>>...20