HomeSort by relevance Sort by last modified time
    Searched refs:entity_body (Results 1 - 3 of 3) sorted by null

  /external/autotest/frontend/shared/
exceptions.py 6 def __init__(self, code, entity_body=''):
7 if not entity_body.endswith('\n'):
8 entity_body += '\n'
9 self.response = http.HttpResponse(entity_body, status=code)
rest_client.py 49 self.entity_body = httplib_content
53 return simplejson.loads(self.entity_body)
57 return '\n'.join([str(self.status), self.entity_body])
128 entity_body = simplejson.dumps(encoded_body)
130 entity_body = None
133 if entity_body:
134 logging.debug(entity_body)
140 full_uri, method, body=entity_body,
147 full_uri, method, body=entity_body,
  /external/nist-sip/java/gov/nist/javax/sip/clientauthutils/
MessageDigestAlgorithm.java 29 * @param entity_body the entity-body
40 String method, String digest_uri_value, String entity_body, String qop_value,
46 + ", " + entity_body + ", " + qop_value);
67 if (entity_body == null)
68 entity_body = "";
69 A2 = method + ":" + digest_uri_value + ":" + H(entity_body);
106 * @param entity_body the entity-body
116 String method, String digest_uri_value, String entity_body, String qop_value,
123 + ", " + entity_body + ", " + qop_value);
152 if (entity_body == null
    [all...]

Completed in 4456 milliseconds