Home
last modified time | relevance | path

Searched refs:key_len (Results 1 – 25 of 37) sorted by last modified time

12

/PHP-5.5/sapi/cli/
H A Dphp_cli_server.c485 uint key_len; in PHP_FUNCTION() local
500 zend_hash_get_current_key_ex(headers, &key, &key_len, NULL, 0, &pos); in PHP_FUNCTION()
501 add_assoc_string_ex(return_value, key, key_len, *value_pointer, 1); in PHP_FUNCTION()
/PHP-5.5/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.5/ext/zip/
H A Dphp_zip.c1034 uint key_len; in php_zip_get_properties() local
1047 zend_hash_get_current_key_ex(obj->prop_handler, &key, &key_len, &num_key, 0, &pos); in php_zip_get_properties()
1053 zend_hash_update(props, key, key_len, (void *)&val, sizeof(zval *), NULL); in php_zip_get_properties()
/PHP-5.5/ext/wddx/
H A Dwddx.c510 uint key_len; in php_wddx_serialize_object() local
534 if (zend_hash_get_current_key_ex(objhash, &key, &key_len, &idx, 0, NULL) == HASH_KEY_IS_STRING) { in php_wddx_serialize_object()
537 zend_unmangle_property_name(key, key_len-1, &class_name, &prop_name); in php_wddx_serialize_object()
540 key_len = slprintf(tmp_buf, sizeof(tmp_buf), "%ld", idx); in php_wddx_serialize_object()
541 php_wddx_serialize_var(packet, *ent, tmp_buf, key_len TSRMLS_CC); in php_wddx_serialize_object()
562 uint key_len; in php_wddx_serialize_array() local
607 ent_type = zend_hash_get_current_key_ex(target_hash, &key, &key_len, &idx, 0, NULL); in php_wddx_serialize_array()
610 php_wddx_serialize_var(packet, *ent, key, key_len TSRMLS_CC); in php_wddx_serialize_array()
612 key_len = slprintf(tmp_buf, sizeof(tmp_buf), "%ld", idx); in php_wddx_serialize_array()
613 php_wddx_serialize_var(packet, *ent, tmp_buf, key_len TSRMLS_CC); in php_wddx_serialize_array()
/PHP-5.5/ext/standard/
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 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 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 TSRMLS_CC) != SUCCESS) { in php_url_encode_hash_ex()
76 zend_unmangle_property_name_ex(key, key_len, &tmp, (const char**)&key, &key_len); in php_url_encode_hash_ex()
86 ekey = php_raw_url_encode(key, key_len, &ekey_len); in php_url_encode_hash_ex()
88 ekey = php_url_encode(key, key_len, &ekey_len); in php_url_encode_hash_ex()
154 ekey = php_raw_url_encode(key, key_len, &ekey_len); in php_url_encode_hash_ex()
156 ekey = php_url_encode(key, key_len, &ekey_len); in php_url_encode_hash_ex()
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 Dbasic_functions.c3447 if (!strncmp(*env, pe->key, pe->key_len) && (*env)[pe->key_len] == '=') { /* found it */ in php_putenv_destructor()
3457 if (!strncmp(pe->key, "TZ", pe->key_len)) { in php_putenv_destructor()
4109 pe.key_len = strlen(pe.key);
4112 if (pe.key_len < setting_len - 1) {
4121 zend_hash_del(&BG(putenv_ht), pe.key, pe.key_len+1);
4126 if (!strncmp(*env, pe.key, pe.key_len) && (*env)[pe.key_len] == '=') { /* found it */
4160 zend_hash_add(&BG(putenv_ht), pe.key, pe.key_len + 1, (void **) &pe, sizeof(putenv_entry), NULL);
4162 if (!strncmp(pe.key, "TZ", pe.key_len)) {
H A Dbasic_functions.h248 int key_len; member
H A Darray.c1940 uint key_len = 0; in _phpi_pop() local
1961 zend_hash_get_current_key_ex(Z_ARRVAL_P(stack), &key, &key_len, &index, 0, NULL); in _phpi_pop()
1963 zend_delete_global_variable(key, key_len - 1 TSRMLS_CC); in _phpi_pop()
1965 …zend_hash_del_key_or_index(Z_ARRVAL_P(stack), key, key_len, index, (key) ? HASH_DEL_KEY : HASH_DEL… in _phpi_pop()
1988 …} else if (!key_len && Z_ARRVAL_P(stack)->nNextFreeElement > 0 && index >= Z_ARRVAL_P(stack)->nNex… in _phpi_pop()
/PHP-5.5/ext/sockets/
H A Dsockets.c801 uint key_len; local
816 … switch (zend_hash_get_current_key_ex(Z_ARRVAL_P(sock_array), &key, &key_len, &num_key, 0, NULL)) {
818 zend_hash_add(new_hash, key, key_len, (void *)element, sizeof(zval *), (void **)&dest_element);
/PHP-5.5/ext/soap/
H A Dsoap.c1422 int key_len; in PHP_METHOD() local
1430 key_len = Z_STRLEN_PP(tmp_function); in PHP_METHOD()
1431 key = emalloc(key_len + 1); in PHP_METHOD()
1432 zend_str_tolower_copy(key, Z_STRVAL_PP(tmp_function), key_len); in PHP_METHOD()
1434 if (zend_hash_find(EG(function_table), key, key_len+1, (void**)&f) == FAILURE) { in PHP_METHOD()
1449 int key_len; in PHP_METHOD() local
1452 key_len = Z_STRLEN_P(function_name); in PHP_METHOD()
1453 key = emalloc(key_len + 1); in PHP_METHOD()
1454 zend_str_tolower_copy(key, Z_STRVAL_P(function_name), key_len); in PHP_METHOD()
1456 if (zend_hash_find(EG(function_table), key, key_len+1, (void**)&f) == FAILURE) { in PHP_METHOD()
[all …]
H A Dphp_schema.c2144 uint key_len; in schema_attributegroup_fixup() local
2163 zend_hash_get_current_key_ex((*tmp)->attributes, &key, &key_len, NULL, 0, NULL); in schema_attributegroup_fixup()
2164 zend_hash_add(ht, key, key_len, &newAttr, sizeof(sdlAttributePtr), NULL); in schema_attributegroup_fixup()
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 …]
/PHP-5.5/ext/snmp/
H A Dsnmp.c2115 uint key_len; in php_snmp_get_properties() local
2125 zend_hash_get_current_key_ex(&php_snmp_properties, &key, &key_len, &num_key, 0, &pos); in php_snmp_get_properties()
2130 zend_hash_update(props, key, key_len, (void *)&val, sizeof(zval *), NULL); in php_snmp_get_properties()
/PHP-5.5/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.c76 size_t key_len; in ps_files_path_create() local
81 key_len = strlen(key); in ps_files_path_create()
82 if (key_len <= data->dirdepth || in ps_files_path_create()
83 buflen < (strlen(data->basedir) + 2 * data->dirdepth + key_len + 5 + sizeof(FILE_PREFIX))) { in ps_files_path_create()
97 memcpy(buf + n, key, key_len); in ps_files_path_create()
98 n += key_len; in ps_files_path_create()
/PHP-5.5/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()
3355 uint key_len; in add_class_vars() local
3360 zend_hash_get_current_key_ex(&ce->properties_info, &key, &key_len, &num_index, 0, &pos); in add_class_vars()
/PHP-5.5/ext/phar/
H A Dutil.c41 …penssl_signverify(int is_sign, php_stream *fp, off_t end, char *key, int key_len, char **signature…
1414 …penssl_signverify(int is_sign, php_stream *fp, off_t end, char *key, int key_len, char **signature… in phar_call_openssl_signverify() argument
1426 ZVAL_STRINGL(zkey, key, key_len, 1); in phar_call_openssl_signverify()
H A Dphar_object.c3033 int key_len = 0; in PHP_METHOD() local
3043 …_ex(ZEND_PARSE_PARAMS_QUIET, ZEND_NUM_ARGS() TSRMLS_CC, "l|s", &algo, &key, &key_len) != SUCCESS) { in PHP_METHOD()
3065 PHAR_G(openssl_privatekey_len) = key_len; in PHP_METHOD()
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()
956 if (key_len >= from_len && in phar_wrapper_rename()
958 (key_len == from_len || IS_SLASH(str_key[from_len]))) { in phar_wrapper_rename()
960 new_key_len = key_len + to_len - from_len; in phar_wrapper_rename()
963 memcpy(new_str_key + to_len, str_key + from_len, key_len - from_len); in phar_wrapper_rename()
980 if (key_len >= from_len && in phar_wrapper_rename()
982 (key_len == from_len || IS_SLASH(str_key[from_len]))) { in phar_wrapper_rename()
[all …]
H A Ddirstream.c574 uint key_len; in phar_wrapper_rmdir() local
637 …HASH_KEY_NON_EXISTENT != zend_hash_get_current_key_ex(&phar->manifest, &key, &key_len, &unused, 0,… in phar_wrapper_rmdir()
642 if (key_len > path_len && in phar_wrapper_rmdir()
658 …HASH_KEY_NON_EXISTENT != zend_hash_get_current_key_ex(&phar->virtual_dirs, &key, &key_len, &unused… in phar_wrapper_rmdir()
663 if (key_len > path_len && in phar_wrapper_rmdir()
/PHP-5.5/ext/opcache/
H A DZendAccelerator.c943 ZCG(key_len) = 0; in accel_make_persistent_key_ex()
1012 ZCG(key_len) = 0; in accel_make_persistent_key_ex()
1036 ZCG(key_len) = 0; in accel_make_persistent_key_ex()
1042 *key_len = ZCG(key_len) = key_length; in accel_make_persistent_key_ex()
1046 static inline char *accel_make_persistent_key(zend_file_handle *file_handle, int *key_len TSRMLS_DC) in accel_make_persistent_key()
1297 key_length = ZCG(key_len); in compile_and_cache_file()
1496 if (!ZCG(key_len)) {
1503 key_length = ZCG(key_len);
1839 ZCG(key_len) = persistent_script->full_path_len;
1947 ZCG(key_len) = persistent_script->full_path_len;
[all …]

Completed in 201 milliseconds

12