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

1 2

  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/net/
networktransaction_unittest.py 31 from urllib2 import HTTPError
62 raise HTTPError("http://example.com/", 500, "internal server error", None, None)
66 raise HTTPError("http://foo.com/", 404, "not found", None, None)
networktransaction.py 54 except urllib2.HTTPError, e:
  /external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/
tab_list_backend.py 35 except urllib2.HTTPError:
48 except urllib2.HTTPError:
  /external/chromium_org/media/tools/constrained_network_server/
cns.py 220 raise cherrypy.HTTPError(400, 'Invalid request. File must be specified.')
243 """Checks if the requested file exists, raises HTTPError otherwise."""
254 raise cherrypy.HTTPError(403, 'Invalid file requested.')
256 raise cherrypy.HTTPError(404, 'File not found.')
265 raise cherrypy.HTTPError(404, 'File not found on local server.')
326 raise cherrypy.HTTPError(503, 'Service unavailable. Out of ports.')
341 cherrypy.HTTPError if param can not be converted to integer or if it does
351 raise cherrypy.HTTPError(400, msg)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_robotparser.py 3 from urllib2 import urlopen, HTTPError
243 except HTTPError as e:
test_urllib2_localnet.py 264 self.assertRaises(urllib2.HTTPError,
270 self.assertRaises(urllib2.HTTPError,
test_urllib2.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_robotparser.py 3 from urllib2 import urlopen, HTTPError
243 except HTTPError as e:
test_urllib2_localnet.py 264 self.assertRaises(urllib2.HTTPError,
270 self.assertRaises(urllib2.HTTPError,
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
print-stale-test-expectations-entries 83 except urllib2.HTTPError as error:
  /external/chromium_org/third_party/skia/platform_tools/android/bin/
http_download.py 83 except urllib2.HTTPError, e:
download_utils.py 255 except urllib2.HTTPError, exn:
  /external/skia/platform_tools/android/bin/
http_download.py 83 except urllib2.HTTPError, e:
download_utils.py 255 except urllib2.HTTPError, exn:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
upload.py 7 from urllib2 import urlopen, Request, HTTPError
185 except HTTPError, e:
register.py 301 except urllib2.HTTPError, e:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
upload.py 7 from urllib2 import urlopen, Request, HTTPError
185 except HTTPError, e:
register.py 301 except urllib2.HTTPError, e:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
urllib2.py 21 IOError); for HTTP errors, raises an HTTPError, which can also be
47 HTTPError -- Also a valid HTTP response, so you can treat an HTTP error
150 class HTTPError(URLError, addinfourl):
161 # object. In some cases, the HTTPError may not have a valid
170 # since URLError specifies a .reason attribute, HTTPError should also
531 raise HTTPError(req.get_full_url(), code, msg, hdrs, fp)
547 perform the redirect. Otherwise, raise HTTPError if no-one
569 raise HTTPError(req.get_full_url(), code, msg, headers, fp)
600 raise HTTPError(newurl, code,
618 raise HTTPError(req.get_full_url(), code
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
urllib2.py 21 IOError); for HTTP errors, raises an HTTPError, which can also be
47 HTTPError -- Also a valid HTTP response, so you can treat an HTTP error
150 class HTTPError(URLError, addinfourl):
161 # object. In some cases, the HTTPError may not have a valid
170 # since URLError specifies a .reason attribute, HTTPError should also
531 raise HTTPError(req.get_full_url(), code, msg, hdrs, fp)
547 perform the redirect. Otherwise, raise HTTPError if no-one
569 raise HTTPError(req.get_full_url(), code, msg, headers, fp)
600 raise HTTPError(newurl, code,
618 raise HTTPError(req.get_full_url(), code
    [all...]
  /external/chromium_org/testing/gtest/scripts/
upload.py 115 class ClientLoginError(urllib2.HTTPError):
119 urllib2.HTTPError.__init__(self, url, code, msg, headers, None)
181 HTTPError: If there was some other form of HTTP error.
206 except urllib2.HTTPError, e:
222 HTTPError: If there was an error fetching the authentication cookies.
231 except urllib2.HTTPError, e:
235 raise urllib2.HTTPError(req.get_full_url(), response.code, response.msg,
330 except urllib2.HTTPError, e:
    [all...]
  /external/chromium_org/third_party/skia/bench/
gen_bench_expectations.py 139 except urllib2.HTTPError:
  /external/skia/bench/
gen_bench_expectations.py 139 except urllib2.HTTPError:
  /external/chromium_org/tools/perf_expectations/
make_expectations.py 70 except urllib2.HTTPError, e:
  /external/chromium_org/tools/
update_reference_build.py 215 except urllib2.HTTPError, err:

Completed in 682 milliseconds

1 2