Home
last modified time | relevance | path

Searched refs:uri (Results 1 – 25 of 269) sorted by path

1234567891011

/PHP-5.5/
H A DNEWS8548 - Fixed bug #37278 (SOAP not respecting uri in __soapCall). (Dmitry)
9225 - Fixed a bug where stream_get_meta_data() did not return the "uri" element
/PHP-5.5/ext/curl/
H A Dinterface.c204 php_url *uri; in php_curl_option_url()
206 if (!(uri = php_url_parse_ex(url, len))) { in php_curl_option_url()
211 if (uri->scheme && !strncasecmp("file", uri->scheme, sizeof("file"))) { in php_curl_option_url()
213 php_url_free(uri); in php_curl_option_url()
216 php_url_free(uri); in php_curl_option_url()
/PHP-5.5/ext/dom/
H A Ddocument.c1236 char *uri, *name, *value = NULL; in PHP_FUNCTION() local
1252 if (nodep != NULL && uri != NULL) { in PHP_FUNCTION()
1299 char *uri, *name; in PHP_FUNCTION() local
1363 char *uri, *name; in PHP_FUNCTION() local
1375 nsuri = xmlCharStrndup(uri, uri_len); in PHP_FUNCTION()
1500 xmlURI *uri; in _dom_get_valid_file_path() local
1505 uri = xmlCreateURI(); in _dom_get_valid_file_path()
1507 xmlParseURIReference(uri, escsource); in _dom_get_valid_file_path()
1510 if (uri->scheme != NULL) { in _dom_get_valid_file_path()
1540 xmlFreeURI(uri); in _dom_get_valid_file_path()
[all …]
H A Ddomimplementation.c98 xmlURIPtr uri; in PHP_METHOD() local
114 uri = xmlParseURI(name); in PHP_METHOD()
115 if (uri != NULL && uri->opaque != NULL) { in PHP_METHOD()
116 localname = xmlStrdup(uri->opaque); in PHP_METHOD()
119 xmlFreeURI(uri); in PHP_METHOD()
131 if (uri) { in PHP_METHOD()
132 xmlFreeURI(uri); in PHP_METHOD()
159 char *uri = NULL, *name = NULL; in PHP_METHOD() local
163 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|ssO", &uri, &uri_len, &name, &name_len, &no… in PHP_METHOD()
183 if (errorcode == 0 && uri_len > 0 && ((nsptr = xmlNewNs(NULL, uri, prefix)) == NULL)) { in PHP_METHOD()
H A Delement.c118 ZEND_ARG_INFO(0, uri)
160 char *name, *value = NULL, *uri = NULL; in PHP_METHOD() local
185 if (nodep != NULL && uri != NULL) { in PHP_METHOD()
668 char *uri, *name; in PHP_FUNCTION() local
748 char *uri, *name, *value; in PHP_FUNCTION() local
877 char *name, *uri; in PHP_FUNCTION() local
933 char *uri, *name; in PHP_FUNCTION() local
1035 char *uri, *name; in PHP_FUNCTION() local
1047 nsuri = xmlCharStrndup(uri, uri_len); in PHP_FUNCTION()
1092 char *uri, *name; in PHP_FUNCTION() local
[all …]
H A Dnamednodemap.c265 char *uri, *named; in PHP_FUNCTION() local
271 …M_ARGS() TSRMLS_CC, getThis(), "Os!s", &id, dom_namednodemap_class_entry, &uri, &urilen, &named, &… in PHP_FUNCTION()
295 itemnode = (xmlNodePtr)xmlHasNsProp(nodep, named, uri); in PHP_FUNCTION()
H A Dnode.c120 ZEND_ARG_INFO(0, uri)
1602 char *uri; in PHP_FUNCTION() local
1604 …rs(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Os", &id, dom_node_class_entry, &uri, &uri_len) == FAILU… in PHP_FUNCTION()
1630 if (lookupp != NULL && (nsptr = xmlSearchNsByHref(lookupp->doc, lookupp, uri))) { in PHP_FUNCTION()
1652 char *uri; in PHP_FUNCTION() local
1654 …rs(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Os", &id, dom_node_class_entry, &uri, &uri_len) == FAILU… in PHP_FUNCTION()
1665 if (nsptr && xmlStrEqual(nsptr->href, uri)) { in PHP_FUNCTION()
H A Dphp_dom.c1627 xmlNsPtr dom_get_ns(xmlNodePtr nodep, char *uri, int *errorcode, char *prefix) { in dom_get_ns() argument
1632 if (! ((prefix && !strcmp (prefix, "xml") && strcmp(uri, (char *)XML_XML_NAMESPACE)) || in dom_get_ns()
1633 (prefix && !strcmp (prefix, "xmlns") && strcmp(uri, (char *)DOM_XMLNS_NAMESPACE)) || in dom_get_ns()
1634 (prefix && !strcmp(uri, (char *)DOM_XMLNS_NAMESPACE) && strcmp (prefix, "xmlns")))) { in dom_get_ns()
1635 nsptr = xmlNewNs(nodep, (xmlChar *)uri, (xmlChar *)prefix); in dom_get_ns()
H A Dphp_dom.h109 xmlNsPtr dom_get_ns(xmlNodePtr node, char *uri, int *errorcode, char *prefix);
H A Dxpath.c46 ZEND_ARG_INFO(0, uri)
/PHP-5.5/ext/fileinfo/tests/
H A Dmagic18479 # uri
18481 >>10 pstring/l x \b, uri: "%s"
/PHP-5.5/ext/libxml/
H A Dlibxml.c299 xmlURI *uri; in php_libxml_streams_IO_open_wrapper() local
303 uri = xmlParseURI(filename); in php_libxml_streams_IO_open_wrapper()
304 if (uri && (uri->scheme == NULL || in php_libxml_streams_IO_open_wrapper()
305 (xmlStrncmp(BAD_CAST uri->scheme, BAD_CAST "file", 4) == 0))) { in php_libxml_streams_IO_open_wrapper()
327 if (uri) { in php_libxml_streams_IO_open_wrapper()
328 xmlFreeURI(uri); in php_libxml_streams_IO_open_wrapper()
/PHP-5.5/ext/pdo/
H A Dpdo_dbh.c185 static char *dsn_from_uri(char *uri, char *buf, size_t buflen TSRMLS_DC) /* {{{ */ in dsn_from_uri() argument
190 stream = php_stream_open_wrapper(uri, "rb", REPORT_ERRORS, NULL); in dsn_from_uri()
/PHP-5.5/ext/pdo_mysql/tests/
H A Dpdo_mysql___construct_uri.phpt21 $uri = sprintf('uri:file:%s', $file);
30 $db = new PDO($uri, $user, $pass);
33 $uri, $dsn,
47 $db = new PDO($uri, $user, $pass);
50 $uri, $dsn,
72 [002] URI=uri:file:%spdomuri.tst, DSN=mysql%sdbname=%s, File=%spdomuri.tst (%d bytes, 'mysql%sdbnam…
75 [003] URI=uri:file:%spdomuri.tst, DSN=mysql%sdbname=%s, File=%spdomuri.tst (%d bytes, 'mysql%sdbnam…
/PHP-5.5/ext/phar/
H A DTODO68 unknown, the callback should return the original request uri [Greg]
/PHP-5.5/ext/soap/
H A Dphp_schema.c196 xmlChar *uri; in load_schema() local
202 uri = xmlBuildURI(location->children->content, base); in load_schema()
205 schema_load_file(ctx, NULL, uri, tns, 0 TSRMLS_CC); in load_schema()
206 xmlFree(uri); in load_schema()
216 xmlChar *uri; in load_schema() local
222 uri = xmlBuildURI(location->children->content, base); in load_schema()
225 schema_load_file(ctx, NULL, uri, tns, 0 TSRMLS_CC); in load_schema()
226 xmlFree(uri); in load_schema()
232 xmlChar *uri = NULL; in load_schema() local
254 schema_load_file(ctx, ns, uri, tns, 1 TSRMLS_CC); in load_schema()
[all …]
H A Dphp_sdl.c244 l2 = s ? (s - (char*)uri) : strlen((char*)uri); in sdl_set_uri_credentials()
255 uri[4] == ':' && in sdl_set_uri_credentials()
256 uri[l2-3] == ':' && in sdl_set_uri_credentials()
257 uri[l2-2] == '8' && in sdl_set_uri_credentials()
258 uri[l2-1] == '0') { in sdl_set_uri_credentials()
271 uri[4] == 's' && in sdl_set_uri_credentials()
272 uri[l2-4] == ':' && in sdl_set_uri_credentials()
390 xmlChar *uri; in load_wsdl_ex() local
400 xmlFree(uri); in load_wsdl_ex()
3203 if (strchr(uri,':') != NULL || IS_ABSOLUTE_PATH(uri, uri_len)) { in get_sdl()
[all …]
H A Dphp_sdl.h257 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 Dphp_soap.h104 char *uri; member
H A Dsoap.c1215 if (service->uri == NULL) { in PHP_METHOD()
1220 service->uri = estrdup("http://unknown-uri/"); in PHP_METHOD()
2752 zval **uri; local
2755 …_find(Z_OBJPROP_P(this_ptr), "uri", sizeof("uri"), (void *)&uri) == FAILURE || Z_TYPE_PP(uri) != I…
2761 call_uri = Z_STRVAL_PP(uri);
2891 uri = Z_STRVAL_PP(tmp);
3781 ns = encode_add_ns(body, uri);
3818 ns = encode_add_ns(param, uri);
4285 ns = encode_add_ns(body, uri);
4911 if (service->uri) {
[all …]
/PHP-5.5/ext/soap/tests/
H A Dbug46760.phpt12 'uri' => 'mo:http://www.w3.org/',
H A Dbug48557.phpt19 …OAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://test-uri/" xmlns:xsi="http:/…
H A Dbug49898.phpt9 $client = new SoapClient(null, array('uri' => 'mo:http://www.w3.org/', 'location' => 'http://some.u…
H A Dbug70388.phpt7 $dummy = unserialize('O:10:"SoapClient":3:{s:3:"uri";s:1:"X";s:8:"location";s:22:"http://localhost/…
/PHP-5.5/ext/soap/tests/bugs/
H A Dbug28751.phpt15 $server = new SoapServer(NULL, array('uri'=>"http://testuri.org"));

Completed in 181 milliseconds

1234567891011