Searched refs:urlopen (Results 1 – 25 of 112) sorted by relevance
12345
/external/autotest/client/common_lib/cros/ |
D | dev_server_unittest.py | 82 urllib2.urlopen(mox.StrContains(bad_host), data=None).AndRaise( 86 urllib2.urlopen(mox.StrContains(good_host), 105 urllib2.urlopen(mox.StrContains(bad_host), 111 urllib2.urlopen(mox.StrContains(good_host), 148 urllib2.urlopen(mox.IgnoreArg()).AndRaise(e500) 157 urllib2.urlopen(mox.IgnoreArg()).AndRaise(e403) 165 urllib2.urlopen(mox.And(mox.StrContains(self._HOST), 169 urllib2.urlopen(mox.And(mox.StrContains(self._HOST), 185 urllib2.urlopen(mox.And(mox.StrContains(self._HOST), 189 urllib2.urlopen(mox.And(mox.StrContains(self._HOST), [all …]
|
D | chromedriver.py | 77 urllib2.urlopen('http://localhost:%i/json/new' % 201 urllib2.urlopen(self.url + '/status') 223 urllib2.urlopen(self.url + '/shutdown', timeout=10).close()
|
D | dev_server.py | 634 return urllib2.urlopen(call).read() == 'True' 676 response = urllib2.urlopen(call).read() 983 response = urllib2.urlopen(call) 1028 response = urllib2.urlopen(call).read() 1108 response = urllib2.urlopen(call) 1126 return urllib2.urlopen(call).read() 1146 return urllib2.urlopen(call).read() 1160 image_name = urllib2.urlopen(call).read() 1203 latest_builds.append(urllib2.urlopen(call).read()) 1415 translated_build_id = urllib2.urlopen(call).read()
|
/external/autotest/client/common_lib/cros/fake_device_server/client_lib/ |
D | commands.py | 31 url_h = urllib2.urlopen(request) 42 url_h = urllib2.urlopen(request) 65 url_h = urllib2.urlopen(request) 80 url_h = urllib2.urlopen(request)
|
D | registration.py | 29 url_h = urllib2.urlopen(self.get_url([ticket_id])) 58 url_h = urllib2.urlopen(request) 74 url_h = urllib2.urlopen(request) 85 url_h = urllib2.urlopen(request)
|
D | devices.py | 31 url_h = urllib2.urlopen(request) 39 url_h = urllib2.urlopen(request) 56 url_h = urllib2.urlopen(request)
|
D | oauth.py | 28 url_h = urllib2.urlopen(request) 38 url_h = urllib2.urlopen(request)
|
D | fail_control.py | 28 url_h = urllib2.urlopen(request) 37 url_h = urllib2.urlopen(request)
|
D | oauth_helpers.py | 40 url_h = urllib2.urlopen(request) 58 url_h = urllib2.urlopen(request)
|
/external/autotest/server/ |
D | lab_status_unittest.py | 127 urllib2.urlopen(mox.IgnoreArg()).AndReturn( 139 urllib2.urlopen(mox.IgnoreArg()).AndRaise( 142 urllib2.urlopen(mox.IgnoreArg()).AndReturn( 154 urllib2.urlopen(mox.IgnoreArg()).AndReturn( 157 urllib2.urlopen(mox.IgnoreArg()).AndReturn( 170 urllib2.urlopen(mox.IgnoreArg()).AndRaise( 184 urllib2.urlopen(mox.IgnoreArg()).AndReturn(
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/s3/ |
D | test_connection.py | 33 from boto.compat import http_client, six, urlopen, urlsplit 67 file = urlopen(url) 70 file = urlopen(url) 73 file = urlopen(url) 77 file = urlopen(url) 82 file = urlopen(url)
|
/external/chromium-trace/catapult/catapult_build/perfbot_stats/ |
D | chrome_perf_step_timings.py | 133 response = urllib2.urlopen(url) 141 response = urllib2.urlopen(url) 153 response = urllib2.urlopen(url)
|
D | chrome_perf_stats.py | 67 response = urllib2.urlopen(BUILDER_LIST_URL) 135 urllib2.urlopen(url=url, data=data).read() 147 response = urllib2.urlopen(url)
|
/external/chromium-trace/catapult/third_party/Paste/paste/debug/ |
D | testserver.py | 70 from six.moves.urllib.request import urlopen 83 return urlopen(baseuri + path).read() 93 urlopen(baseuri)
|
/external/autotest/site_utils/ |
D | set_tree_status.py | 22 response = urllib.urlopen(CHROMEOS_STATUS_SERVER + '/current?format=raw') 46 urllib.urlopen(CHROMEOS_STATUS_SERVER + '/status', urllib.urlencode(data))
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/scripts/ |
D | fetch_gae_sdk.py | 24 version_info_json = urllib2.urlopen(_SDK_URL).read() 62 sdk_contents = StringIO.StringIO(urllib2.urlopen(sdk_url).read())
|
/external/chromium-trace/catapult/experimental/buildbot/ |
D | buildbot.py | 37 return json.load(urllib2.urlopen(url)) 41 return json.load(urllib2.urlopen(url)) 377 data = urllib2.urlopen(self.log_link).read() 381 data = urllib2.urlopen(self.log_link).read() 417 data = json.load(urllib2.urlopen(self.results_link)) 421 data = json.load(urllib2.urlopen(self.results_link))
|
/external/chromium-trace/catapult/catapult_build/ |
D | run_dev_server_tests.py | 110 response = urllib2.urlopen(version_lookup_url, timeout=120) 116 response = urllib2.urlopen(base_pos_lookup_url, timeout=120) 126 response = urllib2.urlopen(cloud_storage_lookup_url, timeout=120) 143 local_file.write(urllib2.urlopen(download_url, timeout=600).read())
|
/external/autotest/client/cros/ |
D | httpd_unittest.py | 20 get_resp = urllib.urlopen(url).read() 48 post_resp = urllib.urlopen('http://localhost:8000/post_test',
|
/external/pdfium/ |
D | update_pdfium.py | 45 chromiumVersions = urllib2.urlopen(CHROMIUM_VERSION_TRACKING_URL) 61 deps = urllib2.urlopen("%s/%s/%s" % (CHROMIUM_SOURCE_URL, getStableChromiumVersion(),
|
/external/chromium-trace/catapult/third_party/html5lib-python/ |
D | README.rst | 50 from urllib2 import urlopen 53 with closing(urlopen("http://example.com/")) as f: 61 from urllib.request import urlopen 64 with urlopen("http://example.com/") as f:
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/backends/chrome/ |
D | ios_browser_backend.py | 58 urllib2.urlopen(self._DEVICE_LIST_URL)) as device_list: 82 urllib2.urlopen('http://%s/json' % d['url'])) as f:
|
/external/opencv3/modules/python/test/ |
D | test.py | 22 from urllib.request import urlopen 24 from urllib import urlopen 42 filedata = urlopen(NewOpenCVTests.repoUrl + '/' + filename).read()
|
/external/chromium-trace/catapult/telemetry/third_party/webpagereplay/ |
D | test_utils.py | 22 urllib2.urlopen('https://example.com', timeout=10)
|
/external/autotest/server/cros/ |
D | sonic_client_utils.py | 120 return urllib2.urlopen(url).read() 135 urllib2.urlopen(request)
|
12345