HomeSort by relevance Sort by last modified time
    Searched defs:ContentLength (Results 1 - 4 of 4) 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...]
  /device/linaro/bootloader/edk2/NetworkPkg/HttpBootDxe/
HttpBootClient.c 754 UINTN ContentLength;
983 ContentLength = 0;
984 Status = HttpGetEntityLength (Parser, &ContentLength);
1002 while (ReceivedSize < ContentLength) {
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/DxeHttpLib/
DxeHttpLib.c 859 UINTN ContentLength; // Entity length (not the message-body length), invalid until ContentLengthIsValid is TRUE
915 @param[out] ContentLength Pointer to save the value of the content length.
925 OUT UINTN *ContentLength
935 *ContentLength = AsciiStrDecimalToUintn (Header->FieldValue);
1072 Status = HttpIoParseContentLengthHeader (HeaderCount, Headers, &Parser->ContentLength);
    [all...]
  /external/libxml2/
nanohttp.c 142 int ContentLength; /* specified content length from HTTP header */
409 ret->ContentLength = -1;
842 ctxt->ContentLength = strtol( cur, NULL, 10 );
    [all...]

Completed in 1522 milliseconds