Home
last modified time | relevance | path

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

12345678910>>...22

/PHP-8.0/ext/openssl/tests/
H A DCertificateGenerator.inc74 $output = '';
75 openssl_x509_export($this->ca, $output);
77 return $output;
/PHP-8.0/tests/output/
H A Dob_get_clean_basic_002.phpt6 * Function is implemented in main/output.c
H A Dob_018.phpt2 output buffering - error message nirvana bug #37714
H A Dob_get_clean_basic_001.phpt6 * Function is implemented in main/output.c
H A Dob_get_status.phpt19 string(22) "default output handler"
/PHP-8.0/ext/xmlwriter/
H A Dphp_xmlwriter.h38 xmlBufferPtr output; member
H A Dphp_xmlwriter.c59 if (intern->output) { in xmlwriter_object_dtor()
60 xmlBufferFree(intern->output); in xmlwriter_object_dtor()
61 intern->output = NULL; in xmlwriter_object_dtor()
919 if (ze_obj->output) { in PHP_FUNCTION()
920 xmlBufferFree(ze_obj->output); in PHP_FUNCTION()
923 ze_obj->output = NULL; in PHP_FUNCTION()
928 ze_obj->output = NULL; in PHP_FUNCTION()
968 if (ze_obj->output) { in PHP_FUNCTION()
969 xmlBufferFree(ze_obj->output); in PHP_FUNCTION()
972 ze_obj->output = buffer; in PHP_FUNCTION()
[all …]
/PHP-8.0/ext/zlib/tests/
H A Dgzseek_variation7.phpt28 echo "\nreading the output file\n";
44 reading the output file
/PHP-8.0/ext/xsl/tests/
H A Dxsltprocessor_transformToURI.phpt24 <xsl:output method="html" encoding="utf-8" indent="yes"/>
50 var_dump($proc->transformToURI($xsldoc, 'php://output'));
/PHP-8.0/sapi/cli/tests/
H A Dbug65275.phpt7 exec($php . ' ' . __DIR__ . '/bug65275.inc', $output, $exit_status);
H A Dupload_2G.phpt54 $output = "";
83 $output .= fgets($fp);
85 echo $output;
/PHP-8.0/ext/standard/tests/strings/
H A Dsetlocale_variation1.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
H A D005.phpt2 highlight_string(), output buffer and error level
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 Dmd5.phpt2 md5() with ASCII output
/PHP-8.0/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)
144 ZEND_END_MODULE_GLOBALS(output)
146 PHPAPI ZEND_EXTERN_MODULE_GLOBALS(output)
/PHP-8.0/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.0/ext/hash/tests/
H A Dbug64745.phpt2 Bug #64745 (hash_pbkdf2() truncates data when using default length and hex output)
/PHP-8.0/Zend/tests/
H A Dbug69640.phpt2 Bug #69640 Unhandled Error thrown from userland do not produce any output
H A Doutput_started_at_eval.phpt11 Warning: Cannot modify header information - headers already sent by (output started at %s(2) : eval…
/PHP-8.0/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.0/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.0/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) |
/PHP-8.0/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

Completed in 36 milliseconds

12345678910>>...22