Home
last modified time | relevance | path

Searched refs:output (Results 176 – 200 of 559) sorted by relevance

12345678910>>...23

/PHP-8.1/main/
H A Dphp_output.h104 typedef void (*php_output_handler_func_t)(char *output, size_t output_len, char **handled_output, s…
136 ZEND_BEGIN_MODULE_GLOBALS(output)
143 ZEND_END_MODULE_GLOBALS(output)
145 PHPAPI ZEND_EXTERN_MODULE_GLOBALS(output)
/PHP-8.1/tests/output/
H A Dob_018.phpt2 output buffering - error message nirvana bug #37714
H A Dob_012.phpt2 output buffering - multiple
H A Dob_014.phpt2 output buffering - failure
H A Dob_015.phpt2 output buffering - failure
H A Dob_get_clean_basic_002.phpt6 * Function is implemented in main/output.c
/PHP-8.1/ext/standard/tests/strings/
H A Dbug78003.phpt2 Bug #78003 (strip_tags output change since PHP 7.3)
H A Dsetlocale_basic1.phpt17 // start the buffering of next command to internal output buffer
23 // get the contents from the internal output buffer
26 // fflush and end the output buffering to internal output buffer
H A Dsha1raw.phpt2 sha1() with RAW output
/PHP-8.1/win32/build/
H A Dphpize.js.in128 var output = "";
138 output += emit_dep_modules(item.deps);
140 output += emit_module(item);
144 return output;
152 var output = "";
161 output += emit_module(item);
167 output += emit_dep_modules(module_names);
169 return output;
/PHP-8.1/ext/gd/libgd/
H A Dgd_gif_out.c94 static void output (code_int code, GifCtx *ctx);
503 output(code_int code, GifCtx *ctx);
548 output( (code_int)ctx->ClearCode, ctx );
580 output ( (code_int) ent, ctx );
596 output( (code_int)ent, ctx );
598 output( (code_int) ctx->EOFCode, ctx );
632 output(code_int code, GifCtx *ctx) function
702 output( (code_int)ctx->ClearCode, ctx);
/PHP-8.1/ext/standard/tests/http/
H A Dbug61548.phpt26 ['pid' => $pid, 'uri' => $uri] = http_server($responses, $output);
29 fseek($output, 0, SEEK_SET);
30 echo stream_get_contents($output);
/PHP-8.1/ext/standard/
H A Dsha1.c362 static void SHA1Encode(output, input, len) in SHA1Encode() argument
363 unsigned char *output; in SHA1Encode()
370 output[j] = (unsigned char) ((input[i] >> 24) & 0xff);
371 output[j + 1] = (unsigned char) ((input[i] >> 16) & 0xff);
372 output[j + 2] = (unsigned char) ((input[i] >> 8) & 0xff);
373 output[j + 3] = (unsigned char) (input[i] & 0xff);
382 static void SHA1Decode(output, input, len) in SHA1Decode() argument
383 uint32_t *output; in SHA1Decode()
390 output[i] = ((uint32_t) input[j + 3]) | (((uint32_t) input[j + 2]) << 8) |
H A Dcrypt_freesec.h21 char output[21]; member
/PHP-8.1/sapi/cli/tests/
H A Dbug62294.phpt7 exec($php . ' -n ' . __DIR__ . '/bug62294.inc', $output, $exit_status);
H A Dbug70006.phpt2 Bug #70006 (cli - function with default arg = STDOUT crash output)
H A Dupload_2G.phpt58 $output = "";
87 $output .= fgets($fp);
89 echo $output;
H A Dbug65275.phpt7 exec($php . ' ' . __DIR__ . '/bug65275.inc', $output, $exit_status);
/PHP-8.1/ext/standard/tests/array/
H A Darray_walk_variation6.phpt19 echo "\n"; // new line to separate the output between each element
28 echo "\n"; // new line to separate the output between each element
37 echo "\n"; // new line to separate the output between each element
/PHP-8.1/ext/dom/tests/
H A DDOMDocument_getElementsByTagNameNS_match_any_namespace.phpt47 // Should not give any output
49 // Should not give any output, because the null namespace is the same as the empty namespace
51 // Should only output the include from the empty namespace
/PHP-8.1/ext/openssl/tests/
H A DCertificateGenerator.inc77 $output = '';
78 openssl_x509_export($this->ca, $output);
80 return $output;
/PHP-8.1/ext/xmlwriter/
H A Dphp_xmlwriter.h38 xmlBufferPtr output; member
/PHP-8.1/ext/pcre/pcre2lib/
H A Dpcre2_convert.c370 PCRE2_UCHAR *output; /* current output position */ member
389 if (out->output < out->output_end) in convert_glob_write()
390 *out->output++ = chr; in convert_glob_write()
405 PCRE2_UCHAR *output = out->output; in convert_glob_write_str() local
413 if (output < output_end) in convert_glob_write_str()
414 *output++ = *out_str++; in convert_glob_write_str()
418 out->output = output; in convert_glob_write_str()
819 out.output = use_buffer; in convert_glob()
1022 if (!dummyrun && out.output_size != (PCRE2_SIZE) (out.output - use_buffer)) in convert_glob()
/PHP-8.1/build/
H A Dltmain.sh2060 case $output in
4883 $run $rm $output
4956 case $output in
4957 *.exe) output=`$echo $output|${SED} 's,.exe$,,'` ;;
5387 $echo >> $output "\
5456 $echo >> $output "\
5482 $echo >> $output "\
5500 $echo >> $output "\
5513 chmod +x $output
5668 case $output in
[all …]
/PHP-8.1/ext/hash/tests/
H A Dbug64745.phpt2 Bug #64745 (hash_pbkdf2() truncates data when using default length and hex output)

Completed in 47 milliseconds

12345678910>>...23