Home
last modified time | relevance | path

Searched refs:ZSTR_VAL (Results 201 – 225 of 240) sorted by relevance

12345678910

/PHP-7.1/ext/intl/calendar/
H A Dcalendar_class.cpp104 zend_throw_exception(NULL, ZSTR_VAL(err_msg), 0); in Calendar_clone_obj()
/PHP-7.1/ext/oci8/
H A Doci8.c1798 php_strtolower(ZSTR_VAL(hashed_details.s), ZSTR_LEN(hashed_details.s)); in php_oci_do_connect_ex()
1882 (memcmp(ZSTR_VAL(tmp->hash_key), ZSTR_VAL(hashed_details.s), in php_oci_do_connect_ex()
2944 php_strtolower(ZSTR_VAL(spool_hashed_details.s), ZSTR_LEN(spool_hashed_details.s)); in php_oci_get_spool()
2970 …memcmp(ZSTR_VAL(((php_oci_spool *)(spool_out_le->ptr))->spool_hash_key), ZSTR_VAL(spool_hashed_det… in php_oci_get_spool()
H A Doci8_interface.c62 php_error_docref(NULL, E_WARNING, "function '%s' is not callable", ZSTR_VAL(callback_name)); in PHP_FUNCTION()
72 php_error_docref(NULL, E_WARNING, "function '%s' is not callable", ZSTR_VAL(callback_name)); in PHP_FUNCTION()
/PHP-7.1/ext/openssl/
H A Dxp_ssl.c249 ebuf.s ? ZSTR_VAL(ebuf.s) : ""); in handle_ssl_error()
307 result = strcasecmp(expected, ZSTR_VAL(fingerprint)); in php_x509_fingerprint_cmp()
344 if (php_x509_fingerprint_cmp(peer, ZSTR_VAL(key), Z_STRVAL_P(current)) != 0) { in php_x509_fingerprint_match()
1380 sslsock->sni_certs[i].name = pestrdup(ZSTR_VAL(key), php_stream_is_persistent(stream)); in enable_server_sni()
/PHP-7.1/ext/json/
H A Djson_scanner.re257 ZSTR_VAL(str)[len] = '\0';
/PHP-7.1/main/
H A Dspprintf.c148 memset(ZSTR_VAL(((smart_str *)(xbuf))->s) + ZSTR_LEN(((smart_str *)(xbuf))->s), (ch), (count)); \
/PHP-7.1/ext/standard/
H A Dmd5.c61 PHP_MD5Update(&context, ZSTR_VAL(arg), ZSTR_LEN(arg)); in PHP_NAMED_FUNCTION()
H A Darray.c504 …int result = strnatcmp_ex(ZSTR_VAL(str1), ZSTR_LEN(str1), ZSTR_VAL(str2), ZSTR_LEN(str2), fold_cas… in php_array_natural_general_compare()
1791 php_prefix_varname(&final_name, prefix, ZSTR_VAL(str), ZSTR_LEN(str), 1);
1804 …if (var_exists && ZSTR_LEN(var_name) == sizeof("GLOBALS")-1 && !strcmp(ZSTR_VAL(var_name), "GLOBAL…
1812 php_prefix_varname(&final_name, prefix, ZSTR_VAL(var_name), ZSTR_LEN(var_name), 1);
1824 php_prefix_varname(&final_name, prefix, ZSTR_VAL(var_name), ZSTR_LEN(var_name), 1);
1830 if (!php_valid_var_name(ZSTR_VAL(var_name), ZSTR_LEN(var_name))) {
1831 php_prefix_varname(&final_name, prefix, ZSTR_VAL(var_name), ZSTR_LEN(var_name), 1);
H A Dsha1.c49 PHP_SHA1Update(&context, (unsigned char *) ZSTR_VAL(arg), ZSTR_LEN(arg)); in PHP_FUNCTION()
/PHP-7.1/ext/intl/converter/
H A Dconverter.c700 ZSTR_LEN(ret) = ucnv_fromUChars(dest_cnv, ZSTR_VAL(ret), ret_len+1, temp, temp_len, &error); in php_converter_do_convert()
1058 zend_throw_exception(NULL, ZSTR_VAL(err_msg), 0); in php_converter_clone_object()
/PHP-7.1/ext/opcache/Optimizer/
H A Dzend_optimizer.c76 memcmp(ZSTR_VAL(op_array->vars[i]), ZSTR_VAL(name), ZSTR_LEN(name)) == 0)) { in zend_optimizer_lookup_cv()
H A Dblock_pass.c43 memcpy(lookup_name, ZSTR_VAL(name), ZSTR_LEN(name) + 1); in zend_optimizer_get_persistent_constant()
235 memcpy(ZSTR_VAL(tmp), Z_STRVAL(ZEND_OP1_LITERAL(last_op)), old_len); in zend_optimize_block()
601 memcpy(ZSTR_VAL(tmp), Z_STRVAL(ZEND_OP2_LITERAL(src)), old_len); in zend_optimize_block()
/PHP-7.1/ext/fileinfo/
H A Dlibmagic.patch2322 + strncpy(ms->o.buf, ZSTR_VAL(res), ZSTR_LEN(res));
3515 + ZSTR_VAL(t)[j++] = '~';
3520 + ZSTR_VAL(t)[j++] = '\\';
3521 + ZSTR_VAL(t)[j] = '~';
3524 + ZSTR_VAL(t)[j] = val[i];
3528 + ZSTR_VAL(t)[j++] = '~';
3531 + ZSTR_VAL(t)[j++] = 'i';
3534 + ZSTR_VAL(t)[j++] = 'm';
3536 + ZSTR_VAL(t)[j]='\0';
/PHP-7.1/ext/pcntl/
H A Dpcntl.c956 strlcpy(*pair, ZSTR_VAL(key), ZSTR_LEN(key) + 1); in PHP_FUNCTION()
1037 …php_error_docref(NULL, E_WARNING, "%s is not a callable function name error", ZSTR_VAL(func_name)); in PHP_FUNCTION()
/PHP-7.1/ext/mysqlnd/
H A Dmysqlnd_alloc.c635 memcpy(FAKE_PTR(ret), ZSTR_VAL(tmp_str.s), ZSTR_LEN(tmp_str.s)); in _mysqlnd_pestrdup()
H A Dmysqlnd_debug.c440 ,ZSTR_VAL(string_key) in MYSQLND_METHOD()
H A Dmysqlnd_vio.c197 errstr? ZSTR_VAL(errstr):"Unknown error while connecting"); in MYSQLND_METHOD()
/PHP-7.1/ext/pdo/
H A Dpdo_sql_parser.c538 … if (!stmt->dbh->methods->quoter(stmt->dbh, ZSTR_VAL(buf), ZSTR_LEN(buf), &plc->quoted, &plc->qlen, in pdo_parse_params()
H A Dpdo_sql_parser.re223 … if (!stmt->dbh->methods->quoter(stmt->dbh, ZSTR_VAL(buf), ZSTR_LEN(buf), &plc->quoted, &plc->qlen,
/PHP-7.1/ext/phar/
H A Dtar.c883 …if (ZSTR_LEN(entry->metadata_str.s) != php_stream_write(entry->fp, ZSTR_VAL(entry->metadata_str.s)… in phar_tar_setmetadata()
1040 user_stub = estrndup(ZSTR_VAL(str), ZSTR_LEN(str)); in phar_tar_flush()
/PHP-7.1/ext/exif/
H A Dexif.c169 if (FAILURE == zend_multibyte_parse_encoding_list(ZSTR_VAL(new_value), ZSTR_LEN(new_value), in ZEND_DECLARE_MODULE_GLOBALS()
171 php_error_docref(NULL, E_WARNING, "Illegal encoding ignored: '%s'", ZSTR_VAL(new_value)); in ZEND_DECLARE_MODULE_GLOBALS()
184 if (FAILURE == zend_multibyte_parse_encoding_list(ZSTR_VAL(new_value), ZSTR_LEN(new_value), in ZEND_INI_MH()
186 php_error_docref(NULL, E_WARNING, "Illegal encoding ignored: '%s'", ZSTR_VAL(new_value)); in ZEND_INI_MH()
3961 ImageInfo->FileName = estrndup(ZSTR_VAL(base), ZSTR_LEN(base)); in exif_read_file()
/PHP-7.1/main/streams/
H A Dmemory.c734 comma = ZSTR_VAL(base64_comma); in php_stream_url_wrap_rfc2397()
/PHP-7.1/ext/intl/uchar/
H A Duchar.c259 …buffer_len = u_charName(cp, (UCharNameChoice)nameChoice, ZSTR_VAL(buffer), ZSTR_LEN(buffer) + 1, &… in ZEND_END_ARG_INFO()
/PHP-7.1/Zend/
H A Dzend_compile.h420 #define ZEND_FN_SCOPE_NAME(function) ((function) && (function)->common.scope ? ZSTR_VAL((function)…
/PHP-7.1/ext/date/
H A Dphp_date.c1689 while ((real_len = strftime(ZSTR_VAL(buf), buf_len, format, &ta)) == buf_len || real_len == 0) { in php_strftime()
2273 ZSTR_LEN(tmpstr) = snprintf(ZSTR_VAL(tmpstr), sizeof("+05:00"), "%c%02d:%02d", in date_object_get_properties()
2365 ZSTR_LEN(tmpstr) = snprintf(ZSTR_VAL(tmpstr), sizeof("+05:00"), "%c%02d:%02d", in date_object_get_properties_timezone()
2404 ZSTR_LEN(tmpstr) = snprintf(ZSTR_VAL(tmpstr), sizeof("+05:00"), "%c%02d:%02d", in date_object_get_debug_info_timezone()
3922 ZSTR_LEN(tmpstr) = snprintf(ZSTR_VAL(tmpstr), sizeof("+05:00"), "%c%02d:%02d", in PHP_FUNCTION()
4341 DATE_A64I((*intobj)->diff->member, ZSTR_VAL(str)); \ in php_date_interval_initialize_from_hash()

Completed in 147 milliseconds

12345678910