| /PHP_5_5/ext/dom/ |
| H A D | document.c | 1236 char *uri, *name, *value = NULL; local 1241 if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Os!s|s", &id, dom_document_class_entry, &uri, &uri_len, &name, &name_len, &value, &value_len) == FAILURE) { 1252 if (nodep != NULL && uri != NULL) { 1253 nsptr = xmlSearchNsByHref (nodep->doc, nodep, uri); 1255 nsptr = dom_get_ns(nodep, uri, &errorcode, prefix); 1299 char *uri, *name; local 1304 if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Os!s", &id, dom_document_class_entry, &uri, &uri_len, &name, &name_len) == FAILURE) { 1317 nsptr = xmlSearchNsByHref (nodep->doc, root, uri); 1319 nsptr = dom_get_ns(root, uri, &errorcode, prefix); 1363 char *uri, *nam local 1500 xmlURI *uri; local [all...] |
| H A D | domimplementation.c | 98 xmlURIPtr uri; local 114 uri = xmlParseURI(name); 115 if (uri != NULL && uri->opaque != NULL) { 116 localname = xmlStrdup(uri->opaque); 119 xmlFreeURI(uri); 131 if (uri) { 132 xmlFreeURI(uri); 159 char *uri = NULL, *name = NULL; local 163 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|ssO", &uri, [all...] |
| H A D | element.c | 118 ZEND_ARG_INFO(0, uri) 153 /* {{{ proto void DOMElement::__construct(string name, [string value], [string uri]); */ 160 char *name, *value = NULL, *uri = NULL; local 168 if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Os|s!s", &id, dom_element_class_entry, &name, &name_len, &value, &value_len, &uri, &uri_len) == FAILURE) { 180 /* Namespace logic is seperate and only when uri passed in to insure no BC breakage */ 185 if (nodep != NULL && uri != NULL) { 186 nsptr = dom_get_ns(nodep, uri, &errorcode, prefix); 202 /* If you don't pass a namespace uri, then you can't set a prefix */ 668 char *uri, *name; local 671 if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Os!s", &id, dom_element_class_entry, &uri, 748 char *uri, *name, *value; local 877 char *name, *uri; local 933 char *uri, *name; local 1035 char *uri, *name; local 1092 char *uri, *name; local 1185 char *uri, *name; local [all...] |
| H A D | namednodemap.c | 265 char *uri, *named; local 271 if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Os!s", &id, dom_namednodemap_class_entry, &uri, &urilen, &named, &namedlen) == FAILURE) { 295 itemnode = (xmlNodePtr)xmlHasNsProp(nodep, named, uri);
|
| H A D | php_dom.h | 36 #include <libxml/uri.h> 109 xmlNsPtr dom_get_ns(xmlNodePtr node, char *uri, int *errorcode, char *prefix);
|
| /PHP_5_5/ext/simplexml/ |
| H A D | php_simplexml.h | 35 #include <libxml/uri.h>
|
| /PHP_5_5/ext/soap/ |
| H A D | php_schema.c | 23 #include "libxml/uri.h" 196 xmlChar *uri; local 200 uri = xmlBuildURI(location->children->content, trav->doc->URL); 202 uri = xmlBuildURI(location->children->content, base); 205 schema_load_file(ctx, NULL, uri, tns, 0 TSRMLS_CC); 206 xmlFree(uri); 216 xmlChar *uri; local 220 uri = xmlBuildURI(location->children->content, trav->doc->URL); 222 uri = xmlBuildURI(location->children->content, base); 225 schema_load_file(ctx, NULL, uri, tn 232 xmlChar *uri = NULL; local [all...] |
| H A D | php_sdl.c | 24 #include "libxml/uri.h" 229 void sdl_set_uri_credentials(sdlCtx *ctx, char *uri TSRMLS_DC) 241 s = strstr((char*)uri, "://"); 244 l2 = s ? (s - (char*)uri) : strlen((char*)uri); 255 uri[4] == ':' && 256 uri[l2-3] == ':' && 257 uri[l2-2] == '8' && 258 uri[l2-1] == '0') { 271 uri[ 390 xmlChar *uri; local 1533 get_sdl_from_cache(const char *fn, const char *uri, time_t t, time_t *cached TSRMLS_DC) argument 2110 add_sdl_to_cache(const char *fn, const char *uri, time_t t, sdlPtr sdl TSRMLS_DC) argument 3188 get_sdl(zval *this_ptr, char *uri, long cache_wsdl TSRMLS_DC) argument 3217 zend_hash_del(&EG(persistent_list), uri, uri_len+1); local [all...] |
| H A D | php_sdl.h | 257 sdlPtr get_sdl(zval *this_ptr, char *uri, long cache_wsdl TSRMLS_DC); 269 void sdl_set_uri_credentials(sdlCtx *ctx, char *uri TSRMLS_DC);
|
| H A D | php_soap.h | 104 char *uri; member in struct:_soapService
|
| H A D | soap.c | 62 static xmlDocPtr serialize_response_call(sdlFunctionPtr function, char *function_name,char *uri,zval *ret, soapHeader *headers, int version TSRMLS_DC); 63 static xmlDocPtr serialize_function_call(zval *this_ptr, sdlFunctionPtr function, char *function_name, char *uri, zval **arguments, int arg_count, int version, HashTable *soap_headers TSRMLS_DC); 1138 if (zend_hash_find(ht, "uri", sizeof("uri"), (void**)&tmp) == SUCCESS && 1140 service->uri = estrndup(Z_STRVAL_PP(tmp), Z_STRLEN_PP(tmp)); 1142 php_error_docref(NULL TSRMLS_CC, E_ERROR, "'uri' option is required in nonWSDL mode"); 1193 php_error_docref(NULL TSRMLS_CC, E_ERROR, "'uri' option is required in nonWSDL mode"); 1204 if (service->uri == NULL) { 1206 service->uri = estrdup(service->sdl->target_ns); 1209 service->uri 2741 zval **uri; local 2837 char *function, *location=NULL, *soap_action = NULL, *uri = NULL; local 3672 serialize_response_call2(xmlNodePtr body, sdlFunctionPtr function, char *function_name, char *uri, zval *ret, int version, int main TSRMLS_DC) argument 3775 serialize_response_call(sdlFunctionPtr function, char *function_name, char *uri, zval *ret, soapHeader* headers, int version TSRMLS_DC) argument 4129 serialize_function_call(zval *this_ptr, sdlFunctionPtr function, char *function_name, char *uri, zval **arguments, int arg_count, int version, HashTable *soap_headers TSRMLS_DC) argument [all...] |
| /PHP_5_5/ext/xmlwriter/ |
| H A D | php_xmlwriter.c | 182 ZEND_ARG_INFO(0, uri) 216 ZEND_ARG_INFO(0, uri) 222 ZEND_ARG_INFO(0, uri) 229 ZEND_ARG_INFO(0, uri) 236 ZEND_ARG_INFO(0, uri) 264 ZEND_ARG_INFO(0, uri) 270 ZEND_ARG_INFO(0, uri) 288 ZEND_ARG_INFO(0, uri) 295 ZEND_ARG_INFO(0, uri) 603 xmlURI *uri; local 892 char *name, *prefix, *uri; local 981 char *name, *prefix, *uri, *content; local 1034 char *name, *prefix, *uri; local 1149 char *name, *prefix, *uri, *content = NULL; local [all...] |
| H A D | php_xmlwriter.h | 34 #include <libxml/uri.h>
|
| /PHP_5_5/ext/xsl/ |
| H A D | xsltprocessor.c | 41 ZEND_ARG_INFO(0, uri) 697 /* {{{ proto int xsl_xsltprocessor_transform_to_uri(domdocument doc, string uri); 705 char *uri; local 712 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "op", &docp, &uri, &uri_len) == FAILURE) { 720 ret = xsltSaveResultToFilename(uri, newdocp, sheetp, 0);
|
| /PHP_5_5/sapi/apache/ |
| H A D | mod_php5.c | 290 if (sapi_module.input_filter(PARSE_SERVER, "PHP_SELF", &((request_rec *) SG(server_context))->uri, strlen(((request_rec *) SG(server_context))->uri), &new_val_len TSRMLS_CC)) { 291 php_register_variable("PHP_SELF", ((request_rec *) SG(server_context))->uri, track_vars_array TSRMLS_CC); 529 SG(request_info).request_uri = r->uri;
|
| H A D | php_apache.c | 84 ZEND_ARG_INFO(0, uri) 492 if (rr->uri) { 493 add_property_string(return_value,"uri", rr->uri, 1);
|
| /PHP_5_5/sapi/apache2filter/ |
| H A D | php_functions.c | 58 /* {{{ proto bool virtual(string uri) 132 ADD_STRING(uri); 359 ZEND_ARG_INFO(0, uri)
|
| H A D | sapi_apache2.c | 241 php_register_variable("PHP_SELF", ctx->r->uri, track_vars_array TSRMLS_CC); 242 if (sapi_module.input_filter(PARSE_SERVER, "PHP_SELF", &ctx->r->uri, strlen(ctx->r->uri), &new_val_len TSRMLS_CC)) { 243 php_register_variable_safe("PHP_SELF", ctx->r->uri, new_val_len, track_vars_array TSRMLS_CC); 411 SG(request_info).request_uri = safe_strdup(f->r->uri); 651 output ? "Output" : "Input", r->uri);
|
| /PHP_5_5/sapi/apache2handler/ |
| H A D | php_functions.c | 70 /* {{{ proto bool virtual(string uri) 152 ADD_STRING(uri); 484 ZEND_ARG_INFO(0, uri)
|
| H A D | sapi_apache2.c | 284 if (sapi_module.input_filter(PARSE_SERVER, "PHP_SELF", &ctx->r->uri, strlen(ctx->r->uri), &new_val_len TSRMLS_CC)) { 285 php_register_variable_safe("PHP_SELF", ctx->r->uri, new_val_len, track_vars_array TSRMLS_CC); 481 SG(request_info).request_uri = apr_pstrdup(r->pool, r->uri);
|
| /PHP_5_5/sapi/continuity/ |
| H A D | capi.c | 241 value = lstFset_get(rc->t->vars, "uri"); 414 char *uri = lstFset_get(NSG(t->vars), "uri"); local 422 SG(request_info).request_uri = capi_strdup(uri);
|
| /PHP_5_5/sapi/nsapi/ |
| H A D | nsapi.c | 117 { "PHP_SELF", "uri" }, 173 ZEND_ARG_INFO(0, uri) 325 /* {{{ proto bool nsapi_virtual(string uri) 335 char *uri,*value; local 339 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &uri, &uri_len) == FAILURE) { 344 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to include uri '%s' - Sub-requests not supported on this platform", uri); 347 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to include uri '%s' - Sub-requests do not work with zlib.output_compression", uri); 355 if ((rq = request_restart_internal(uri, NUL 968 char *uri = pblock_findval("uri", rq->reqpb); local [all...] |
| /PHP_5_5/sapi/webjames/ |
| H A D | webjames.c | 136 ADD_FIELD("SCRIPT_NAME", uri); 137 ADD_FIELD("PHP_SELF", uri);
|
| /PHP_5_5/ext/libxml/ |
| H A D | libxml.c | 42 #include <libxml/uri.h> 298 xmlURI *uri; local 302 uri = xmlParseURI(filename); 303 if (uri && (uri->scheme == NULL || 304 (xmlStrncmp(BAD_CAST uri->scheme, BAD_CAST "file", 4) == 0))) { 311 if (uri) { 312 xmlFreeURI(uri);
|
| /PHP_5_5/ext/xmlreader/ |
| H A D | php_xmlreader.c | 34 #include <libxml/uri.h> 231 xmlURI *uri; local 236 uri = xmlCreateURI(); 238 xmlParseURIReference(uri, (const char *)escsource); 241 if (uri->scheme != NULL) { 262 if ((uri->scheme == NULL || isFileUri)) { 264 xmlFreeURI(uri); 270 xmlFreeURI(uri); 1053 char *source, *uri = NULL, *encoding = NULL; local 1092 uri [all...] |