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

  /external/nist-sip/java/gov/nist/javax/sip/header/
ContentLength.java 35 * ContentLength SIPHeader (of which there can be only one in a SIPMessage).
76 public class ContentLength
85 * contentLength field.
87 protected Integer contentLength;
92 public ContentLength() {
99 public ContentLength(int length) {
101 this.contentLength = Integer.valueOf(length);
105 * get the ContentLength field.
109 return contentLength.intValue();
113 * Set the contentLength membe
    [all...]
  /external/chromium_org/chrome_frame/test/
test_server.cc 88 size_t length = ContentLength();
120 size_t FileResponse::ContentLength() const {
225 response->ContentLength());
test_server.h 165 virtual size_t ContentLength() const {
228 virtual size_t ContentLength() const {
251 virtual size_t ContentLength() const;
test_with_web_server.cc 894 virtual size_t ContentLength() const {
898 size_t length = SuperClass::ContentLength();
    [all...]
  /external/chromium_org/third_party/libxml/src/
nanohttp.c 154 int ContentLength; /* specified content length from HTTP header */
397 ret->ContentLength = -1;
830 ctxt->ContentLength = strtol( cur, NULL, 10 );
    [all...]
  /external/libxml2/
nanohttp.c 152 int ContentLength; /* specified content length from HTTP header */
395 ret->ContentLength = -1;
828 ctxt->ContentLength = strtol( cur, NULL, 10 );
    [all...]

Completed in 1549 milliseconds