| /PHP_TRUNK/ |
| H A D | server-tests.php | 1248 $uri = $this->conf['TEST_BASE_SCRIPT_NAME'].str_replace($this->conf['TEST_BASE_PATH'], '', $tmp_file); variable 1249 $uri = str_replace('\\', '/', $uri); variable 1306 $url .= $uri;
|
| /PHP_TRUNK/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 | node.c | 120 ZEND_ARG_INFO(0, uri) 1602 char *uri; local 1604 if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Os", &id, dom_node_class_entry, &uri, &uri_len) == FAILURE) { 1630 if (lookupp != NULL && (nsptr = xmlSearchNsByHref(lookupp->doc, lookupp, uri))) { 1652 char *uri; local 1654 if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Os", &id, dom_node_class_entry, &uri, &uri_len) == FAILURE) { 1665 if (nsptr && xmlStrEqual(nsptr->href, uri)) { 1934 /* {{{ proto int DOMNode::C14NFile(string uri [, bool exclusive [, bool with_comments [, array xpath [, array ns_prefixes]]]])
|
| H A D | php_dom.c | 845 dom_register_prop_handler(&dom_domlocator_prop_handlers, "uri", dom_domlocator_uri_read, NULL TSRMLS_CC); 1622 /* {{{ xmlNsPtr dom_get_ns(xmlNodePtr nodep, char *uri, int *errorcode, char *prefix) */ 1623 xmlNsPtr dom_get_ns(xmlNodePtr nodep, char *uri, int *errorcode, char *prefix) { argument 1628 if (! ((prefix && !strcmp (prefix, "xml") && strcmp(uri, (char *)XML_XML_NAMESPACE)) || 1629 (prefix && !strcmp (prefix, "xmlns") && strcmp(uri, (char *)DOM_XMLNS_NAMESPACE)) || 1630 (prefix && !strcmp(uri, (char *)DOM_XMLNS_NAMESPACE) && strcmp (prefix, "xmlns")))) { 1631 nsptr = xmlNewNs(nodep, (xmlChar *)uri, (xmlChar *)prefix);
|
| /PHP_TRUNK/ext/pdo/ |
| H A D | pdo_dbh.c | 185 static char *dsn_from_uri(char *uri, char *buf, size_t buflen TSRMLS_DC) /* {{{ */ argument 190 stream = php_stream_open_wrapper(uri, "rb", REPORT_ERRORS, NULL); 247 if (!strncmp(data_source, "uri:", sizeof("uri:")-1)) { 249 data_source = dsn_from_uri(data_source + sizeof("uri:")-1, alt_dsn, sizeof(alt_dsn) TSRMLS_CC);
|
| /PHP_TRUNK/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_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_TRUNK/ext/xml/ |
| H A D | xml.c | 1119 void _xml_startNamespaceDeclHandler(void *userData,const XML_Char *prefix, const XML_Char *uri) argument 1128 args[2] = _xml_xmlchar_zval(uri, 0, parser->target_encoding);
|
| /PHP_TRUNK/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...] |
| /PHP_TRUNK/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_TRUNK/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_TRUNK/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_TRUNK/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_TRUNK/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...] |