Lines Matching refs:encodePtr

49 encodePtr get_encoder_from_prefix(sdlPtr sdl, xmlNodePtr node, const xmlChar *type)  in get_encoder_from_prefix()
51 encodePtr enc = NULL; in get_encoder_from_prefix()
110 encodePtr get_encoder(sdlPtr sdl, const char *ns, const char *type) in get_encoder()
112 encodePtr enc = NULL; in get_encoder()
146 encodePtr new_enc = pemalloc(sizeof(encode), sdl->is_persistent); in get_encoder()
159 zend_hash_update(sdl->encoders, nscat, len + 1, &new_enc, sizeof(encodePtr), NULL); in get_encoder()
167 encodePtr get_encoder_ex(sdlPtr sdl, const char *nscat, int len) in get_encoder_ex()
169 encodePtr *enc; in get_encoder_ex()
1229 static void sdl_deserialize_attribute(sdlAttributePtr attr, encodePtr *encoders, char **in) in sdl_deserialize_attribute()
1322 static void sdl_deserialize_type(sdlTypePtr type, sdlTypePtr *types, encodePtr *encoders, char **in) in sdl_deserialize_type()
1410 static void sdl_deserialize_encoder(encodePtr enc, sdlTypePtr *types, char **in) in sdl_deserialize_encoder()
1433 encodePtr real_enc; in sdl_deserialize_encoder()
1453 static void sdl_deserialize_soap_body(sdlSoapBindingFunctionBodyPtr body, encodePtr *encoders, sdlT… in sdl_deserialize_soap_body()
1512 static HashTable* sdl_deserialize_parameters(encodePtr *encoders, sdlTypePtr *types, char **in) in sdl_deserialize_parameters()
1543 encodePtr *encoders; in get_sdl_from_cache()
1544 encodePtr enc; in get_sdl_from_cache()
1614 encoders = safe_emalloc((i+1), sizeof(encodePtr), 0); in get_sdl_from_cache()
1816 static void sdl_serialize_encoder_ref(encodePtr enc, HashTable *tmp_encoders, smart_str *out) { in sdl_serialize_encoder_ref()
2024 static void sdl_serialize_encoder(encodePtr enc, HashTable *tmp_types, smart_str *out) in sdl_serialize_encoder()
2120 encodePtr enc; in add_sdl_to_cache()
2205 encodePtr *tmp; in add_sdl_to_cache()
2216 …zend_hash_add(&tmp_encoders, (char*)&enc, sizeof(encodePtr), (void**)&encoder_num, sizeof(encoder_… in add_sdl_to_cache()
2252 encodePtr *tmp; in add_sdl_to_cache()
2424 static void make_persistent_sdl_encoder_ref(encodePtr *enc, HashTable *ptr_map, HashTable *bp_encod… in make_persistent_sdl_encoder_ref()
2426 encodePtr *tmp; in make_persistent_sdl_encoder_ref()
2433 if (zend_hash_find(ptr_map, (char *)enc, sizeof(encodePtr), (void**)&tmp) == SUCCESS) { in make_persistent_sdl_encoder_ref()
2436 zend_hash_next_index_insert(bp_encoders, (void*)&enc, sizeof(encodePtr*), NULL); in make_persistent_sdl_encoder_ref()
2445 encodePtr *penc; in make_persistent_sdl_function_headers()
2468 …if (zend_hash_find(ptr_map, (char*)&pheader->encode, sizeof(encodePtr), (void**)&penc) == FAILURE)… in make_persistent_sdl_function_headers()
2514 encodePtr *penc; in make_persistent_sdl_parameters()
2533 …if (zend_hash_find(ptr_map, (char*)&pparam->encode, sizeof(encodePtr), (void**)&penc) == FAILURE) { in make_persistent_sdl_parameters()
2846 static encodePtr make_persistent_sdl_encoder(encodePtr enc, HashTable *ptr_map, HashTable *bp_types… in make_persistent_sdl_encoder()
2848 encodePtr penc = NULL; in make_persistent_sdl_encoder()
3036 encodePtr *tmp; in make_persistent_sdl()
3037 encodePtr penc; in make_persistent_sdl()
3046 zend_hash_add(psdl->encoders, key, key_len, (void*)&penc, sizeof(encodePtr), NULL); in make_persistent_sdl()
3048 zend_hash_next_index_insert(psdl->encoders, (void*)&penc, sizeof(encodePtr), NULL); in make_persistent_sdl()
3050 zend_hash_add(&ptr_map, (char*)tmp, sizeof(*tmp), (void*)&penc, sizeof(encodePtr), NULL); in make_persistent_sdl()
3069 encodePtr **tmp, *penc = NULL; in make_persistent_sdl()