Lines Matching refs:typemap
665 soap_globals->typemap = NULL; in php_soap_init_globals()
691 SOAP_GLOBAL(typemap) = NULL; in PHP_RINIT_FUNCTION()
1102 HashTable *typemap = NULL; in soap_create_typemap() local
1194 if (!typemap) { in soap_create_typemap()
1195 typemap = emalloc(sizeof(HashTable)); in soap_create_typemap()
1196 zend_hash_init(typemap, 0, NULL, delete_encoder, 0); in soap_create_typemap()
1205 zend_hash_update(typemap, nscat.c, nscat.len + 1, &new_enc, sizeof(encodePtr), NULL); in soap_create_typemap()
1210 return typemap; in soap_create_typemap()
1331 service->typemap = soap_create_typemap(service->sdl, typemap_ht TSRMLS_CC); in PHP_METHOD()
1763 old_typemap = SOAP_GLOBAL(typemap);
1764 SOAP_GLOBAL(typemap) = service->typemap;
2119 SOAP_GLOBAL(typemap) = old_typemap;
2715 HashTable *typemap = soap_create_typemap(sdl, typemap_ht TSRMLS_CC); local
2716 if (typemap) {
2719 ret = zend_list_insert(typemap, le_typemap);
2821 HashTable *old_typemap, *typemap = NULL; local
2848 FETCH_TYPEMAP_RES(typemap,tmp);
2870 old_typemap = SOAP_GLOBAL(typemap);
2871 SOAP_GLOBAL(typemap) = typemap;
2994 SOAP_GLOBAL(typemap) = old_typemap;
5040 if (service->typemap) {
5041 zend_hash_destroy(service->typemap);
5042 efree(service->typemap);