Searched refs:ContentLength (Results 1 – 16 of 16) sorted by relevance
/external/nist-sip/java/gov/nist/javax/sip/header/ |
D | ContentLength.java | 75 public class ContentLength class 91 public ContentLength() { in ContentLength() method in ContentLength 98 public ContentLength(int length) { in ContentLength() method in ContentLength 144 if (other instanceof ContentLength) in match()
|
D | NameMap.java | 129 putNameMap(CONTENT_LENGTH, ContentLength.class.getName()); //26 in initializeNameMap()
|
D | HeaderFactoryImpl.java | 395 ContentLength c = new ContentLength(); in createContentLengthHeader()
|
/external/nist-sip/java/gov/nist/javax/sip/message/ |
D | SIPMessage.java | 40 import gov.nist.javax.sip.header.ContentLength; 158 protected ContentLength contentLengthHeader; 243 if (!(siphdr instanceof ContentLength)) in encodeSIPHeaders() 291 if (hisHeader instanceof ContentLength) in match() 366 if (!(siphdr instanceof ContentLength)) in encode() 427 if (!(siphdr instanceof ContentLength)) in encodeAsBytes() 547 this.attachHeader(new ContentLength(0), false); in SIPMessage() 659 if (h instanceof ContentLength) { in attachHeader() 661 ContentLength cl = (ContentLength) h; in attachHeader() 702 } else if (h instanceof ContentLength) { in attachHeader() [all …]
|
D | SIPRequest.java | 834 } else if (nextHeader instanceof ContentLength) { in createAckRequest() 838 ((ContentLength) nextHeader).setContentLength(0); in createAckRequest() 1014 } else if (nextHeader instanceof ContentLength) { in createSIPRequest() 1015 ContentLength cl = (ContentLength) nextHeader.clone(); in createSIPRequest()
|
D | SIPResponse.java | 37 import gov.nist.javax.sip.header.ContentLength; 699 || nextHeader instanceof ContentLength in createRequest() 703 || nextHeader instanceof ContentLength in createRequest()
|
/external/nist-sip/java/gov/nist/javax/sip/parser/ |
D | ContentLengthParser.java | 56 ContentLength contentLength = new ContentLength(); in parse()
|
D | PipelinedMsgParser.java | 292 ContentLength cl = (ContentLength) sipMessage in run()
|
/external/nist-sip/java/gov/nist/javax/sip/stack/ |
D | MessageChannel.java | 37 import gov.nist.javax.sip.header.ContentLength; 420 ContentLength clengthHeader = new ContentLength(clength); in createBadReqRes() 424 ContentLength clengthHeader = new ContentLength(0); in createBadReqRes()
|
/external/libxml2/ |
D | nanohttp.c | 142 int ContentLength; /* specified content length from HTTP header */ member 409 ret->ContentLength = -1; in xmlNanoHTTPNewCtxt() 842 ctxt->ContentLength = strtol( cur, NULL, 10 ); in xmlNanoHTTPScanAnswer() 1761 return ( ( ctxt == NULL ) ? -1 : ctxt->ContentLength ); in xmlNanoHTTPContentLength() 1852 if ( (ctxt->ContentLength > 0) && (rcvd_lgth >= ctxt->ContentLength) ) in xmlNanoHTTPFetchContent() 1859 if ( ( ctxt->ContentLength > 0 ) && ( rcvd_lgth < ctxt->ContentLength ) ) in xmlNanoHTTPFetchContent()
|
/external/syzkaller/vendor/google.golang.org/api/gensupport/ |
D | resumable.go | 65 req.ContentLength = size
|
/external/syzkaller/vendor/golang.org/x/net/http2/ |
D | transport.go | 763 if req.ContentLength != 0 { 764 return req.ContentLength 1670 res.ContentLength = -1 1673 res.ContentLength = clen64 1689 cs.bufPipe = pipe{b: &dataBuffer{expected: res.ContentLength}} 1690 cs.bytesRemain = res.ContentLength 1697 res.ContentLength = -1
|
D | server.go | 1782 st.declBodyBytes = req.ContentLength 1945 req.ContentLength, _ = strconv.ParseInt(vv[0], 10, 64) 1947 req.ContentLength = -1 1950 b: &dataBuffer{expected: req.ContentLength},
|
/external/syzkaller/vendor/cloud.google.com/go/storage/ |
D | storage.go | 551 size = res.ContentLength 554 remain := res.ContentLength
|
/external/syzkaller/vendor/google.golang.org/appengine/internal/ |
D | api.go | 386 ContentLength: int64(len(body)),
|
D | api_pre17.go | 408 ContentLength: int64(len(body)),
|