HomeSort by relevance Sort by last modified time
    Searched defs:HttpError (Results 1 - 2 of 2) sorted by null

  /tools/acloud/public/
errors.py 40 class HttpError(DriverError):
45 super(HttpError, self).__init__(message)
49 """Create from an apiclient.errors.HttpError.
51 Parse the error code from apiclient.errors.HttpError
52 and create an instance of HttpError from this module
56 http_error: An apiclient.errors.HttpError instance.
59 An HttpError instance from this module.
61 return HttpError(http_error.resp.status, str(http_error))
64 class ResourceNotFoundError(HttpError):
  /external/webrtc/webrtc/base/
httpcommon.h 67 enum HttpError {
122 inline HttpError mkerr(HttpError err, HttpError def_err = HE_DEFAULT) {
379 virtual HttpError parseLeader(const char* line, size_t len) = 0;
400 HttpError parseLeader(const char* line, size_t len) override;
424 HttpError parseLeader(const char* line, size_t len) override;

Completed in 542 milliseconds