Searched refs:arg_str (Results 1 – 5 of 5) sorted by relevance
/php-src/ext/standard/ |
H A D | proc_open.c | 636 zend_string *arg_str = get_valid_arg_string(arg_zv, ++elem_num); in create_win_command_from_args() local 637 if (!arg_str) { in create_win_command_from_args() 643 is_cmd_execution = is_executed_by_cmd(ZSTR_VAL(arg_str), ZSTR_LEN(arg_str)); in create_win_command_from_args() 648 append_win_escaped_arg(&str, arg_str, !is_prog_name && is_cmd_execution); in create_win_command_from_args() 651 zend_string_release(arg_str); in create_win_command_from_args() 734 zend_string *arg_str = get_valid_arg_string(arg_zv, i + 1); in get_command_from_array() local 735 if (!arg_str) { in get_command_from_array() 745 command = zend_string_copy(arg_str); in get_command_from_array() 748 (*argv)[i++] = estrdup(ZSTR_VAL(arg_str)); in get_command_from_array() 749 zend_string_release(arg_str); in get_command_from_array()
|
H A D | password.c | 474 static const php_password_algo* php_password_algo_find_zval(zend_string *arg_str, zend_long arg_lon… in php_password_algo_find_zval() argument 479 if (arg_str) { in php_password_algo_find_zval() 480 return php_password_algo_find(arg_str); in php_password_algo_find_zval()
|
H A D | basic_functions.c | 979 zend_string *arg_str = zval_get_tmp_string(entry, &tmp_arg_str); local 981 argv[pos++] = estrdup(ZSTR_VAL(arg_str)); 1013 zend_string *arg_str = zval_get_tmp_string(entry, &tmp_arg_str); local 1016 opts->opt_name = estrdup(ZSTR_VAL(arg_str));
|
/php-src/ext/gmp/ |
H A D | gmp.c | 953 static zend_result gmp_initialize_number(mpz_ptr gmp_number, const zend_string *arg_str, zend_long … in gmp_initialize_number() argument 955 if (arg_str) { in gmp_initialize_number() 956 return convert_zstr_to_gmp(gmp_number, arg_str, base, 1); in gmp_initialize_number() 967 zend_string *arg_str = NULL; in ZEND_FUNCTION() local 972 Z_PARAM_STR_OR_LONG(arg_str, arg_l) in ZEND_FUNCTION() 983 if (gmp_initialize_number(gmp_number, arg_str, arg_l, base) == FAILURE) { in ZEND_FUNCTION() 2153 zend_string *arg_str = NULL; in ZEND_METHOD() local 2159 Z_PARAM_STR_OR_LONG(arg_str, arg_l) in ZEND_METHOD() 2170 if (gmp_initialize_number(gmp_number, arg_str, arg_l, base) == FAILURE) { in ZEND_METHOD()
|
/php-src/ext/mbstring/ |
H A D | php_mbregex.c | 1460 zend_string *arg_str; in PHP_FUNCTION() local 1466 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "S|s!s!", &arg_str, &arg_pattern, &arg_pattern_len, &ar… in PHP_FUNCTION() 1494 ZVAL_STR_COPY(&MBREX(search_str), arg_str); in PHP_FUNCTION() 1496 …if (php_mb_check_encoding(ZSTR_VAL(arg_str), ZSTR_LEN(arg_str), php_mb_regex_get_mbctype_encoding(… in PHP_FUNCTION() 1500 MBREX(search_pos) = ZSTR_LEN(arg_str); in PHP_FUNCTION()
|
Completed in 28 milliseconds