Home
last modified time | relevance | path

Searched refs:output (Results 1 – 25 of 550) sorted by last modified time

12345678910>>...22

/php-src/ext/soap/
H A Dsoap.c3329 use = fnb->output.use;
3331 ns = encode_add_ns(body, fnb->output.ns);
3710 if (fnb->output.headers &&
3711 (hdr = zend_hash_find_ptr(fnb->output.headers, key.s)) != NULL) {
H A Dphp_sdl.c910 xmlNodePtr input, output, fault, portTypeOperation, trav3; in load_wsdl() local
1016 output = get_node_ex(portTypeOperation->children, "output", WSDL_NAMESPACE); in load_wsdl()
1017 if (output != NULL) { in load_wsdl()
1020 message = get_attribute(output->properties, "message"); in load_wsdl()
1042 output = get_node_ex(operation->children, "output", WSDL_NAMESPACE); in load_wsdl()
1043 if (output != NULL) { in load_wsdl()
1045 …wsdl_soap_binding_body(&ctx, output, wsdl_soap_namespace, &soapFunctionBinding->output, function->… in load_wsdl()
1736 sdl_deserialize_soap_body(&binding->output, encoders, types, &in); in get_sdl_from_cache()
2937 make_persistent_sdl_soap_body(&soap_binding->output, ptr_map); in make_persistent_sdl_function()
3554 delete_sdl_soap_binding_function_body(soapFunction->output); in delete_function()
[all …]
H A Dphp_sdl.h121 sdlSoapBindingFunctionBody output; member
/php-src/
H A DUPGRADING188 . Getting the debug info for WeakReference will now also output the object
190 . The output of Closure::__debugInfo() now includes the name, file, and line
H A DNEWS135 . Clear output handler status flags during handler initialization. (haszi)
230 wsdl operation !has output). (nielsdos)
H A Dconfigure.ac1494 AC_DEFINE_UNQUOTED(PHP_UNAME,"$PHP_UNAME",[uname -a output])
1496 AC_DEFINE_UNQUOTED(PHP_OS,"$PHP_OS",[uname output])
1498 AC_DEFINE_UNQUOTED(PHP_BUILD_SYSTEM,"$PHP_BUILD_SYSTEM",[builder uname output])
1712 output.c getopt.c php_syslog.c, -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1)
H A D.gitattributes16 # Configure proper diff drivers to improve the context lines in the output
H A DUPGRADING.INTERNALS190 attempted using the CSPRNG for better output size flexibility.
/php-src/ext/reflection/
H A Dphp_reflection.c551 #define DUMP_CONST_FLAG(flag, output) \ in _const_string() argument
555 smart_str_appends(str, output); \ in _const_string()
/php-src/ext/libxml/
H A Dlibxml.c642 bool output = false; in php_libxml_internal_error_handler_ex() local
650 output = true; in php_libxml_internal_error_handler_ex()
657 if (output) { in php_libxml_internal_error_handler_ex()
/php-src/ext/mbstring/
H A Dmbstring.c2723 HashTable *output, *chash; in php_mb_convert_encoding_recursive() local
2738 output = zend_new_array(zend_hash_num_elements(input)); in php_mb_convert_encoding_recursive()
2791 zend_hash_add(output, key, &entry_tmp); in php_mb_convert_encoding_recursive()
2794 zend_hash_index_add(output, idx, &entry_tmp); in php_mb_convert_encoding_recursive()
2799 return output; in php_mb_convert_encoding_recursive()
/php-src/build/
H A Dlibtool.m4246 # Check for compiler boilerplate output or warnings with
260 # Check for linker boilerplate output or warnings with
1937 AC_MSG_WARN([output file '$ofile' does not exist])
2364 reload_cmds='$LD$reload_flag -o $output$reload_objs'
3822 # compiler output when linking a shared library.
3823 # Parse the compiler output and extract the necessary
3917 # once in the compiler output.
4153 # A sed program that does not truncate output.
4397 # Transform the output of nm in a C name address pair
4650 # Try sorting and uniquifying the output.
[all …]
H A Dphp.m421 dnl Adds separator title configure output (idea borrowed from mm).
1441 dnl AC_CHECK_LIB is overkill and this only affects the "checking.." output
/php-src/docs/
H A Drelease-process.md226 6. After each build, check the output of `./sapi/cli/php -v` to ensure the
530 7. After each build, check the output of `./sapi/cli/php -v` to ensure the
1017 and paste the output from `gpg --fingerprint`. You may also need to update
/php-src/main/
H A Doutput.c34 PHPAPI ZEND_DECLARE_MODULE_GLOBALS(output)
138 ZEND_INIT_MODULE_GLOBALS(output, php_output_init_globals, NULL); in php_output_startup()
H A Dphp_output.h106 typedef void (*php_output_handler_func_t)(char *output, size_t output_len, char **handled_output, s…
138 ZEND_BEGIN_MODULE_GLOBALS(output)
145 ZEND_END_MODULE_GLOBALS(output)
147 PHPAPI ZEND_EXTERN_MODULE_GLOBALS(output)
H A Dmain.c715 …arator.output", "&", PHP_INI_ALL, OnUpdateStringUnempty, arg_separator.output, php_core_globals,…
/php-src/ext/tidy/
H A Dtidy.c347 TidyBuffer output; in php_tidy_quick_repair() local
352 RETVAL_STRINGL((char *) output.bp, output.size ? output.size-1 : 0); in php_tidy_quick_repair()
462 TidyBuffer output; in tidy_doc_cast_handler() local
483 if (output.size) { in tidy_doc_cast_handler()
484 ZVAL_STRINGL(out, (char *) output.bp, output.size-1); in tidy_doc_cast_handler()
538 TidyBuffer output; in tidy_doc_update_properties() local
543 if (output.size) { in tidy_doc_update_properties()
549 (char*) output.bp, in tidy_doc_update_properties()
550 output.size-1 in tidy_doc_update_properties()
1047 TidyBuffer output; in PHP_FUNCTION() local
[all …]
/php-src/ext/dom/
H A Dxpath.c481 output->val[0] = '\''; in PHP_METHOD()
483 output->val[input_len + 1] = '\''; in PHP_METHOD()
484 output->val[input_len + 2] = '\0'; in PHP_METHOD()
485 RETURN_STR(output); in PHP_METHOD()
488 output->val[0] = '"'; in PHP_METHOD()
490 output->val[input_len + 1] = '"'; in PHP_METHOD()
491 output->val[input_len + 2] = '\0'; in PHP_METHOD()
492 RETURN_STR(output); in PHP_METHOD()
494 smart_str output = {0}; in PHP_METHOD() local
510 smart_str_appendc(&output, ','); in PHP_METHOD()
[all …]
/php-src/ext/standard/tests/file/
H A Dfile_get_contents_file_put_contents_5gb.phpt16 @exec('wmic OS get FreePhysicalMemory', $output);
17 if (isset($output[1])) {
18 return ((int)trim($output[1])) * 1024;
/php-src/ext/standard/
H A Dbasic_functions.stub.php2714 * @param array $output
2718 function exec(string $command, &$output = null, &$result_code = null): string|false {}
H A Dbasic_functions_arginfo.h1139 ZEND_ARG_INFO_WITH_DEFAULT_VALUE(1, output, "null")
H A Durl_scanner_ex.re311 append_modified_url(&ctx->val, &ctx->result, &ctx->url_app, PG(arg_separator).output, ctx->type);
612 append_modified_url(&surl, &buf, &url_app, PG(arg_separator).output, 1);
706 smart_str_appendl(&ctx->result, output, output_len);
714 *handled_output = estrndup(output, *handled_output_len = output_len);
723 …php_url_scanner_session_handler_impl(output, output_len, handled_output, handled_output_len, mode,…
728 …php_url_scanner_session_handler_impl(output, output_len, handled_output, handled_output_len, mode,…
757 smart_str_appends(&url_state->url_app, PG(arg_separator).output);
898 separator_len = strlen(PG(arg_separator).output);
900 if (!memcmp(end, PG(arg_separator).output, separator_len)) {
914 && (size_t)(start - PG(arg_separator).output) >= separator_len
[all …]
/php-src/ext/mbstring/tests/
H A Dmb_encode_mimeheader_basic4.phpt65 // Regression test for incorrect calculation of when to stop generating output
73 // Regression test: must take ASCII characters already output at beginning of line
74 // into account when calculating how many QPrint-encoded characters we can output
88 // how much output can fit on the line
110 // Regression test: Exploring corner cases of when legacy implementation would output plain ASCII
115 // Change in behavior: The old implementation would output the following string as plain ASCII,
/php-src/ext/xsl/
H A Dphp_xsl.c254 …bool output = XSL_TRY_OUTPUT_REPLACED_ERROR_MESSAGE(ctx, msg_arg, args, "xsltMaxDepth (--maxdepth)… in xsl_libxslt_error_handler() local
257 if (!output) { in xsl_libxslt_error_handler()

Completed in 154 milliseconds

12345678910>>...22