Lines Matching refs:key_len

1803 	uint  key_len;  in sdl_serialize_key()  local
1806 if (zend_hash_get_current_key_ex(ht, &key, &key_len, &index, 0, NULL) == HASH_KEY_IS_STRING) { in sdl_serialize_key()
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
2482 …if (zend_hash_get_current_key_ex(headers, &key, &key_len, &index, 0, NULL) == HASH_KEY_IS_STRING) { in make_persistent_sdl_function_headers()
2483 …zend_hash_add(pheaders, key, key_len, (void*)&pheader, sizeof(sdlSoapBindingFunctionHeaderPtr), NU… in make_persistent_sdl_function_headers()
2515 uint key_len; in make_persistent_sdl_parameters() local
2543 if (zend_hash_get_current_key_ex(params, &key, &key_len, &index, 0, NULL) == HASH_KEY_IS_STRING) { in make_persistent_sdl_parameters()
2544 zend_hash_add(pparams, key, key_len, (void*)&pparam, sizeof(sdlParamPtr), NULL); in make_persistent_sdl_parameters()
2562 uint key_len; in make_persistent_sdl_function_faults() local
2592 if (zend_hash_get_current_key_ex(faults, &key, &key_len, &index, 0, NULL) == HASH_KEY_IS_STRING) { in make_persistent_sdl_function_faults()
2593 zend_hash_add(pfaults, key, key_len, (void*)&pfault, sizeof(sdlParamPtr), NULL); in make_persistent_sdl_function_faults()
2611 uint key_len; in make_persistent_sdl_attribute() local
2647 …if (zend_hash_get_current_key_ex(attr->extraAttributes, &key, &key_len, &index, 0, NULL) == HASH_K… in make_persistent_sdl_attribute()
2658 …zend_hash_add(pattr->extraAttributes, key, key_len, (void*)&pextra, sizeof(sdlExtraAttributePtr), … in make_persistent_sdl_attribute()
2723 uint key_len; in make_persistent_sdl_type() local
2809 …if (zend_hash_get_current_key_ex(type->elements, &key, &key_len, &index, 0, NULL) == HASH_KEY_IS_S… in make_persistent_sdl_type()
2810 zend_hash_add(ptype->elements, key, key_len, (void*)&pelem, sizeof(sdlTypePtr), NULL); in make_persistent_sdl_type()
2828 …if (zend_hash_get_current_key_ex(type->attributes, &key, &key_len, &index, 0, NULL) == HASH_KEY_IS… in make_persistent_sdl_type()
2829 zend_hash_add(ptype->attributes, key, key_len, (void*)&pattr, sizeof(sdlAttributePtr), NULL); in make_persistent_sdl_type()
2957 uint key_len; in make_persistent_sdl() local
2983 …if (zend_hash_get_current_key_ex(sdl->groups, &key, &key_len, &index, 0, NULL) == HASH_KEY_IS_STRI… in make_persistent_sdl()
2984 zend_hash_add(psdl->groups, key, key_len, (void*)&ptype, sizeof(sdlTypePtr), NULL); in make_persistent_sdl()
3003 …if (zend_hash_get_current_key_ex(sdl->types, &key, &key_len, &index, 0, NULL) == HASH_KEY_IS_STRIN… in make_persistent_sdl()
3004 zend_hash_add(psdl->types, key, key_len, (void*)&ptype, sizeof(sdlTypePtr), NULL); in make_persistent_sdl()
3023 …if (zend_hash_get_current_key_ex(sdl->elements, &key, &key_len, &index, 0, NULL) == HASH_KEY_IS_ST… in make_persistent_sdl()
3024 zend_hash_add(psdl->elements, key, key_len, (void*)&ptype, sizeof(sdlTypePtr), NULL); in make_persistent_sdl()
3043 …if (zend_hash_get_current_key_ex(sdl->encoders, &key, &key_len, &index, 0, NULL) == HASH_KEY_IS_ST… in make_persistent_sdl()
3044 zend_hash_add(psdl->encoders, key, key_len, (void*)&penc, sizeof(encodePtr), NULL); in make_persistent_sdl()
3090 …if (zend_hash_get_current_key_ex(sdl->bindings, &key, &key_len, &index, 0, NULL) == HASH_KEY_IS_ST… in make_persistent_sdl()
3091 zend_hash_add(psdl->bindings, key, key_len, (void*)&pbind, sizeof(sdlBindingPtr), NULL); in make_persistent_sdl()
3108 …if (zend_hash_get_current_key_ex(&sdl->functions, &key, &key_len, &index, 0, NULL) == HASH_KEY_IS_… in make_persistent_sdl()
3109 zend_hash_add(&psdl->functions, key, key_len, (void*)&pfunc, sizeof(sdlFunctionPtr), NULL); in make_persistent_sdl()
3131 …if (zend_hash_get_current_key_ex(sdl->requests, &key, &key_len, &index, 0, NULL) == HASH_KEY_IS_ST… in make_persistent_sdl()
3132 zend_hash_add(psdl->requests, key, key_len, (void*)&preq, sizeof(sdlFunctionPtr), NULL); in make_persistent_sdl()
3380 uint key_len; in get_sdl() local
3388 zend_hash_get_current_key_ex(SOAP_GLOBAL(mem_cache), &key, &key_len, &idx, 0, &pos); in get_sdl()
3392 zend_hash_del(SOAP_GLOBAL(mem_cache), key, key_len); in get_sdl()