Searched refs:nscat (Results 1 - 5 of 5) sorted by relevance
| /PHP_TRUNK/ext/soap/ |
| H A D | php_schema.c | 51 smart_str nscat = {0}; local 58 smart_str_appends(&nscat, (char*)ns); 59 smart_str_appendc(&nscat, ':'); 60 smart_str_appends(&nscat, (char*)type); 61 smart_str_0(&nscat); 62 if (zend_hash_find(sdl->encoders, nscat.c, nscat.len + 1, (void**)&enc_ptr) == SUCCESS) { 83 zend_hash_update(sdl->encoders, nscat.c, nscat.len + 1, &enc, sizeof(encodePtr), NULL); 85 smart_str_free(&nscat); 1503 smart_str nscat = {0}; local [all...] |
| H A D | php_sdl.c | 85 char *nscat = emalloc(len + 1); local 87 memcpy(nscat, nsptr->href, ns_len); 88 nscat[ns_len] = ':'; 89 memcpy(nscat+ns_len+1, cptype, type_len); 90 nscat[len] = '\0'; 92 if (zend_hash_find(sdl->elements, nscat, len + 1, (void **)&sdl_type) == SUCCESS) { 97 efree(nscat); 113 char *nscat; local 118 nscat = emalloc(len + 1); 119 memcpy(nscat, n 167 get_encoder_ex(sdlPtr sdl, const char *nscat, int len) argument [all...] |
| H A D | php_sdl.h | 261 encodePtr get_encoder_ex(sdlPtr sdl, const char *nscat, int len);
|
| H A D | php_encoding.c | 420 smart_str nscat = {0}; local 423 smart_str_appendl(&nscat, Z_STRVAL_PP(zns), Z_STRLEN_PP(zns)); 424 smart_str_appendc(&nscat, ':'); 426 smart_str_appendl(&nscat, Z_STRVAL_PP(zstype), Z_STRLEN_PP(zstype)); 427 smart_str_0(&nscat); 428 if (zend_hash_find(SOAP_GLOBAL(typemap), nscat.c, nscat.len + 1, (void**)&new_enc) == SUCCESS) { 431 smart_str_free(&nscat); 506 smart_str nscat = {0}; local 510 smart_str_appends(&nscat, encod 541 smart_str nscat = {0}; local 561 smart_str nscat = {0}; local 3196 smart_str nscat = {0}; local [all...] |
| H A D | soap.c | 1034 smart_str nscat = {0}; local 1084 smart_str_appends(&nscat, type_ns); 1085 smart_str_appendc(&nscat, ':'); 1087 smart_str_appends(&nscat, type_name); 1088 smart_str_0(&nscat); 1089 zend_hash_update(typemap, nscat.c, nscat.len + 1, &new_enc, sizeof(encodePtr), NULL); 1090 smart_str_free(&nscat);
|
Completed in 22 milliseconds