Home
last modified time | relevance | path

Searched defs:result (Results 1 – 25 of 211) sorted by last modified time

123456789

/php-src/ext/ldap/
H A Dldap.stub.php627 …function ldap_connect(?string $uri = null, int $port = 389, string $wallet = UNKNOWN, #[\Sensitive…
/php-src/ext/pgsql/
H A Dpgsql.c797 char *result; in php_pgsql_get_link_info() local
1364 zval *result; in php_pgsql_get_result_info() local
1512 zval *result; in PHP_FUNCTION() local
1585 zval *result; in php_pgsql_get_field_info() local
1661 zval *result; in PHP_FUNCTION() local
1705 zval *result; in PHP_FUNCTION() local
1925 zval *result; in PHP_FUNCTION() local
1951 zval *result; in PHP_FUNCTION() local
1997 zval *result; in PHP_FUNCTION() local
2024 zval *result; in php_pgsql_data_info() local
[all …]
/php-src/ext/opcache/jit/ir/
H A Dir_gcm.c25 uint32_t b, result; in ir_gcm_schedule_early() local
/php-src/ext/dom/
H A Dnode.c1626 bool result = xmlStrEqual(this_content, other_content); in php_dom_node_is_content_equal() local
1883 const char * result = (const char *) dom_locate_a_namespace_prefix(lookupp, uri); in dom_node_lookup_prefix() local
H A Dattr.c236 bool result = xmlStrEqual(attr_value, value); in dom_compare_value() local
/php-src/ext/mbstring/
H A Dmbstring.c460 …zend_string *result = mb_fast_convert((unsigned char*)from, from_length, (const mbfl_encoding*)enc… in php_mb_zend_encoding_converter() local
565 char *result = emalloc(len + 2); in php_mb_rfc1867_substring_conf() local
1313 smart_str result = {0}; in PHP_FUNCTION() local
1897 size_t result; in mb_find_strpos() local
2281 size_t result = 0; in PHP_FUNCTION() local
2367 mbfl_string string, result, *ret; in PHP_FUNCTION() local
2696 …zend_string *result = mb_fast_convert((unsigned char*)input, length, from_encoding, to_encoding, M… in php_mb_convert_encoding_ex() local
5531 bool result = mb_fast_check_utf8(str); in mb_check_str_encoding() local
5870 zend_string *result = zend_string_alloc(ZSTR_LEN(input) + left_pad_bytes + right_pad_bytes, false); in PHP_FUNCTION() local
5890 ZSTR_VAL(result)[ZSTR_LEN(result)] = '\0'; in PHP_FUNCTION() local
H A Dmbstring.stub.php82 function mb_parse_str(string $string, &$result): bool {}
/php-src/ext/gmp/
H A Dgmp.c374 static zend_result gmp_do_operation_ex(uint8_t opcode, zval *result, zval *op1, zval *op2) /* {{{ */ in gmp_do_operation_ex()
411 static zend_result gmp_do_operation(uint8_t opcode, zval *result, zval *op1, zval *op2) /* {{{ */ in gmp_do_operation()
433 zval result; in gmp_compare() local
649 static void gmp_strval(zval *result, mpz_t gmpnum, int base) /* {{{ */ in gmp_strval()
1669 int result; in ZEND_FUNCTION() local
/php-src/Zend/
H A Dzend_strtod.h31 char *result; member
H A Dzend_execute_API.c723 zend_result result = zend_ast_evaluate_ex(&tmp, ast, scope, &short_circuited, ctx) != SUCCESS; in zval_update_constant_with_ctx() local
1065 zend_result result = zend_call_function(&fci, &fcic); in zend_call_known_function() local
1366 zend_result result; in zend_eval_stringl_ex() local
H A Dzend_execute.c2715 zval *result = EX_VAR(opline->result.var); in zend_fetch_dimension_address_W() local
2721 zval *result = EX_VAR(opline->result.var); in zend_fetch_dimension_address_RW() local
2727 zval *result = EX_VAR(opline->result.var); in zend_fetch_dimension_address_UNSET() local
2879 zval *result = EX_VAR(opline->result.var); in zend_fetch_dimension_address_read_R() local
2885 zval *result = EX_VAR(opline->result.var); in zend_fetch_dimension_address_read_R_slow() local
2891 zval *result = EX_VAR(opline->result.var); in zend_fetch_dimension_address_read_IS() local
2897 zval *result = EX_VAR(opline->result.var); in zend_fetch_dimension_address_LIST_r() local
3116 zval *result, zval *ptr, zend_object *obj, zend_property_info *prop_info, uint32_t flags) in zend_handle_fetch_obj_flags()
3569 int result = i_zend_verify_type_assignable_zval(prop, zv, strict); in zend_verify_ref_assignable_zval() local
3680 int result; in zend_verify_prop_assignable_by_ref_ex() local
[all …]
H A Dzend_compile.c1311 zend_string *result; in add_type_string() local
2066 zend_string *result; in zend_ast_append_str() local
2071 ZSTR_VAL(result)[left_len] = '\\'; in zend_ast_append_str() local
2073 ZSTR_VAL(result)[len] = '\0'; in zend_ast_append_str() local
3361 bool result = zend_string_equals(name1, name2); in zend_is_assign_to_self() local
5087 znode name_node, result; in zend_compile_global_var() local
5674 znode result; in zend_compile_for() local
10408 zval result; in zend_compile_const_expr_const() local
10690 znode result; in zend_compile_stmt() local
10846 static void zend_compile_expr(znode *result, zend_ast *ast) in zend_compile_expr()
[all …]
H A Dzend_closures.c554 zval result; in zend_closure_clone() local
/php-src/ext/mysqlnd/
H A Dmysqlnd_vio.c40 int result = setsockopt(socketd, IPPROTO_TCP, TCP_NODELAY, (char *) &flag, sizeof(int)); in mysqlnd_set_sock_no_delay() local
60 int result = setsockopt(socketd, SOL_SOCKET, SO_KEEPALIVE, (char *) &flag, sizeof(int)); in mysqlnd_set_sock_keepalive() local
H A Dmysqlnd_result.c47 static void mysqlnd_result_free_prev_data(MYSQLND_RES *result) in mysqlnd_result_free_prev_data()
248 MYSQLND_RES * result; in mysqlnd_query_read_result_set_header() local
1136 mysqlnd_result_unbuffered_init(MYSQLND_RES *result, const unsigned int field_count, MYSQLND_STMT_DA… in mysqlnd_result_unbuffered_init()
1171 mysqlnd_result_buffered_init(MYSQLND_RES * result, const unsigned int field_count, MYSQLND_STMT_DAT… in mysqlnd_result_buffered_init()
/php-src/ext/spl/
H A Dphp_spl.c237 zval result; in spl_autoload() local
H A Dspl_fixedarray.c508 bool result = zend_is_true(&rv); in spl_fixedarray_object_has_dimension() local
/php-src/ext/reflection/
H A Dphp_reflection.c1542 static int get_parameter_default(zval *result, parameter_reference *param) { in get_parameter_default()
4005 zend_result result = zend_update_class_constant(ref, Z_STR_P(name), ref->ce); in ZEND_METHOD() local
/php-src/ext/iconv/
H A Diconv.c443 size_t bsz, result = 0; in php_iconv_string() local
/php-src/ext/random/
H A Dcsprng.c213 PHPAPI zend_result php_random_int(zend_long min, zend_long max, zend_long *result, bool should_thro… in php_random_int()
/php-src/ext/posix/
H A Dposix.c220 int result; in PHP_FUNCTION() local
587 int result; in PHP_FUNCTION() local
616 int result; in PHP_FUNCTION() local
1048 int result; in posix_addlimit() local
1167 int result = getrlimit(res, &rl); in PHP_FUNCTION() local
/php-src/main/
H A Dmain.c927 zend_string *result = php_escape_html_entities_ex( in escape_html() local
/php-src/main/streams/
H A Dplain_wrapper.c583 zend_off_t result; in php_stdiop_seek() local
1022 struct dirent *result; in php_plain_files_dirstream_read() local
/php-src/ext/opcache/jit/
H A Dzend_jit_ir.c5863 int result = 1; in zend_jit_assign_op() local
6534 bool result; in zend_jit_cmp_long_long() local
/php-src/ext/bcmath/libbcmath/src/
H A Draisemod.c36 raise_mod_status bc_raisemod(bc_num base, bc_num expo, bc_num mod, bc_num *result, size_t scale) in bc_raisemod()

Completed in 322 milliseconds

123456789