Home
last modified time | relevance | path

Searched refs:key_len (Results 1 – 25 of 32) sorted by relevance

12

/PHP-5.4/ext/standard/
H A Dhttp.c37 uint key_len; in php_url_encode_hash_ex() local
59 …(key_type = zend_hash_get_current_key_ex(ht, &key, &key_len, &idx, 0, NULL)) != HASH_KEY_NON_EXIST… in php_url_encode_hash_ex()
62 if (key_type == HASH_KEY_IS_STRING && key_len && key[key_len-1] == '\0') { in php_url_encode_hash_ex()
64 key_len -= 1; in php_url_encode_hash_ex()
72 if (zend_check_property_access(zobj, key, key_len-1 TSRMLS_CC) != SUCCESS) { in php_url_encode_hash_ex()
76 zend_unmangle_property_name(key, key_len-1, &tmp, (const char**)&key); in php_url_encode_hash_ex()
77 key_len = strlen(key); in php_url_encode_hash_ex()
87 ekey = php_raw_url_encode(key, key_len, &ekey_len); in php_url_encode_hash_ex()
89 ekey = php_url_encode(key, key_len, &ekey_len); in php_url_encode_hash_ex()
155 ekey = php_raw_url_encode(key, key_len, &ekey_len); in php_url_encode_hash_ex()
[all …]
H A Dcrypt_sha256.c360 size_t key_len; in php_sha256_crypt_r() local
390 key_len = strlen(key); in php_sha256_crypt_r()
408 sha256_process_bytes(key, key_len, &ctx); in php_sha256_crypt_r()
434 for (cnt = key_len; cnt > 32; cnt -= 32) { in php_sha256_crypt_r()
441 for (cnt = key_len; cnt > 0; cnt >>= 1) { in php_sha256_crypt_r()
445 sha256_process_bytes(key, key_len, &ctx); in php_sha256_crypt_r()
456 for (cnt = 0; cnt < key_len; ++cnt) { in php_sha256_crypt_r()
464 cp = p_bytes = alloca(key_len); in php_sha256_crypt_r()
465 for (cnt = key_len; cnt >= 32; cnt -= 32) { in php_sha256_crypt_r()
581 memset(p_bytes, '\0', key_len); in php_sha256_crypt_r()
[all …]
H A Dcrypt_sha512.c393 size_t key_len; in php_sha512_crypt_r() local
424 key_len = strlen(key); in php_sha512_crypt_r()
442 sha512_process_bytes(key, key_len, &ctx); in php_sha512_crypt_r()
468 for (cnt = key_len; cnt > 64; cnt -= 64) { in php_sha512_crypt_r()
475 for (cnt = key_len; cnt > 0; cnt >>= 1) { in php_sha512_crypt_r()
479 sha512_process_bytes(key, key_len, &ctx); in php_sha512_crypt_r()
490 for (cnt = 0; cnt < key_len; ++cnt) { in php_sha512_crypt_r()
498 cp = p_bytes = alloca(key_len); in php_sha512_crypt_r()
499 for (cnt = key_len; cnt >= 64; cnt -= 64) { in php_sha512_crypt_r()
629 memset(p_bytes, '\0', key_len); in php_sha512_crypt_r()
[all …]
H A Dvar.c359 int key_len, tmp_len; in php_array_element_export() local
360 key = php_addcslashes(hash_key->arKey, hash_key->nKeyLength - 1, &key_len, 0, "'\\", 2 TSRMLS_CC); in php_array_element_export()
361 tmp_str = php_str_to_str_ex(key, key_len, "\0", 1, "' . \"\\0\" . '", 12, &tmp_len, 0, NULL); in php_array_element_export()
855 uint key_len; in php_var_serialize_intern() local
860 i = zend_hash_get_current_key_ex(myht, &key, &key_len, &index, 0, &pos); in php_var_serialize_intern()
873 php_var_serialize_string(buf, key, key_len - 1); in php_var_serialize_intern()
H A Dbasic_functions.h248 int key_len; member
H A Dstreamsfuncs.c665 uint key_len; in stream_array_from_fd_set() local
674 &key, &key_len, &num_ind, 0, NULL); in stream_array_from_fd_set()
697 zend_hash_update(new_hash, key, key_len, (void *)elem, sizeof(zval *), (void **)&dest_elem); in stream_array_from_fd_set()
H A Dbasic_functions.c3424 if (!strncmp(*env, pe->key, pe->key_len) && (*env)[pe->key_len] == '=') { /* found it */ in php_putenv_destructor()
3434 if (!strncmp(pe->key, "TZ", pe->key_len)) { in php_putenv_destructor()
4051 pe.key_len = strlen(pe.key);
4054 if (pe.key_len < setting_len - 1) {
4063 zend_hash_del(&BG(putenv_ht), pe.key, pe.key_len+1);
4068 if (!strncmp(*env, pe.key, pe.key_len) && (*env)[pe.key_len] == '=') { /* found it */
4098 zend_hash_add(&BG(putenv_ht), pe.key, pe.key_len + 1, (void **) &pe, sizeof(putenv_entry), NULL);
4100 if (!strncmp(pe.key, "TZ", pe.key_len)) {
/PHP-5.4/ext/session/
H A Dmod_user_class.c75 int key_len, val_len; in PHP_METHOD() local
79 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &key, &key_len) == FAILURE) { in PHP_METHOD()
99 int key_len, val_len; in PHP_METHOD() local
103 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss", &key, &key_len, &val, &val_len) == FAIL… in PHP_METHOD()
116 int key_len; in PHP_METHOD() local
120 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &key, &key_len) == FAILURE) { in PHP_METHOD()
H A Dmod_files.c107 size_t key_len; in ps_files_path_create() local
112 key_len = strlen(key); in ps_files_path_create()
113 if (key_len <= data->dirdepth || in ps_files_path_create()
114 buflen < (strlen(data->basedir) + 2 * data->dirdepth + key_len + 5 + sizeof(FILE_PREFIX))) { in ps_files_path_create()
128 memcpy(buf + n, key, key_len); in ps_files_path_create()
129 n += key_len; in ps_files_path_create()
/PHP-5.4/ext/mcrypt/
H A Dmcrypt.c586 int key_len, iv_len; in PHP_FUNCTION() local
602 if (key_len == 0) { in PHP_FUNCTION()
606 key_s = emalloc(key_len); in PHP_FUNCTION()
607 memset(key_s, 0, key_len); in PHP_FUNCTION()
612 if (key_len > max_key_size) { in PHP_FUNCTION()
616 key_size = key_len; in PHP_FUNCTION()
618 memcpy(key_s, key, key_len); in PHP_FUNCTION()
1192 if (key_len > max_key_length) { in php_mcrypt_do_crypt()
1197 use_key_length = key_len; in php_mcrypt_do_crypt()
1209 if (key_length_sizes[i] >= key_len && in php_mcrypt_do_crypt()
[all …]
H A Dmcrypt_filter.c154 int encrypt = 1, iv_len, key_len, keyl, result; in php_mcrypt_filter_create() local
204 key_len = Z_STRLEN_PP(tmpzval); in php_mcrypt_filter_create()
217 if (keyl < key_len) { in php_mcrypt_filter_create()
218 key_len = keyl; in php_mcrypt_filter_create()
236 result = mcrypt_generic_init(mcrypt_module, key, key_len, iv); in php_mcrypt_filter_create()
/PHP-5.4/main/
H A Dphp_ini.c283 uint key_len; in php_ini_parser_cb() local
289 key_len = Z_STRLEN_P(arg1) - sizeof("PATH") + 1; in php_ini_parser_cb()
300 key_len = Z_STRLEN_P(arg1) - sizeof("HOST") + 1; in php_ini_parser_cb()
303 zend_str_tolower(key, key_len); /* host names are case-insensitive. */ in php_ini_parser_cb()
309 if (key && key_len > 0) { in php_ini_parser_cb()
311 while (key_len > 0 && (key[key_len - 1] == '/' || key[key_len - 1] == '\\')) { in php_ini_parser_cb()
312 key_len--; in php_ini_parser_cb()
313 key[key_len] = 0; in php_ini_parser_cb()
323 key_len--; in php_ini_parser_cb()
327 if (zend_hash_find(target_hash, key, key_len + 1, (void **) &entry) == FAILURE) { in php_ini_parser_cb()
[all …]
/PHP-5.4/ext/intl/collator/
H A Dcollator_sort.c552 int key_len = 0; in PHP_FUNCTION() local
599 key_len = ucol_getSortKey(co->ucoll, ustr, ustr_len, key, 0); in PHP_FUNCTION()
600 if(!key_len) { in PHP_FUNCTION()
604 key = emalloc(key_len); in PHP_FUNCTION()
605 key_len = ucol_getSortKey(co->ucoll, ustr, ustr_len, key, key_len); in PHP_FUNCTION()
607 if(!key_len) { in PHP_FUNCTION()
610 RETURN_STRINGL((char *)key, key_len - 1, 0); in PHP_FUNCTION()
/PHP-5.4/ext/dba/
H A Ddba.c247 size_t key_len; \
251 if ((key_len = php_dba_make_key(key, &key_str, &key_free TSRMLS_CC)) == 0) {\
258 size_t key_len; \
274 if ((key_len = php_dba_make_key(key, &key_str, &key_free TSRMLS_CC)) == 0) {\
561 size_t key_len; in php_dba_update() local
567 if ((key_len = php_dba_make_key(key, &key_str, &key_free TSRMLS_CC)) == 0) { in php_dba_update()
994 if(info->hnd->exists(info, key_str, key_len TSRMLS_CC) == SUCCESS) { in PHP_FUNCTION()
1050 int key_len; in PHP_FUNCTION() local
1066 add_next_index_stringl(return_value, name+1, key_len - (name - key + 1), 1); in PHP_FUNCTION()
1069 add_next_index_stringl(return_value, key, key_len, 1); in PHP_FUNCTION()
[all …]
/PHP-5.4/ext/phar/
H A Dstream.c915 uint key_len, new_key_len; in phar_wrapper_rename() local
928 key_len > from_len && in phar_wrapper_rename()
932 new_key_len = key_len + to_len - from_len; in phar_wrapper_rename()
935 memcpy(new_str_key + to_len, str_key + from_len, key_len - from_len); in phar_wrapper_rename()
960 if (key_len >= from_len && in phar_wrapper_rename()
962 (key_len == from_len || IS_SLASH(str_key[from_len]))) { in phar_wrapper_rename()
964 new_key_len = key_len + to_len - from_len; in phar_wrapper_rename()
967 memcpy(new_str_key + to_len, str_key + from_len, key_len - from_len); in phar_wrapper_rename()
988 if (key_len >= from_len && in phar_wrapper_rename()
990 (key_len == from_len || IS_SLASH(str_key[from_len]))) { in phar_wrapper_rename()
[all …]
H A Ddirstream.c573 uint key_len; in phar_wrapper_rmdir() local
636 …HASH_KEY_NON_EXISTANT != zend_hash_get_current_key_ex(&phar->manifest, &key, &key_len, &unused, 0,… in phar_wrapper_rmdir()
641 if (key_len > path_len && in phar_wrapper_rmdir()
657 …HASH_KEY_NON_EXISTANT != zend_hash_get_current_key_ex(&phar->virtual_dirs, &key, &key_len, &unused… in phar_wrapper_rmdir()
662 if (key_len > path_len && in phar_wrapper_rmdir()
/PHP-5.4/Zend/
H A Dzend_API.h374 ZEND_API int add_assoc_long_ex(zval *arg, const char *key, uint key_len, long n);
375 ZEND_API int add_assoc_null_ex(zval *arg, const char *key, uint key_len);
376 ZEND_API int add_assoc_bool_ex(zval *arg, const char *key, uint key_len, int b);
377 ZEND_API int add_assoc_resource_ex(zval *arg, const char *key, uint key_len, int r);
378 ZEND_API int add_assoc_double_ex(zval *arg, const char *key, uint key_len, double d);
381 ZEND_API int add_assoc_zval_ex(zval *arg, const char *key, uint key_len, zval *value);
427 ZEND_API int add_property_long_ex(zval *arg, const char *key, uint key_len, long l TSRMLS_DC);
428 ZEND_API int add_property_null_ex(zval *arg, const char *key, uint key_len TSRMLS_DC);
429 ZEND_API int add_property_bool_ex(zval *arg, const char *key, uint key_len, int b TSRMLS_DC);
430 ZEND_API int add_property_resource_ex(zval *arg, const char *key, uint key_len, long r TSRMLS_DC);
[all …]
H A Dzend_API.c1196 ZEND_API int add_assoc_long_ex(zval *arg, const char *key, uint key_len, long n) /* {{{ */ in add_assoc_long_ex() argument
1207 ZEND_API int add_assoc_null_ex(zval *arg, const char *key, uint key_len) /* {{{ */ in add_assoc_null_ex() argument
1218 ZEND_API int add_assoc_bool_ex(zval *arg, const char *key, uint key_len, int b) /* {{{ */ in add_assoc_bool_ex() argument
1520 ZVAL_STRINGL(z_key, key, key_len-1, 1); in add_property_long_ex()
1538 ZVAL_STRINGL(z_key, key, key_len-1, 1); in add_property_bool_ex()
1556 ZVAL_STRINGL(z_key, key, key_len-1, 1); in add_property_null_ex()
1574 ZVAL_STRINGL(z_key, key, key_len-1, 1); in add_property_resource_ex()
1592 ZVAL_STRINGL(z_key, key, key_len-1, 1); in add_property_double_ex()
1610 ZVAL_STRINGL(z_key, key, key_len-1, 1); in add_property_string_ex()
1628 ZVAL_STRINGL(z_key, key, key_len-1, 1); in add_property_stringl_ex()
[all …]
H A Dzend_builtin_functions.c910 uint key_len; in add_class_vars() local
915 zend_hash_get_current_key_ex(&ce->properties_info, &key, &key_len, &num_index, 0, &pos); in add_class_vars()
990 uint key_len; in ZEND_FUNCTION() local
1015 …if (zend_hash_get_current_key_ex(properties, &key, &key_len, &num_index, 0, &pos) == HASH_KEY_IS_S… in ZEND_FUNCTION()
1016 if (zend_check_property_access(zobj, key, key_len-1 TSRMLS_CC) == SUCCESS) { in ZEND_FUNCTION()
1017 zend_unmangle_property_name(key, key_len-1, &class_name, &prop_name); in ZEND_FUNCTION()
1077 uint key_len; in ZEND_FUNCTION() local
1082 …if (zend_hash_get_current_key_ex(&ce->function_table, &key, &key_len, &num_index, 0, &pos) != HASH… in ZEND_FUNCTION()
1088 zend_binary_strcasecmp(key, key_len-1, mptr->common.function_name, len) == 0) { in ZEND_FUNCTION()
1092 (len != key_len - 1 || in ZEND_FUNCTION()
[all …]
/PHP-5.4/ext/hash/
H A Dhash.c209 int algo_len, data_len, key_len, i; in php_hash_do_hash_hmac() local
216 &key, &key_len, &raw_output) == FAILURE) { in php_hash_do_hash_hmac()
243 if (key_len > ops->block_size) { in php_hash_do_hash_hmac()
245 ops->hash_update(context, (unsigned char *) key, key_len); in php_hash_do_hash_hmac()
250 memcpy(K, key, key_len); in php_hash_do_hash_hmac()
328 int algo_len, key_len = 0, argc = ZEND_NUM_ARGS(); in PHP_FUNCTION() local
334 …if (zend_parse_parameters(argc TSRMLS_CC, "s|ls", &algo, &algo_len, &options, &key, &key_len) == F… in PHP_FUNCTION()
345 key_len <= 0) { in PHP_FUNCTION()
366 if (key_len > ops->block_size) { in PHP_FUNCTION()
368 ops->hash_update(context, (unsigned char *) key, key_len); in PHP_FUNCTION()
[all …]
/PHP-5.4/ext/soap/
H A Dphp_sdl.c1803 uint key_len; in sdl_serialize_key() local
1807 WSDL_CACHE_PUT_INT(key_len, out); in sdl_serialize_key()
1808 WSDL_CACHE_PUT_N(key, key_len, out); in sdl_serialize_key()
2447 uint key_len; in make_persistent_sdl_function_headers() local
2515 uint key_len; in make_persistent_sdl_parameters() local
2562 uint key_len; in make_persistent_sdl_function_faults() local
2611 uint key_len; in make_persistent_sdl_attribute() local
2723 uint key_len; in make_persistent_sdl_type() local
2957 uint key_len; in make_persistent_sdl() local
3380 uint key_len; in get_sdl() local
[all …]
H A Dsoap.c1416 int key_len; in PHP_METHOD() local
1424 key_len = Z_STRLEN_PP(tmp_function); in PHP_METHOD()
1425 key = emalloc(key_len + 1); in PHP_METHOD()
1426 zend_str_tolower_copy(key, Z_STRVAL_PP(tmp_function), key_len); in PHP_METHOD()
1428 if (zend_hash_find(EG(function_table), key, key_len+1, (void**)&f) == FAILURE) { in PHP_METHOD()
1443 int key_len; in PHP_METHOD() local
1446 key_len = Z_STRLEN_P(function_name); in PHP_METHOD()
1447 key = emalloc(key_len + 1); in PHP_METHOD()
1448 zend_str_tolower_copy(key, Z_STRVAL_P(function_name), key_len); in PHP_METHOD()
1450 if (zend_hash_find(EG(function_table), key, key_len+1, (void**)&f) == FAILURE) { in PHP_METHOD()
[all …]
/PHP-5.4/ext/wddx/
H A Dwddx.c507 uint key_len; in php_wddx_serialize_object() local
531 if (zend_hash_get_current_key_ex(objhash, &key, &key_len, &idx, 0, NULL) == HASH_KEY_IS_STRING) { in php_wddx_serialize_object()
534 zend_unmangle_property_name(key, key_len-1, &class_name, &prop_name); in php_wddx_serialize_object()
537 key_len = slprintf(tmp_buf, sizeof(tmp_buf), "%ld", idx); in php_wddx_serialize_object()
538 php_wddx_serialize_var(packet, *ent, tmp_buf, key_len TSRMLS_CC); in php_wddx_serialize_object()
559 uint key_len; in php_wddx_serialize_array() local
604 ent_type = zend_hash_get_current_key_ex(target_hash, &key, &key_len, &idx, 0, NULL); in php_wddx_serialize_array()
607 php_wddx_serialize_var(packet, *ent, key, key_len TSRMLS_CC); in php_wddx_serialize_array()
609 key_len = slprintf(tmp_buf, sizeof(tmp_buf), "%ld", idx); in php_wddx_serialize_array()
610 php_wddx_serialize_var(packet, *ent, tmp_buf, key_len TSRMLS_CC); in php_wddx_serialize_array()
/PHP-5.4/ext/json/
H A Djson.c170 uint key_len; in json_determine_array_type() local
176 i = zend_hash_get_current_key_ex(myht, &key, &key_len, &index, 0, &pos); in json_determine_array_type()
254 uint key_len; in json_encode_array() local
260 i = zend_hash_get_current_key_ex(myht, &key, &key_len, &index, 0, &pos); in json_encode_array()
299 json_escape_string(buf, key, key_len - 1, options & ~PHP_JSON_NUMERIC_CHECK TSRMLS_CC); in json_encode_array()
/PHP-5.4/ext/reflection/
H A Dphp_reflection.c438 uint key_len; in _class_string() local
444 zend_hash_get_current_key_ex(&ce->constants_table, &key, &key_len, &num_index, 0, &pos); in _class_string()
608 uint key_len; in _class_string() local
615 …|| zend_hash_get_current_key_ex(&ce->function_table, &key, &key_len, &num_index, 0, &pos) != HASH_… in _class_string()
616 || zend_binary_strcasecmp(key, key_len-1, mptr->common.function_name, len) == 0) in _class_string()
793 uint key_len; in _function_closure_string() local
813 zend_hash_get_current_key_ex(static_variables, &key, &key_len, &num_index, 0, &pos); in _function_closure_string()
3344 uint key_len; in add_class_vars() local
3349 zend_hash_get_current_key_ex(&ce->properties_info, &key, &key_len, &num_index, 0, &pos); in add_class_vars()

Completed in 139 milliseconds

12