HomeSort by relevance Sort by last modified time
    Searched refs:Url (Results 1 - 25 of 29) sorted by null

1 2

  /external/webrtc/webrtc/base/
httpcommon_unittest.cc 23 TEST(Url, DecomposesUrls) {
24 Url<char> url(TEST_URL);
25 EXPECT_TRUE(url.valid());
26 EXPECT_FALSE(url.secure());
27 EXPECT_STREQ(TEST_HOST, url.host().c_str());
28 EXPECT_EQ(80, url.port());
29 EXPECT_STREQ(TEST_PATH, url.path().c_str());
30 EXPECT_STREQ(TEST_QUERY, url.query().c_str());
31 EXPECT_STREQ(TEST_HOST, url.address().c_str())
    [all...]
httpcommon-inl.h 21 // Url
25 void Url<CTYPE>::do_set_url(const CTYPE* val, size_t len) {
46 void Url<CTYPE>::do_set_address(const CTYPE* val, size_t len) {
65 void Url<CTYPE>::do_set_full_path(const CTYPE* val, size_t len) {
82 void Url<CTYPE>::do_get_url(string* val) const {
91 void Url<CTYPE>::do_get_address(string* val) const {
102 void Url<CTYPE>::do_get_full_path(string* val) const {
108 bool Url<CTYPE>::get_attribute(const string& name, string* value) const {
autodetectproxy_unittest.cc 50 Url<char> host_url(path, host, port);
52 auto_detect_proxy_->set_server_url(host_url.url());
proxydetect.cc 204 bool ProxyItemMatch(const Url<char>& url, char * item, size_t len) {
208 if (url.port() != atol(port)) {
224 SocketAddress addr(url.host(), 0);
232 size_t hostlen = url.host().length();
234 && (stricmp(url.host().c_str() + (hostlen - len), item) == 0);
238 if (!string_match(url.host().c_str(), item))
244 bool ProxyListMatch(const Url<char>& url, const std::string& proxy_list,
273 if (!ProxyItemMatch(url, buffer, len)
    [all...]
httpcommon.h 194 // Url
198 class Url {
208 Url(const string& url) { do_set_url(url.c_str(), url.size()); }
209 Url(const string& path, const string& host, uint16_t port = HTTP_DEFAULT_PORT)
226 string url() const { function in class:rtc::Url
sslsocketfactory.cc 46 Url<char> url("/", remote_.HostAsURIString(), remote_.port());
48 detect_->set_server_url(url.url());
autodetectproxy.cc 36 const char* url,
38 return GetProxySettingsForUrl(agent, url, proxy, true);
54 Url<char> url(proxy_.address.HostAsURIString());
55 if (url.valid()) {
57 proxy_.address.SetIP(url.host());
httpclient.cc 181 std::string id, url; local
184 request.getAbsoluteUri(&url);
185 id.append(url);
373 std::string url; local
374 if (request().getAbsoluteUri(&url)) {
375 request().path = url;
416 void HttpClient::prepare_get(const std::string& url) {
418 Url<char> purl(url);
424 void HttpClient::prepare_post(const std::string& url,
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Include/Library/
HttpLib.h 49 Create a URL parser for the input URL string.
51 This function will parse and dereference the input HTTP URL into it components. The original
52 content of the URL won't be modified and the result will be returned in UrlParser, which can
56 @param[in] Url The pointer to a HTTP URL string.
57 @param[in] Length Length of Url in bytes.
58 @param[in] IsConnectMethod Whether the Url is used in HTTP CONNECT method or not.
61 @retval EFI_SUCCESS Successfully dereferenced the HTTP URL.
62 @retval EFI_INVALID_PARAMETER UrlParser is NULL or Url is not a valid HTTP URL.
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/DxeHttpLib/
DxeHttpLib.c 151 This function parse the authority component of the input URL and update the parser.
153 @param[in] Url The pointer to a HTTP URL string.
163 IN CHAR8 *Url,
190 Authority = Url + UrlParser->FieldData[HTTP_URI_FIELD_AUTHORITY].Offset;
235 UrlParser->FieldData[Field].Offset = (UINT32) (Char - Url);
244 This function return the updated state according to the input state and next character of a URL.
343 Create a URL parser for the input URL string.
345 This function will parse and dereference the input HTTP URL into it components. The original
    [all...]
  /external/pdfium/xfa/fxfa/parser/
cxfa_certificates.cpp 20 {XFA_Attribute::Url, XFA_AttributeType::CData, nullptr},
  /device/linaro/bootloader/edk2/NetworkPkg/HttpDxe/
HttpImpl.c 246 CHAR8 *Url;
256 Url = NULL;
337 Url = HttpInstance->Url;
338 UrlLen = StrLen (Request->Url) + 1;
340 Url = AllocateZeroPool (UrlLen);
341 if (Url == NULL) {
344 FreePool (HttpInstance->Url);
345 HttpInstance->Url = Url;
    [all...]
HttpsSupport.h 23 Check whether the Url is from Https.
25 @param[in] Url The pointer to a HTTP or HTTPS URL string.
27 @retval TRUE The Url is from HTTPS.
28 @retval FALSE The Url is from HTTP.
33 IN CHAR8 *Url
HttpProto.c 745 HttpInstance->Url = AllocateZeroPool (HTTP_URL_BUFFER_LEN);
746 if (HttpInstance->Url == NULL) {
859 if (HttpInstance->Url != NULL) {
860 FreePool (HttpInstance->Url);
861 HttpInstance->Url = NULL;
    [all...]
HttpProto.h 162 CHAR8 *Url;
HttpsSupport.c 114 Check whether the Url is from Https.
116 @param[in] Url The pointer to a HTTP or HTTPS URL string.
118 @retval TRUE The Url is from HTTPS.
119 @retval FALSE The Url is from HTTP.
124 IN CHAR8 *Url
131 Tmp = AsciiStrCaseStr (Url, HTTPS_FLAG);
132 if (Tmp != NULL && Tmp == Url) {
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/dsymutil/
CFBundle.cpp 91 CFBundle(CFURLRef Url)
92 : CFReleaser<CFBundleRef>(Url ? ::CFBundleCreate(nullptr, Url)
  /external/google-fruit/extras/packaging/
libfruit.spec 11 Url: https://github.com/google/fruit
37 Url: https://github.com/google/fruit
  /device/linaro/bootloader/edk2/NetworkPkg/HttpBootDxe/
HttpBootClient.c 19 Update the IP and URL device path node to include the boot resource information.
168 // HttpOffer contains the boot file URL.
213 // Extract the port from URL, and use default HTTP port 80 if not provided.
271 // HttpOffer contains the boot file URL.
332 // Extract the HTTP server Ip frome URL. This is used to Check route table
372 // Extract the port from URL, and use default HTTP port 80 if not provided.
506 if (Cache->RequestData->Url != NULL) {
507 FreePool (Cache->RequestData->Url);
606 (Cache->RequestData->Url != NULL) &&
607 (StrCmp (Uri, Cache->RequestData->Url) == 0))
    [all...]
  /external/libexif/
libexif.spec 6 Url: http://sourceforge.net/projects/libexif/
  /cts/tests/tests/location/src/android/location/cts/
AddressTest.java 184 String Url = "Url";
185 address.setUrl(Url);
186 assertEquals(Url, address.getUrl());
211 "longitude=0.0,phone=null,url=www.google.com,extras=null]";
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
Http.h 199 CHAR16 *Url;
238 /// contains such data as URL and HTTP method.
446 specified in the response URL, Request() will return EFI_ACCESS_DENIED. This is
467 specified by response URL.
  /external/libtextclassifier/annotator/
collections.h 117 static const std::string& Url() {
119 *[]() { return new std::string("url"); }();
  /external/autotest/server/cros/
sonic_client_utils.py 64 class Url(object):
65 """Container for URL information."""
76 """Returns the URL."""
90 """Sends a custom request throug pycurl, to the url specified.
92 url = Url()
93 url.netloc = ':'.join((host, str(port)))
94 url.path = app_path
95 full_url = url.Build()
99 conn.setopt(conn.URL, full_url
    [all...]
  /external/e2fsprogs/
e2fsprogs.spec 13 Url: http://e2fsprogs.sourceforge.net/

Completed in 720 milliseconds

1 2