Home
last modified time | relevance | path

Searched refs:result (Results 1051 – 1075 of 1081) sorted by relevance

1...<<41424344

/php-src/sapi/fpm/tests/
H A Dtester.inc360 $result = exec("$command 2>&1", $output, $code);
361 if ($result === false || $code) {
1840 $result = $this->logTool->expectEntry(
1851 if ( ! $result) {
/php-src/ext/soap/
H A Dsoap.c237 static zend_result soap_url_cast_object(zend_object *obj, zval *result, int type) in soap_url_cast_object() argument
240 ZVAL_LONG(result, obj->handle); in soap_url_cast_object()
245 return zend_std_cast_object_tostring(obj, result, type); in soap_url_cast_object()
284 static zend_result soap_sdl_cast_object(zend_object *obj, zval *result, int type) in soap_sdl_cast_object() argument
287 ZVAL_LONG(result, obj->handle); in soap_sdl_cast_object()
292 return zend_std_cast_object_tostring(obj, result, type); in soap_sdl_cast_object()
/php-src/ext/mysqli/tests/
H A Dmysqli_fetch_array.phpt49 // NOTE: for BC reasons with ext/mysql, ext/mysqli accepts invalid result modes.
H A Dmysqli_get_client_stats.phpt296 /* last row has been implicitly cleaned from the wire by freeing the result set */
439 /* buffered result set - no skipping possible! */
559 printf("[%03d] Expecting at least one result, [%d] %s\n", ++$test_counter,
/php-src/ext/dom/lexbor/
H A DLICENSE160 result of this License or out of the use or inability to use the
/php-src/Zend/
H A Dzend_execute.h407 ZEND_API void zend_fetch_dimension_const(zval *result, zval *container, zval *dim, int type);
H A Dzend_generators.c600 …ZVAL_COPY(ZEND_CALL_VAR(new_root->execute_data, yield_from->result.var), &new_root_parent->retval); in zend_generator_update_current()
H A Dzend.c829 executor_globals->strtod_state.result = NULL; in executor_globals_ctor()
H A Dzend_strtod.c209 #define dtoa_result (EG(strtod_state).result)
/php-src/ext/openssl/
H A Dxp_ssl.c363 int result = -1; in php_openssl_x509_fingerprint_cmp() local
367 result = strcasecmp(expected, ZSTR_VAL(fingerprint)); in php_openssl_x509_fingerprint_cmp()
371 return result; in php_openssl_x509_fingerprint_cmp()
/php-src/ext/pcre/pcre2lib/
H A Dpcre2_jit_compile.c1299 int result = 0; in detect_early_fail() local
1657 result = count; in detect_early_fail()
1664 return result; in detect_early_fail()
3289 sljit_uw *result; in allocate_read_only_data() local
3303 return result + 1; in allocate_read_only_data()
14939 if (result != 0) in pcre2_jit_compile()
14940 return result; in pcre2_jit_compile()
14947 if (result != 0) in pcre2_jit_compile()
14948 return result; in pcre2_jit_compile()
14955 if (result != 0) in pcre2_jit_compile()
[all …]
/php-src/
H A Dphp.ini-development200 ; should be disabled, as enabling it may result in issues when generating XML
274 ; outputs chunks that are few hundreds bytes each as a result of
309 ; structures. Setting the depth limit too high may result in stack overflows
470 ; E_NOTICE - run-time notices (these are warnings which often result
692 ; variables are not used within a script, having this directive on will result
1220 ; Default size of the mysqlnd memory pool, which is used by result sets.
H A Dphp.ini-production200 ; should be disabled, as enabling it may result in issues when generating XML
274 ; outputs chunks that are few hundreds bytes each as a result of
309 ; structures. Setting the depth limit too high may result in stack overflows
472 ; E_NOTICE - run-time notices (these are warnings which often result
694 ; variables are not used within a script, having this directive on will result
1222 ; Default size of the mysqlnd memory pool, which is used by result sets.
/php-src/ext/gd/tests/
H A DRochester-Regular.otf.LICENSE.txt160 result of this License or out of the use or inability to use the
/php-src/ext/ffi/
H A Dffi.c1849 static zend_result zend_ffi_cdata_do_operation(uint8_t opcode, zval *result, zval *op1, zval *op2) … in zend_ffi_cdata_do_operation() argument
1862 ZVAL_OBJ(result, zend_ffi_add(cdata1, type1, offset)); in zend_ffi_cdata_do_operation()
1863 if (result == op1) { in zend_ffi_cdata_do_operation()
1891 ZVAL_LONG(result, in zend_ffi_cdata_do_operation()
1898 ZVAL_OBJ(result, zend_ffi_add(cdata1, type1, -offset)); in zend_ffi_cdata_do_operation()
1899 if (result == op1) { in zend_ffi_cdata_do_operation()
1912 ZVAL_OBJ(result, zend_ffi_add(cdata2, type2, offset)); in zend_ffi_cdata_do_operation()
5165 static zend_result zend_fake_cast_object(zend_object *obj, zval *result, int type) in zend_fake_cast_object() argument
5169 ZVAL_TRUE(result); in zend_fake_cast_object()
/php-src/ext/standard/
H A Dbasic_functions.stub.php2581 /** @param array $result */
2582 function parse_str(string $string, &$result): void {}
/php-src/ext/gd/
H A Dgd.c772 int result; in PHP_FUNCTION() local
781 result = gdImageColorMatch(im1, im2); in PHP_FUNCTION()
782 switch (result) { in PHP_FUNCTION()
/php-src/ext/phar/
H A Dphar_object.c146 zval result; in phar_file_action() local
260 ZVAL_UNDEF(&result); in phar_file_action()
263 zend_execute(new_op_array, &result); in phar_file_action()
274 zval_ptr_dtor(&result); in phar_file_action()
/php-src/ext/dba/
H A Dconfig.m440 dnl Print the result message
/php-src/ext/reflection/
H A Dphp_reflection.c1542 static int get_parameter_default(zval *result, parameter_reference *param) { in get_parameter_default() argument
1549 result, (zend_internal_arg_info *) param->arg_info); in get_parameter_default()
1556 ZVAL_COPY(result, default_value); in get_parameter_default()
4008 zend_result result = zend_update_class_constant(ref, Z_STR_P(name), ref->ce); in ZEND_METHOD() local
4009 if (result == FAILURE) { in ZEND_METHOD()
/php-src/ext/gd/libgd/
H A Dgd.c1549 long result = (long) sqrt ((double) n); in lsqrt() local
1550 return result; in lsqrt()
/php-src/docs/source/miscellaneous/
H A Dstubs.rst118 This will result in the following arginfo:
/php-src/Zend/tests/
H A D019.phpt351 // because these are not functions but statements, it will result in syntax error.
/php-src/ext/opcache/jit/ir/dynasm/
H A Dminilua.c649 static int luaO_str2d(const char*s,lua_Number*result){ in luaO_str2d() argument
651 *result=lua_str2number(s,&endptr); in luaO_str2d()
654 *result=cast_num(strtoul(s,&endptr,16)); in luaO_str2d()
4712 ptrdiff_t result=savestack(L,res);
4719 res=restorestack(L,result);
/php-src/ext/mysqlnd/
H A Dmysqlnd_wireprotocol.c2091 packet->result = uint1korr(p); in php_mysqlnd_cached_sha2_result_read()

Completed in 204 milliseconds

1...<<41424344