Searched defs:URL (Results 51 - 75 of 175) sorted by relevance

1234567

/external/libxml2/doc/examples/
H A Dreader4.c22 const xmlChar *URL; local
31 * information about the document like the URL, but one must also
40 URL = docPtr->URL;
41 if (NULL == URL) {
42 fprintf(stderr, "Failed to obtain URL\n");
46 fprintf(stderr, "%s: Failed to parse\n", URL);
50 printf("%s: Processed ok\n", (const char *)URL);
/external/python/cpython3/Tools/msi/
H A Dpurge.py27 URL = "https://www.python.org/ftp/python/{}/".format(m.group(1)) variable
71 u = URL + n
/external/autotest/skylab_migration/venv/skylab_venv/
H A Dtest_sso_discovery.py13 URL = 'https://TEST_URL.com' variable in class:SsoDiscoveryTest
27 sso_discovery.sso_request(self.URL)
36 sso_discovery.sso_request(self.URL, headers={'accept-encoding': 'test'})
39 ['sso_client', '--url', self.URL, '-dump_header'])
45 sso_discovery.sso_request(self.URL)
53 resp, body = sso_discovery.sso_request(self.URL)
56 ['sso_client', '--url', self.URL, '-dump_header'])
70 resp, body = sso_discovery.sso_request(self.URL)
73 ['sso_client', '--url', self.URL, '-dump_header'])
/external/curl/tests/libtest/
H A Dlib1501.c36 int test(char *URL) argument
49 easy_setopt(handle, CURLOPT_URL, URL);
H A Dlib1502.c40 int test(char *URL) argument
71 easy_setopt(easy, CURLOPT_URL, URL);
H A Dlib1509.c33 int test(char *URL) argument
51 easy_setopt(curl, CURLOPT_URL, URL);
H A Dlib1510.c32 int test(char *URL) argument
43 (void)URL;
H A Dlib1512.c35 int test(char *URL) argument
45 (void)URL; /* URL is setup in the code */
H A Dlib1514.c55 int test(char *URL) argument
66 easy_setopt(curl, CURLOPT_URL, URL);
H A Dlib1517.c54 int test(char *URL) argument
76 /* First set the URL that is about to receive our POST. */
77 test_setopt(curl, CURLOPT_URL, URL);
H A Dlib1525.c47 int test(char *URL) argument
72 test_setopt(curl, CURLOPT_URL, URL);
H A Dlib1526.c45 int test(char *URL) argument
75 test_setopt(curl, CURLOPT_URL, URL);
H A Dlib1527.c46 int test(char *URL) argument
75 test_setopt(curl, CURLOPT_URL, URL);
H A Dlib1552.c30 int test(char *URL) argument
48 easy_setopt(curls, CURLOPT_URL, URL);
H A Dlib1554.c44 int test(char *URL) argument
70 curl_easy_setopt(curl, CURLOPT_URL, URL);
H A Dlib502.c31 * Get a single URL without select().
34 int test(char *URL) argument
47 easy_setopt(c, CURLOPT_URL, URL);
H A Dlib503.c38 int test(char *URL) argument
52 easy_setopt(c, CURLOPT_URL, URL);
H A Dlib504.c37 int test(char *URL) argument
55 easy_setopt(c, CURLOPT_URL, URL);
H A Dlib505.c37 int test(char *URL) argument
123 test_setopt(curl, CURLOPT_URL, URL);
H A Dlib507.c30 int test(char *URL) argument
47 easy_setopt(curls, CURLOPT_URL, URL);
H A Dlib508.c50 int test(char *URL) argument
72 /* First set the URL that is about to receive our POST. */
73 test_setopt(curl, CURLOPT_URL, URL);
H A Dlib510.c62 int test(char *URL) argument
90 /* First set the URL that is about to receive our POST. */
91 test_setopt(curl, CURLOPT_URL, URL);
H A Dlib525.c32 int test(char *URL) argument
86 easy_setopt(curl, CURLOPT_URL, URL);
H A Dlib526.c24 * the same URL, in a serial manner after each other. Due to the connection
53 int test(char *URL) argument
73 easy_setopt(curl[i], CURLOPT_URL, URL);
82 fprintf(stderr, "Start at URL 0\n");
105 fprintf(stderr, "Advancing to URL %d\n", current);
113 easy_setopt(curl[0], CURLOPT_URL, URL);
H A Dlib530.c32 int test(char *URL) argument
56 snprintf(target_url, sizeof(target_url), "%s%04i", URL, i + 1);
72 fprintf(stderr, "Start at URL 0\n");

Completed in 723 milliseconds

1234567