/external/apache-http/src/org/apache/http/client/methods/ |
HttpRequestBase.java | 35 import java.net.URI; 71 private URI uri; field in class:HttpRequestBase 86 public URI getURI() { 87 return this.uri; 93 URI uri = getURI(); local 95 if (uri != null) { 96 uritext = uri.toASCIIString(); 104 public void setURI(final URI uri) [all...] |
/external/apache-http/src/org/apache/http/impl/client/ |
RequestWrapper.java | 34 import java.net.URI; 69 private URI uri; field in class:RequestWrapper 81 // Make a copy of the original URI 83 this.uri = ((HttpUriRequest) request).getURI(); 89 this.uri = new URI(requestLine.getUri()); 91 throw new ProtocolException("Invalid request URI: " 130 public URI getURI() { 131 return this.uri; [all...] |
/external/apache-http/src/org/apache/http/message/ |
BasicLineFormatter.java | 207 final String uri = reqline.getUri(); local 210 int len = method.length() + 1 + uri.length() + 1 + 216 buffer.append(uri);
|
BasicLineParser.java | 340 String uri = buffer.substringTrimmed(i, blank); local 351 return createRequestLine(method, uri, ver); 364 * @param uri the requested URI 370 final String uri, 372 return new BasicRequestLine(method, uri, ver);
|
/external/apache-xml/src/main/java/org/apache/xalan/serialize/ |
SerializerUtils.java | 227 String uri = serializer.getNamespaceURIFromPrefix(prefix); local 228 // String uri = getURI(prefix); 230 if ((null != uri) && uri.equals(dtm.getStringValue(attr))) 255 String uri = dtm.getNodeValue(namespace); local 258 if ((uri != null && uri.length() > 0) && (null != prefix)) 266 if ((null == foundURI) || !foundURI.equals(uri)) 268 handler.startPrefixMapping(prefix, uri, false);
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
AttributesImplSerializer.java | 47 * "prefix:localName" or "{uri}localName". 94 * @param uri the URI of the attribute 104 String uri, 111 super.addAttribute(uri, local, qname, type, val); 130 /* now add with key of the format "{uri}localName" */ 132 m_buff.append('{').append(uri).append('}').append(local); 155 // Add quick look-up to find with uri/local name pair 156 String uri = super.getURI(index); local 159 m_buff.append('{').append(uri).append('}').append(local) [all...] |
/external/apache-xml/src/main/java/org/apache/xml/serializer/utils/ |
SystemIDResolver.java | 27 import org.apache.xml.serializer.utils.URI.MalformedURIException; 49 * Get an absolute URI from a given relative URI (local path). 51 * <p>The relative URI is a local filesystem path. The path can be 56 * generate a good absolute URI.</p> 58 * @param localPath The relative URI to resolve 60 * @return Resolved absolute URI 109 * Return true if the systemId denotes an absolute URI . 112 * @return true if the systemId is an an absolute URI 118 * character cannot be used as the first segment of a relative URI pat 288 URI uri = null; local [all...] |
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
SystemIDResolver.java | 27 import org.apache.xml.utils.URI.MalformedURIException; 42 * Get an absolute URI from a given relative URI (local path). 44 * <p>The relative URI is a local filesystem path. The path can be 49 * generate a good absolute URI.</p> 51 * @param localPath The relative URI to resolve 53 * @return Resolved absolute URI 102 * Return true if the systemId denotes an absolute URI . 105 * @return true if the systemId is an an absolute URI 111 * character cannot be used as the first segment of a relative URI pat 281 URI uri = null; local [all...] |
/external/caliper/caliper/src/main/java/com/google/caliper/runner/ |
JarFinder.java | 30 import java.net.URI; 65 Map<URI, ClassLoader> map = Maps.newLinkedHashMap(); 69 for (Map.Entry<URI, ClassLoader> entry : map.entrySet()) { 75 @VisibleForTesting static ImmutableMap<URI, ClassLoader> getClassPathEntries( 77 Map<URI, ClassLoader> entries = Maps.newLinkedHashMap(); 86 URI uri; local 88 uri = entry.toURI(); 92 if (!entries.containsKey(uri)) { 93 entries.put(uri, classloader) 178 URI uri; local 201 URI uri = new URI(path); local [all...] |
/external/curl/docs/examples/ |
rtsp.c | 75 static void rtsp_options(CURL *curl, const char *uri) 78 printf("\nRTSP: OPTIONS %s\n", uri); 79 my_curl_easy_setopt(curl, CURLOPT_RTSP_STREAM_URI, uri); 86 static void rtsp_describe(CURL *curl, const char *uri, 91 printf("\nRTSP: DESCRIBE %s\n", uri); 109 static void rtsp_setup(CURL *curl, const char *uri, const char *transport) 112 printf("\nRTSP: SETUP %s\n", uri); 114 my_curl_easy_setopt(curl, CURLOPT_RTSP_STREAM_URI, uri); 122 static void rtsp_play(CURL *curl, const char *uri, const char *range) 125 printf("\nRTSP: PLAY %s\n", uri); 215 char *uri = malloc(strlen(url) + 32); local [all...] |
/external/libcups/cups/ |
ppd-util.c | 286 * Try finding a printer URI for this printer... 498 * 'cups_get_printer_uri()' - Get the printer-uri-supported attribute for the 519 char uri[HTTP_MAX_URI], /* printer-uri attribute */ local 527 "device-uri", 529 "printer-uri-supported", 537 * Setup the printer URI... 540 if (httpAssembleURIf(HTTP_URI_CODING_ALL, uri, sizeof(uri), "ipp", NULL, "localhost", 0, "/printers/%s", name) < HTTP_URI_STATUS_OK) 542 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, _("Unable to create printer-uri"), 1) [all...] |
tlscheck.c | 49 char uri[1024], /* Printer URI */ local 50 scheme[32], /* URI scheme */ 74 "uri-authentication-supported", 75 "uri-security-supported" 691 httpAssembleURI(HTTP_URI_CODING_ALL, uri, sizeof(uri), "ipps", NULL, host, port, resource); 693 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_URI, "printer-uri", NULL, uri);
|
/external/libevent/include/event2/ |
http_struct.h | 97 char *uri; /* uri after HTTP request was parsed */ member in struct:evhttp_request 98 struct evhttp_uri *uri_elems; /* uri elements */
|
/external/libmicrohttpd/src/testspdy/ |
test_misc.c | 79 char *uri; local 89 asprintf(&uri,"https://127.0.0.1:%i/",port); 90 execlp("spdycat", "spdycat","-anv",uri,NULL );
|
test_session_timeout.c | 303 char *uri; local 304 asprintf (&uri, "127.0.0.1:%i", port); 305 execlp ("openssl", "openssl", "s_client", "-connect", uri, NULL);
|
/external/libxml2/ |
xmlcatalog.c | 27 #include <libxml/uri.h> 554 xmlURIPtr uri; local 557 uri = xmlParseURI(argv[i]); 558 if (uri == NULL) { 568 xmlFreeURI(uri); 574 printf ("No entry for URI %s\n", argv[i]);
|
/external/mockito/src/test/java/org/mockitousage/stubbing/ |
StubbingReturnsSelfTest.java | 80 assertThat(requester.request("URI")).isEqualTo(response); 119 public String request(String uri) { 120 return builder.withUrl(uri) 129 private String uri; field in class:StubbingReturnsSelfTest.HttpBuilder 136 public HttpBuilder withUrl(String uri) { 137 this.uri = uri; 147 return uri + headers.toString();
|
/external/nist-sip/java/gov/nist/javax/sip/address/ |
AddressImpl.java | 37 * Address structure. Imbeds a URI and adds a display name. 106 SipUri uri = (SipUri) address; local 107 return uri.getHostPort(); 110 /** Get the port from the imbedded URI. This assumes that a SIP URL 119 SipUri uri = (SipUri) address; local 120 return uri.getHostPort().getPort(); 131 SipUri uri = (SipUri) address; local 132 return uri.getUserAtHostPort(); 144 SipUri uri = (SipUri) address; local 145 return uri.getHostPort().getHost().getHostname() 155 SipUri uri = (SipUri) address; local [all...] |
/external/nist-sip/java/gov/nist/javax/sip/stack/ |
DefaultRouter.java | 51 * URI Jiang He - use address in route header. Significant changes to conform to 69 * <li> If the request contains one or more Route headers, use the URI of the 74 * <li> Otherwise, use the request URI as next hop. If the request URI is not a 75 * SIP URI, call {@link javax.sip.address.Router#getNextHop(Request)} provided 86 * <li>The implementation places the Request-URI into the Route header field as 89 * the Request-URI and removes that value from the Route header field. 91 * Subsequently, the request URI will be used as next hop target 137 * URI uri = firstRoute.getAddress().getURI() 197 URI uri = route.getAddress().getURI(); local [all...] |
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/ |
Request.java | 20 import java.net.URI; 36 private volatile URI javaNetUri; // Lazily initialized. 56 public URI uri() throws IOException { method in class:Request 58 URI result = javaNetUri; 59 return result != null ? result : (javaNetUri = url.uri());
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowContentResolver.java | 7 import android.net.Uri; 28 private HashMap<Uri, TestCursor> uriCursorMap = new HashMap<Uri, TestCursor>(); 44 public final Uri uri; field in class:ShadowContentResolver.NotifiedUri 48 public NotifiedUri(Uri uri, ContentObserver observer, boolean syncToNetwork) { 49 this.uri = uri; 64 public final InputStream openInputStream(final Uri uri) [all...] |
ShadowVideoView.java | 5 import android.net.Uri; 19 private Uri uri; field in class:ShadowVideoView 52 public void setVideoURI(Uri uri) { 53 this.uri = uri; 134 return uri == null ? null : uri.toString();
|
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/tester/android/database/ |
SimpleTestCursorTest.java | 4 import android.net.Uri; 20 private Uri uri; field in class:SimpleTestCursorTest 28 uri = Uri.parse("http://foo"); 30 shadowContentResolver.setCursor(uri, cursor); 39 contentResolver.query(uri, new String[]{"projection"}, "selection", new String[]{"selection"}, "sortOrder"); 40 assertThat(cursor.uri, equalTo(uri));
|
/external/syslinux/gpxe/src/core/ |
uri.c | 33 #include <gpxe/uri.h> 36 * Dump URI for debugging 38 * @v uri URI 40 static void dump_uri ( struct uri *uri ) { 41 if ( ! uri ) 43 if ( uri->scheme ) 44 DBG ( " scheme \"%s\"", uri->scheme ); 45 if ( uri->opaque 74 struct uri *uri; local [all...] |
/external/syslinux/gpxe/src/include/gpxe/ |
image.h | 18 struct uri; 29 /** URI of image */ 30 struct uri *uri; member in struct:image 150 extern int image_set_uri ( struct image *image, struct uri *uri );
|